Home
last modified time | relevance | path

Searched refs:CC (Results 1 – 163 of 163) sorted by relevance

/linux-4.1.27/arch/blackfin/lib/
Dudivsi3.S20 CC = R0 < R1 (IU); /* If X < Y, always return 0 */ define
21 IF CC JUMP .Lreturn_ident;
24 CC = R2 <= R0 (IU); define
25 IF CC JUMP .Lidents;
30 CC = R2; define
31 IF CC JUMP .Ly_16bit;
39 AQ = CC; /* Clear AQ (CC==0) */
78 CC = ! BITTST(R0, 31); define
84 CC &= AZ;
93 CC &= CARRY;
[all …]
Ddivsi3.S42 CC = V; define
88 CC = R1 == 0; /* check for divide by zero */ define
89 IF CC JUMP .Lident_return;
91 CC = R0 == 0; /* check for division of zero */ define
92 IF CC JUMP .Lzero_return;
94 CC = R0 == R1; /* check for identical operands */ define
95 IF CC JUMP .Lident_return;
97 CC = R1 == 1; /* check for divide by 1 */ define
98 IF CC JUMP .Lident_return;
102 CC = R2 == 1; define
[all …]
Dmemmove.S24 CC = P2 == 0; /* Check zero count*/ define
25 IF CC JUMP .Lfinished; /* very unlikely */
27 CC = R1 < R0 (IU); /* From < To */ define
28 IF !CC JUMP .Lno_overlap;
30 CC = R0 <= R3 (IU); /* (From+len) >= To */ define
31 IF CC JUMP .Loverlap;
34 CC = R2 <= R3; define
35 IF CC JUMP .Lbytes;
38 CC = AZ; /* AZ set if zero.*/ define
39 IF !CC JUMP .Lbytes; /* Jump if addrs not aligned.*/
[all …]
Dmodsi3.S25 CC=R0==0;
26 IF CC JUMP .LRETURN_R0; /* Return 0, if numerator == 0 */
27 CC=R1==0;
28 IF CC JUMP .LRETURN_ZERO; /* Return 0, if denominator == 0 */
29 CC=R0==R1;
30 IF CC JUMP .LRETURN_ZERO; /* Return 0, if numerator == denominator */
31 CC = R1 == 1; define
32 IF CC JUMP .LRETURN_ZERO; /* Return 0, if denominator == 1 */
33 CC = R1 == -1; define
34 IF CC JUMP .LRETURN_ZERO; /* Return 0, if denominator == -1 */
Dumodsi3.S21 CC=R0==0;
22 IF CC JUMP .LRETURN_R0; /* Return 0, if NR == 0 */
23 CC= R1==0;
24 IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 0 */
25 CC=R0==R1;
26 IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if NR == DR */
27 CC = R1 == 1; define
28 IF CC JUMP .LRETURN_ZERO_VAL; /* Return 0, if DR == 1 */
29 CC = R0<R1 (IU); define
30 IF CC JUMP .LRETURN_R0; /* Return dividend (R0),IF NR<DR */
Dmemset.S30 CC = R2 <= 7(IU); define
31 IF CC JUMP .Ltoo_small;
35 CC = R2 == 0; /* AZ set if zero. */ define
36 IF !CC JUMP .Lforce_align ; /* Jump if addr not aligned. */
49 CC = P0 == P2; define
50 IF !CC JUMP .Lbytes_left;
60 CC = P2 == 0; /* Check zero count */ define
61 IF CC JUMP .Lfinished; /* Unusual */
72 CC = BITTST (R0, 0); /* odd byte */ define
77 IF !CC JUMP .Lskip1;
[all …]
Dmemcpy.S32 CC = R2 <= 0; /* length not positive? */ define
33 IF CC JUMP .L_P1L2147483647; /* Nothing to do */
40 CC = R1 < R0; /* src < dst */ define
41 IF !CC JUMP .Lno_overlap;
43 CC = R0 < R3; /* and dst < src+len */ define
44 IF CC JUMP .Lhas_overlap;
52 CC = R3; /* low bits set on either address? */ define
53 IF CC JUMP .Lnot_aligned;
58 CC = P2 <= 2; define
59 IF !CC JUMP .Lmore_than_seven;
[all …]
Dmemcmp.S26 CC = R2 <= 7(IU); define
27 IF CC JUMP .Ltoo_small;
31 CC = AZ; /* AZ set if zero. */ define
32 IF !CC JUMP .Lbytes ; /* Jump if addrs not aligned. */
47 CC = R0 == R1; define
48 IF !CC JUMP .Lquad_different;
54 CC = P2 == 0; /* Check zero count*/ define
55 IF CC JUMP .Lfinished; /* very unlikely*/
62 CC = R0 == R1; define
63 IF !CC JUMP .Ldifferent;
Dstrncpy.S27 CC = R2 == 0; define
28 if CC JUMP 6f;
38 CC = R1 == 0; define
40 if CC jump 3f;
50 CC = R2 define
51 if ! CC jump 6f;
57 CC = R2 < R3; define
58 IF CC jump 4f;
Douts.S16 CC = R2 == 0; define
17 IF CC JUMP 1f;
29 CC = R2 == 0; define
30 IF CC JUMP 1f;
42 CC = R2 == 0; define
43 IF CC JUMP 1f;
55 CC = R2 == 0; define
56 IF CC JUMP 1f;
Dstrncmp.S25 CC = R2 == 0; define
26 if CC JUMP 5f;
33 CC = R0 == R1; /* compare a byte */ define
35 CC = R0; /* at end of s1? */ define
38 CC = R2 == 0; define
Dmemchr.S25 CC = R2 == 0; define
26 IF CC JUMP .Lfailed;
33 CC = R3 == R1; define
34 IF CC JUMP .Lfound;
Dstrcmp.S33 CC = R0 == R1; /* compare a byte */ define
35 CC = R0; /* at end of s1? */ define
Dstrcpy.S31 CC = R1; define
/linux-4.1.27/tools/testing/selftests/memfd/
DMakefile1 CC = $(CROSS_COMPILE)gcc macro
8 $(CC) $(CFLAGS) memfd_test.c -o memfd_test
15 $(CC) $(CFLAGS) fuse_mnt.c `pkg-config fuse --cflags --libs` -o fuse_mnt
16 $(CC) $(CFLAGS) fuse_test.c -o fuse_test
/linux-4.1.27/arch/ia64/scripts/
Dtoolchain-flags6 CC=$1
16 $CC -nostdlib -static -Wl,-T$dir/check-segrel.lds $dir/check-segrel.S -o $out
30 $CC -c $dir/check-text-align.S -o $out
38 if ! $CC -c $dir/check-model.c -o $out 2>&1 | grep __model__ | grep -q attrib
46 $CC -c $dir/check-serialize.S -o $out 2>/dev/null
Dcheck-gas3 CC=$1
7 $CC -c $dir/check-gas-asm.S -o $out
/linux-4.1.27/tools/power/cpupower/
DMakefile94 CC = $(CROSS)gcc macro
111 export CROSS CC AR STRIP RANLIB CFLAGS LDFLAGS LIB_OBJS
114 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1…
190 $(ECHO) " CC " $@
207 $(ECHO) " CC " $@
211 $(ECHO) " CC " $@
/linux-4.1.27/tools/testing/selftests/x86/
DMakefile17 CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32)
18 CAN_BUILD_X86_64 := $(shell ./check_cc.sh $(CC) trivial_64bit_program.c)
38 $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
41 $(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
Dcheck_cc.sh6 CC="$1"
10 if "$CC" -o /dev/null "$TESTPROG" -O0 "$@" 2>/dev/null; then
/linux-4.1.27/tools/virtio/virtio-trace/
DMakefile1 CC = gcc macro
7 $(CC) $(CFLAGS) -c $^ -o $@
10 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/power/cpupower/debug/i386/
DMakefile15 $(CC) $(CFLAGS) -o $@ centrino-decode.c
18 $(CC) $(CFLAGS) -o $@ dump_psb.c
21 $(CC) $(CFLAGS) -o $@ -llrmi intel_gsic.c
24 $(CC) $(CFLAGS) -o $@ powernow-k8-decode.c
/linux-4.1.27/tools/build/feature/
DMakefile38 CC := $(CROSS_COMPILE)gcc -MD macro
43 __BUILD = $(CC) $(CFLAGS) -Wall -Werror -o $(OUTPUT)$@ $(patsubst %.bin,%.c,$@) $(LDFLAGS)
124 $(CC) -Wall -Werror -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty
127 $(CC) -Wall -Werror -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty -lz
148 $(CC) -m32 -o $(OUTPUT)$@ test-compile.c
151 $(CC) -mx32 -o $(OUTPUT)$@ test-compile.c
/linux-4.1.27/tools/build/
DMakefile.build51 quiet_cmd_cc_o_c = CC $@
52 cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
55 cmd_cc_i_c = $(CC) $(c_flags) -E -o $@ $<
58 cmd_cc_s_c = $(CC) $(c_flags) -S -o $@ $<
/linux-4.1.27/tools/cgroup/
DMakefile3 CC = $(CROSS_COMPILE)gcc macro
8 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/arch/m68k/tools/amiga/
DMakefile2 CC = m68k-cbm-amigados-gcc macro
10 $(CC) $(CFLAGS) -o dmesg dmesg.c -noixemul
/linux-4.1.27/arch/mn10300/kernel/
Dkprobes.c94 #define CC (1 << 6) macro
106 /* 0 0 0 0 */ (NE | NC | CC | VC | GE | GT | HI),
107 /* 0 0 0 1 */ (EQ | NC | CC | VC | GE | LE | LS),
108 /* 0 0 1 0 */ (NE | NS | CC | VC | LT | LE | HI),
109 /* 0 0 1 1 */ (EQ | NS | CC | VC | LT | LE | LS),
114 /* 1 0 0 0 */ (NE | NC | CC | VS | LT | LE | HI),
115 /* 1 0 0 1 */ (EQ | NC | CC | VS | LT | LE | LS),
116 /* 1 0 1 0 */ (NE | NS | CC | VS | GE | GT | HI),
117 /* 1 0 1 1 */ (EQ | NS | CC | VS | GE | LE | LS),
/linux-4.1.27/tools/usb/
DMakefile3 CC = $(CROSS_COMPILE)gcc macro
11 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
/linux-4.1.27/arch/blackfin/include/asm/
Dentry.h121 CC = BITTST(R0, EVT_IVHW_P); \
122 IF CC JUMP 1f; \
151 CC = BITTST(R0, EVT_IVHW_P); \
152 IF CC JUMP 1f; \
/linux-4.1.27/tools/usb/ffs-aio-example/multibuff/host_app/
DMakefile1 CC = gcc macro
10 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
/linux-4.1.27/tools/usb/ffs-aio-example/simple/host_app/
DMakefile1 CC = gcc macro
10 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
/linux-4.1.27/tools/hv/
DMakefile3 CC = $(CROSS_COMPILE)gcc macro
12 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/power/cpupower/bench/
DMakefile14 $(ECHO) " CC " $@
18 $(ECHO) " CC " $@
/linux-4.1.27/scripts/
DKbuild.include73 # Return first prefix where a prefix$(CC) is found in PATH.
74 # If no $(CC) found in PATH with listed prefixes return nothing
78 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \
86 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
102 $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
108 printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
114 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
119 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
129 …$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(stri…
132 cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh $(CC))
[all …]
DMakefile.build149 quiet_cmd_cc_s_c = CC $(quiet_modtag) $@
150 cmd_cc_s_c = $(CC) $(c_flags) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
181 quiet_cmd_cc_o_c = CC $(quiet_modtag) $@
184 cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
199 cmd_cc_o_c = $(CC) $(c_flags) -c -o $(@D)/.tmp_$(@F) $<
269 cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && \
291 cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
DMakefile.modpost108 quiet_cmd_cc_o_c = CC $@
109 cmd_cc_o_c = $(CC) $(c_flags) $(KBUILD_CFLAGS_MODULE) $(CFLAGS_MODULE) \
Dlink-vmlinux.sh60 ${CC} ${CFLAGS_vmlinux} -o ${2} \
98 ${CC} ${aflags} -c -o ${2} -x assembler-with-cpp -
Dgcc-ld29 exec $CC $ARGS
Dmkcompile_h7 CC=$5
/linux-4.1.27/tools/testing/selftests/mqueue/
DMakefile4 $(CC) $(CFLAGS) mq_open_tests.c -o mq_open_tests -lrt
5 $(CC) $(CFLAGS) -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
/linux-4.1.27/tools/vm/
DMakefile8 CC = $(CROSS_COMPILE)gcc macro
18 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
/linux-4.1.27/tools/power/x86/turbostat/
DMakefile1 CC = $(CROSS_COMPILE)gcc macro
16 $(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@
/linux-4.1.27/arch/xtensa/
DMakefile54 ifeq ($(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#"),1)
57 ifeq ($(shell echo __XTENSA_EL__ | $(CC) -E - | grep -v "\#"),1)
79 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/tools/lib/traceevent/
DMakefile24 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
135 export srctree OUTPUT CC LD CFLAGS V
167 $(QUIET_LINK)$(CC) --shared $^ -o $@
181 $(QUIET_LINK)$(CC) $(CFLAGS) -shared -nostartfiles -o $@ $^
/linux-4.1.27/tools/lib/lockdep/
DMakefile18 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
96 export srctree OUTPUT CC LD CFLAGS V
101 $(CC) --shared $^ -o $@ -lpthread -ldl -Wl,-soname='"$@"';$(shell ln -s $@ liblockdep.so))
/linux-4.1.27/tools/power/cpupower/debug/x86_64/
DMakefile15 $(CC) $(CFLAGS) -o $@ $<
18 $(CC) $(CFLAGS) -o $@ $<
/linux-4.1.27/arch/unicore32/lib/
DMakefile12 GNU_LIBC_A := $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libc.a)
17 GNU_LIBGCC_A := $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a)
/linux-4.1.27/Documentation/zh_CN/
DSubmittingPatches128 发送或者CC给Linus。那些需要讨论或者没有很清楚的好处的补丁,一般先发送到
131 5)选择CC( e-mail 抄送)列表
133 除非你有理由不这样做,否则CC linux-kernel@vger.kernel.org。
149 ,一直将维护者拷贝到CC列表中。
151 对于小的补丁,你也许会CC到 Adrian Bunk 管理的搜集琐碎补丁的邮件列表
/linux-4.1.27/Documentation/ABI/testing/
Ddebugfs-olpc10 To execute a command, write data with the format: CC:N A A A A
11 CC is the (hex) command, N is the count of expected reply bytes, and A A A A
Dsysfs-wusb_cbaf39 to wusb_ck (this uploads the new CC to the
/linux-4.1.27/tools/lib/api/
DMakefile11 CC = $(CROSS_COMPILE)gcc macro
27 export srctree OUTPUT CC LD CFLAGS V
/linux-4.1.27/arch/blackfin/mach-common/
Dinterrupt.S170 CC = BITTST(R1, EVT_IVHW_P); define
171 IF ! CC JUMP 2f;
176 CC = R1 == R2; define
177 if CC JUMP 2f;
Ddpmc_modes.S202 CC = BITTST(R2, 4); define
203 if !CC JUMP 1b;
281 CC = BITTST(R0,5); define
282 IF !CC JUMP 1b;
Dentry.S102 CC = R0 == 0; define
103 IF !CC JUMP _handle_bad_cplb;
112 CC = R7 == R6; define
113 if CC JUMP _double_fault;
249 CC = R7 == R6; define
250 if CC JUMP _double_fault;
286 CC = BITTST (r7, 5); define
287 if CC jump _double_fault;
449 CC = BITTST(r7, EVT_IRPTEN_P) define
450 if !CC jump 1f;
[all …]
/linux-4.1.27/tools/power/acpi/
DMakefile57 CC = $(CROSS)gcc macro
63 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -x c /dev/null > /dev/null 2>&1; then echo "$(1…
136 $(QUIET) $(CC) -c $(CFLAGS) -o $@ $<
/linux-4.1.27/arch/blackfin/kernel/
Dfixed_code.S57 CC = R0 == R1; define
58 IF !CC JUMP 1f;
/linux-4.1.27/arch/powerpc/kernel/vdso64/
DMakefile39 cmd_vdso64ld = $(CC) $(c_flags) -Wl,-T $^ -o $@
41 cmd_vdso64as = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/drivers/ata/
Dsata_fsl.c112 CC = 0x10, enumerator
573 ioread32(CE + hcr_base), ioread32(CC + hcr_base)); in sata_fsl_qc_issue()
586 ioread32(CC + hcr_base), in sata_fsl_qc_issue()
990 ioread32(CA + hcr_base), ioread32(CC + hcr_base)); in sata_fsl_softreset()
992 iowrite32(0xFFFF, CC + hcr_base); in sata_fsl_softreset()
1003 ioread32(CA + hcr_base), ioread32(CC + hcr_base)); in sata_fsl_softreset()
1039 iowrite32(0x01, CC + hcr_base); /* We know it will be cmd#0 always */ in sata_fsl_softreset()
1057 VPRINTK("ccreg = 0x%x\n", ioread32(hcr_base + CC)); in sata_fsl_softreset()
1227 done_mask = ioread32(hcr_base + CC); in sata_fsl_host_intr()
1278 iowrite32(done_mask, hcr_base + CC); in sata_fsl_host_intr()
[all …]
/linux-4.1.27/arch/s390/kernel/vdso32/
DMakefile46 cmd_vdso32ld = $(CC) $(c_flags) -Wl,-T $^ -o $@
48 cmd_vdso32as = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/arch/s390/kernel/vdso64/
DMakefile46 cmd_vdso64ld = $(CC) $(c_flags) -Wl,-T $^ -o $@
48 cmd_vdso64as = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/arch/arm64/kernel/vdso/
DMakefile55 cmd_vdsold = $(CC) $(c_flags) -Wl,-n -Wl,-T $^ -o $@
57 cmd_vdsoas = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/tools/perf/
DMakefile.perf110 CC = $(CROSS_COMPILE)gcc
273 export srctree OUTPUT RM CC LD AR CFLAGS V BISON FLEX
280 $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $(PERF_IN) $(LIBS) -o $@
286 $(QUIET_LINK)$(CC) -o $@ -shared $(LDFLAGS) $(filter %.o,$^) $(GTK_LIBS)
349 $(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(filter %.o,$^) $(LIBS)
353 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
358 $(QUIET_CC)$(CC) -mx32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
/linux-4.1.27/arch/powerpc/
DMakefile25 CROSS32CC := $(CC) -m32
69 override CC += -mlittle-endian -mno-strict-align
80 override CC += -mbig-endian
92 override CC += -m$(CONFIG_WORD_SIZE)
164 CPP = $(CC) -E $(KBUILD_CFLAGS)
/linux-4.1.27/lib/raid6/test/
DMakefile6 CC = gcc macro
55 $(CC) $(CFLAGS) -c -o $@ $<
71 $(CC) $(CFLAGS) -o raid6test $^
/linux-4.1.27/Documentation/ja_JP/
DSubmittingPatches181 必要としないパッチは Linus へ電子メールを送るか CC しなければなりません。
186 6) CC (カーボンコピー)先の選び方
188 特に理由がないなら、LKML にも CC してください。
209 加えたときには、いつもメンテナに CC するのを忘れないようにしてください。
212 <trivial@kernel.org>に CC してもいいです。その現管理者については MAINTAINERS
DHOWTO113 をマニュアルページのメンテナ mtk.manpages@gmail.com に送り、CC
436 もし複数の人があなたのメールに返事をした場合、CC: で受ける人のリストは
437 だいぶ多くなるでしょう。良い理由がない場合、CC: リストから誰かを削除を
Dstable_kernel_rules.txt69 い限り)に送られ、linux-kernel メーリングリストにCCされる。
/linux-4.1.27/tools/testing/selftests/size/
DMakefile4 $(CC) -static -ffreestanding -nostartfiles -s $< -o $@
/linux-4.1.27/arch/um/drivers/
DMakefile20 LDFLAGS_pcap.o := -r $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libpcap.a)
22 LDFLAGS_vde.o := -r $(shell $(CC) $(CFLAGS) -print-file-name=libvdeplug.a)
/linux-4.1.27/tools/firewire/
DMakefile4 CC = gcc macro
/linux-4.1.27/Documentation/ptp/
Dtestptp.mk19 CC = $(CROSS_COMPILE)gcc
/linux-4.1.27/tools/testing/selftests/net/
DMakefile11 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/testing/selftests/vm/
DMakefile9 $(CC) $(CFLAGS) -o $@ $^ -lrt
/linux-4.1.27/tools/thermal/tmon/
DMakefile6 CC=$(CROSS_COMPILE)gcc macro
/linux-4.1.27/tools/iio/
DMakefile1 CC = gcc macro
/linux-4.1.27/tools/testing/selftests/mount/
DMakefile7 $(CC) $(CFLAGS) unprivileged-remount-test.c -o unprivileged-remount-test
/linux-4.1.27/tools/power/acpi/tools/ec/
DMakefile8 $(QUIET) $(CC) -c $(CFLAGS) -o $@ $<
/linux-4.1.27/Documentation/kbuild/
Dmakefiles.txt20 --- 3.11 $(CC) support functions
296 ccflags-y specifies options for compiling with $(CC).
334 $(CFLAGS_$@) specifies per-file options for $(CC). The $@
362 Thus, if you change an option to $(CC) all affected files will
416 --- 3.11 $(CC) support functions
419 $(CC), each supporting a unique set of features and options.
420 kbuild provides basic support to check for valid options for $(CC).
421 $(CC) is usually the gcc compiler, but other alternatives are
425 as-option is used to check if $(CC) -- when used to compile
434 -Wa$(comma)-isa=$(isa-y) if it is supported by $(CC).
[all …]
Dkbuild.txt42 Additional options for $(CC) when used to compile
47 Additional module specific options to use for $(CC).
/linux-4.1.27/drivers/staging/gs_fpgaboot/
DTODO7 And please CC to "Staging subsystem" mail list <devel@driverdev.osuosl.org> too.
/linux-4.1.27/arch/nios2/
DMakefile23 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/tools/testing/selftests/ipc/
DMakefile15 $(CC) $(CFLAGS) msgque.c -o msgque_test
/linux-4.1.27/tools/testing/selftests/exec/
DMakefile18 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/testing/selftests/
Dlib.mk3 CC := $(CROSS_COMPILE)gcc
/linux-4.1.27/kernel/debug/kdb/
DMakefile9 CCVERSION := $(shell $(CC) -v 2>&1 | sed -ne '$$p')
/linux-4.1.27/tools/testing/selftests/powerpc/switch_endian/
DMakefile1 CC := $(CROSS_COMPILE)gcc macro
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/
Dparse-build.sh37 if grep -q CC < $F
/linux-4.1.27/tools/build/tests/ex/
DMakefile2 export CC := gcc macro
/linux-4.1.27/tools/perf/config/
DMakefile.arch13 LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
/linux-4.1.27/tools/testing/selftests/timers/
DMakefile1 CC = $(CROSS_COMPILE)gcc macro
/linux-4.1.27/arch/hexagon/
DMakefile34 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/
DMakefile13 $(CC) $(CFLAGS) -m64 -o $@ $^
/linux-4.1.27/arch/openrisc/
DMakefile25 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/tools/net/
DMakefile3 CC = gcc macro
/linux-4.1.27/arch/xtensa/boot/
DMakefile15 BIG_ENDIAN := $(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#")
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/
Dcc10001_adc.txt1 * Cosmic Circuits - Analog to Digital Converter (CC-10001-ADC)
/linux-4.1.27/arch/xtensa/boot/boot-redboot/
DMakefile20 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/tools/testing/ktest/examples/include/
Dpatchcheck.conf110 MAKE_CMD = CC=gcc-4.5.1 make
/linux-4.1.27/arch/ia64/kernel/
DMakefile.gate10 cmd_gate = $(CC) -nostdlib $(GATECFLAGS_$(@F)) -Wl,-T,$(filter-out FORCE,$^) -o $@
/linux-4.1.27/arch/mips/lasat/image/
DMakefile25 $(CC) -fno-pic $(HEAD_DEFINES) $(LINUXINCLUDE) -c -o $@ $<
/linux-4.1.27/Documentation/video4linux/
D4CCs.txt4 Guidelines for Video4Linux 4CC codes defined using v4l2_fourcc() are
DREADME.ivtv160 The 'vertical blank interval' (Teletext, CC, WSS etc) capture device(s)
Dvivid.txt932 for either raw or sliced VBI. Note that at the moment only CC/XDS (60 Hz formats)
/linux-4.1.27/arch/tile/
DMakefile34 $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/m32r/
DMakefile36 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/firmware/radeon/
DR100_cp.bin.ihex114 :1007100000000002040023940000000000005000CC
DRV635_me.bin.ihex517 :1020400000000023002036270000000000000024CC
1111 :1045600000000006002048110000000000000000CC
DRV630_me.bin.ihex517 :1020400000000023002036270000000000000024CC
1111 :1045600000000006002048110000000000000000CC
DRV620_me.bin.ihex517 :1020400000000023002036270000000000000024CC
DRS780_me.bin.ihex517 :1020400000000023002036270000000000000024CC
DRV610_me.bin.ihex517 :1020400000000023002036270000000000000024CC
DRV670_me.bin.ihex517 :1020400000000023002036270000000000000024CC
/linux-4.1.27/arch/sh/kernel/vsyscall/
DMakefile12 cmd_syscall = $(CC) -nostdlib $(SYSCFLAGS_$(@F)) \
/linux-4.1.27/arch/powerpc/kernel/vdso32/
DMakefile11 CROSS32CC := $(CC)
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/
DMakefile26 AICASM_CC= $(CC)
/linux-4.1.27/Documentation/devicetree/bindings/dma/
Dti-edma.txt22 - dma-channels: Specify total DMA channels per CC
/linux-4.1.27/arch/avr32/mach-at32ap/include/mach/
Dat32ap700x.h219 ATMEL_LCDC(PC, CC) | ATMEL_LCDC(PC, DVAL) | \
223 ATMEL_LCDC(PE, CC) | ATMEL_LCDC(PE, DVAL) | \
/linux-4.1.27/Documentation/ko_KR/
DHOWTO387 여러 사람들이 여러분의 메일에 응답한다면 CC: 즉 수신 리스트는 꽤 커지게
388 될 것이다. 아무 이유없이 CC에서 어떤 사람도 제거하거나 리스트 주소로만
/linux-4.1.27/arch/mips/
DMakefile122 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(shell $(CC) -dumpmachine |grep -q 'mips.*el-.*' && echo -EB $…
123 cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += $(shell $(CC) -dumpmachine |grep -q 'mips.*el-.*' || echo -EL…
278 CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \
/linux-4.1.27/arch/arm/boot/dts/
Dimx51-digi-connectcore-jsk.dts15 model = "Digi ConnectCore CC(W)-MX51 JSK";
Dtegra30-apalis-eval.dts133 cd-gpios = <&gpio TEGRA_GPIO(CC, 5) GPIO_ACTIVE_LOW>;
Dimx51-digi-connectcore-som.dtsi16 model = "Digi ConnectCore CC(W)-MX51";
Dtegra30-cardhu.dtsi335 interrupts = <TEGRA_GPIO(CC, 2) IRQ_TYPE_LEVEL_LOW>;
/linux-4.1.27/
DMakefile339 ifneq ($(CC),)
340 ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1)
355 CC = $(CROSS_COMPILE)gcc macro
356 CPP = $(CC) -E
418 export ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
751 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
779 ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y)
DKbuild75 cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
DCREDITS125 P: 1024R/CB4660B9 CC A0 71 81 F4 A0 63 AC C0 4B 81 1D 8C 15 C8 E5
179 P: 1024/AF7B30C1 CF 97 C2 CC 6D AE A7 FE C8 BA 9C FC 88 DE 32 C3
2385 P: 1024D/357375CC 317C 58AC 1B39 2AB0 AB96 EB38 0B6F 731F 3573 75CC
2461 P: 1024/04B6E8F5 6C 77 33 CA CC D6 22 03 AB AB 15 A3 AE AD 39 7D
DMAINTAINERS40 PLEASE CC: the maintainers and mailing lists that are generated
/linux-4.1.27/arch/mn10300/
DMakefile17 CCSPECS := $(shell $(CC) -v 2>&1 | grep "^Reading specs from " | head -1 | cut -c20-)
/linux-4.1.27/firmware/tigon/
Dtg3.bin.ihex67 :1004200000000000000000000000000000000000CC
/linux-4.1.27/arch/arm/vdso/
DMakefile49 cmd_vdsold = $(CC) $(c_flags) $(VDSO_LDFLAGS) \
/linux-4.1.27/arch/x86/
DMakefile113 ifneq ($(shell $(CONFIG_SHELL) $(cc_has_sp) $(CC) $(KBUILD_CPPFLAGS) $(biarch)),y)
121 $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" - && \
/linux-4.1.27/arch/x86/crypto/sha-mb/
Dsha1_x8_avx2.S232 # ymm7 T1 CC
262 CC = %ymm7 define
362 vmovdqu C,CC
413 vpaddd CC,C,C
/linux-4.1.27/arch/blackfin/mach-bf561/include/mach/
Dmem_map.h176 dreg = CC;
/linux-4.1.27/arch/x86/um/vdso/
DMakefile72 cmd_vdso = $(CC) -nostdlib -o $@ \
/linux-4.1.27/arch/cris/
DMakefile62 LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a)
/linux-4.1.27/arch/arc/
DMakefile67 LIBGCC := $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
/linux-4.1.27/arch/parisc/
DMakefile26 LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dcros-ec-keyb.txt28 * RR=Row CC=Column KKKK=Key Code
/linux-4.1.27/Documentation/usb/
Dwusb-cbaf116 echo I: CC set >&2
/linux-4.1.27/arch/tile/kernel/vdso/
DMakefile73 cmd_vdsold = $(CC) $(KCFLAGS) -nostdlib $(SYSCFLAGS_$(@F)) \
/linux-4.1.27/tools/usb/usbip/
DINSTALL84 ./configure CC=c99 CFLAGS=-g LIBS=-lposix
176 values for variables like `CC', `cache_file', and `prefix'.
191 ./configure CC=/usr/local2/bin/gcc
/linux-4.1.27/drivers/staging/iio/
DTODO76 CC the device-drivers-devel@blackfin.uclinux.org mailing list when
/linux-4.1.27/arch/mips/kernel/
DMakefile95 CFLAGS_cpu-bugs64.o = $(shell if $(CC) $(KBUILD_CFLAGS) -Wa,-mdaddi -c -o /dev/null -x c /dev/null …
/linux-4.1.27/arch/sh/
DMakefile55 cflags-y += $(shell $(CC) $(KBUILD_CFLAGS) -print-multi-lib | \
/linux-4.1.27/arch/x86/vdso/
DMakefile173 cmd_vdso = $(CC) -nostdlib -o $@ \
/linux-4.1.27/Documentation/networking/
Ddm9000.txt16 maintained and tested by Ben Dooks, who should be CC: to any patches for this
/linux-4.1.27/firmware/yamaha/
Dds1e_ctrl.fw.ihex577 :1024000000000000000000000000000000000000CC
Dds1_ctrl.fw.ihex577 :1024000000000000000000000000000000000000CC
/linux-4.1.27/Documentation/s390/
DDebugging390.txt134 18-19 18-19 Condition codes (CC)
772 0001AFF8' LR 180F CC 0
789 00019736' AHI A7DAFF0E CC 1
790 000198BA' BRC A7840004 -> 000198C2' CC 0
791 000198CE' STM 900EF068 >> 0FA95E78 CC 2
983 Now make CC:="s390-gcc -g" kernel/sched.s
1119 000151B0' SVC 0A05 -> 0001909A' CC 0
1515 00020942' SSCH B2334000 0048813C CC 0 SCH 0000 DEV 7C08
1521 00021628' TSCH B2354000 >> 00488164 CC 0 SCH 0000 DEV 7C08
1523 KEY 0 FPI C0 CC 0 CTLS 4007
[all …]
/linux-4.1.27/Documentation/
Dstable_kernel_rules.txt107 the patch (unless the submitter is the maintainer of the area) and CC: to
DHOWTO80 maintainer at mtk.manpages@gmail.com, and CC the list
396 If multiple people respond to your mail, the CC: list of recipients may
397 get pretty large. Don't remove anybody from the CC: list without a good
Dsvga.txt135 form where RR is a number of rows and CC is a number of columns.
DSubmittingPatches315 For small patches you may want to CC the Trivial Patch Monkey
Dkernel-parameters.txt3950 Format: 0xCCBBAA, where AA, BB, and CC are the same as
/linux-4.1.27/arch/m68k/fpsp040/
Ddo_func.S501 | in the transcendentals code. The CC bits must be set in the
/linux-4.1.27/Documentation/sound/oss/
DMultiSound1005 CC = gcc
/linux-4.1.27/drivers/scsi/
DFlashPoint.c740 #define CC 0x25 /*Command Completion failure */ macro
4606 WRW_HARPOON(map_addr, (CPN_OP + AMSG_IN + CC)); /*ERROR IF NOT MSG IN PHZ */ in FPT_autoLoadDefaultMap()
4610 WRW_HARPOON(map_addr, (BRH_OP + NOT_EQ + CC)); /*ERROR IF NOT CMD COMPLETE MSG. */ in FPT_autoLoadDefaultMap()
/linux-4.1.27/drivers/eisa/
Deisa.ids744 ICU1210 "Procom CC-8 SCSI ENABLER"
745 ICU1220 "Procom CC-16 SCSI ENABLER"
/linux-4.1.27/drivers/dma/
Dpl330.c97 #define CC(n) (_CC + (n)*0x20) macro
/linux-4.1.27/firmware/bnx2x/
Dbnx2x-e1-6.2.9.0.fw.ihex1154 :1048100000232000002340000023600000238000CC
9289 :1044600000000000800000000000000000000000CC
Dbnx2x-e1h-6.2.9.0.fw.ihex1144 :1047700002108038000000100210810000000000CC
12291 :020000023000CC
Dbnx2x-e2-6.2.9.0.fw.ihex12291 :020000023000CC
/linux-4.1.27/Documentation/laptops/
Dthinkpad-acpi.txt145 CC - bugfix revision