Searched refs:CC (Results 1 - 200 of 285) sorted by relevance

12

/linux-4.1.27/tools/virtio/virtio-trace/
H A DMakefile0 CC = gcc
7 $(CC) $(CFLAGS) -c $^ -o $@
10 $(CC) $(CFLAGS) -o $@ $^
1 CC = gcc global() macro
/linux-4.1.27/arch/m68k/tools/amiga/
H A DMakefile2 CC = m68k-cbm-amigados-gcc macro
10 $(CC) $(CFLAGS) -o dmesg dmesg.c -noixemul
/linux-4.1.27/tools/cgroup/
H A DMakefile3 CC = $(CROSS_COMPILE)gcc macro
8 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/arch/blackfin/include/asm/
H A Dchecksum.h23 "CC = AC0;\n\t" __csum_tcpudp_nofold()
24 "%1 = CC;\n\t" __csum_tcpudp_nofold()
27 "CC = AC0;\n\t" __csum_tcpudp_nofold()
28 "%1 = CC;\n\t" __csum_tcpudp_nofold()
31 "CC = AC0;\n\t" __csum_tcpudp_nofold()
32 "%1 = CC;\n\t" __csum_tcpudp_nofold()
36 : "CC"); __csum_tcpudp_nofold()
H A 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; \
H A Dipipe.h80 "CC = %2 == %0\n" \
81 "if ! CC jump 1b\n" \
85 : /*no input*/ : "CC"); \
/linux-4.1.27/tools/testing/selftests/memfd/
H A DMakefile0 CC = $(CROSS_COMPILE)gcc
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
1 CC = $(CROSS_COMPILE)gcc global() macro
/linux-4.1.27/tools/testing/selftests/size/
H A DMakefile4 $(CC) -static -ffreestanding -nostartfiles -s $< -o $@
/linux-4.1.27/arch/blackfin/lib/
H A 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 */
H A 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.*/
62 CC = P2 == 0; /* any remaining bytes? */ define
64 IF !CC JUMP .Lbytes;
80 CC = P2 == 0; define
81 IF CC JUMP .Lno_loop;
H A 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;
80 CC = R2 <= 2; /* 2 bytes */ define
82 IF !CC JUMP .Laligned;
H A 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;
H A 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 */
H A 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;
94 IF CC JUMP .Lshift_and_correct;
104 CC = R0 == 0; /* 0/Y => 0 */ define
105 IF CC JUMP .Lreturn_r0;
106 CC = R0 == R1; /* X==Y => 1 */ define
107 IF CC JUMP .Lreturn_ident;
108 CC = R1 == 1; /* X/1 => X */ define
109 IF CC JUMP .Lreturn_ident;
113 CC = R2 == 1; define
114 IF CC JUMP .Lpower_of_two;
128 CC = R1 < 0; define
130 IF CC R1 = R2; /* Possibly-shifted R1 */
131 IF !CC R6 = R3; /* R1 doesn't, so at most 1 shifted */
138 CC = R0 < 0; define
139 IF CC P0 = R6; /* Number of values divided */
140 IF !CC R2 = R0; /* Shifted R0 */
154 CC = R7 < 0; /* Check quotient(AQ) */ define
156 IF CC R5 = R1; /* and if AQ==1, we'll add it. */
164 CC = P0 == 0; /* Check how many inputs we shifted */ define
165 IF CC JUMP .Lno_mult; /* if none... */
167 CC = P0 == 1; define
168 IF CC R2 = R6; /* if 1, Q = Q*2 */
169 IF !CC R1 = P2; /* if 2, restore stored divisor */
174 CC = R1 <= R5 (IU); /* Check if divisor <= Z? */ define
175 R6 = CC; /* if yes, R6 = 1 */
184 CC = R0 < R1 (IU); /* If X < Y, always return 0 */ define
186 IF CC JUMP .Ltrue_return_ident;
188 CC = R1 == 0; define
189 IF CC JUMP .Ltrue_return_ident;
191 CC = R0 == R1; /* X==Y => 1 */ define
192 IF CC JUMP .Ltrue_return_ident;
214 CC = R1 < 0; define
215 IF CC JUMP .Ltrue_return_ident;
235 CC=!CC;
236 AQ = CC; /* Clear AQ, got here with CC = 0 */
271 CC = R2 == R3; define
274 IF CC R0 = R1;
H A Dmemchr.S25 CC = R2 == 0; define
26 IF CC JUMP .Lfailed;
33 CC = R3 == R1; define
34 IF CC JUMP .Lfound;
H A 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
103 IF CC JUMP .Lpower_of_two;
127 CC = R6 < 0; /* Check quotient(AQ) */ define
129 IF CC R5 = R1; /* or we might be adding divisor (AQ==1)*/
148 CC = R1 == 0; /* check for divide by zero => 0x7fffffff */ define
151 IF CC JUMP .Ltrue_ident_return;
153 CC = R0 == R1; /* check for identical operands => 1 */ define
155 IF CC JUMP .Ltrue_ident_return;
163 CC = bittst(R3,30); define
164 IF CC R0 = R2;
181 CC = R1 < 0; define
182 IF CC JUMP .Ltrue_ident_return;
191 CC = bittst(R3,30); define
192 IF CC R0 = R2;
H A 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;
H A 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;
H A 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
H A 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;
90 CC = R3 == 0; define
92 IF !CC JUMP .Lbytes_left;
H A Dstrcmp.S33 CC = R0 == R1; /* compare a byte */ define
35 CC = R0; /* at end of s1? */ define
H A Dstrcpy.S31 CC = R1; define
/linux-4.1.27/tools/hv/
H A DMakefile3 CC = $(CROSS_COMPILE)gcc macro
12 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/usb/
H A DMakefile3 CC = $(CROSS_COMPILE)gcc macro
11 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
/linux-4.1.27/tools/usb/ffs-aio-example/multibuff/host_app/
H A DMakefile0 CC = gcc
10 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
1 CC = gcc global() macro
/linux-4.1.27/tools/usb/ffs-aio-example/simple/host_app/
H A DMakefile0 CC = gcc
10 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
1 CC = gcc global() macro
/linux-4.1.27/tools/iio/
H A DMakefile0 CC = gcc
1 CC = gcc global() macro
/linux-4.1.27/tools/power/cpupower/bench/
H A DMakefile14 $(ECHO) " CC " $@
15 $(QUIET) $(CC) -c $(CFLAGS) $< -o $@
18 $(ECHO) " CC " $@
19 $(QUIET) $(CC) -o $@ $(CFLAGS) $(OBJS) $(LIBS)
/linux-4.1.27/tools/power/x86/turbostat/
H A DMakefile0 CC = $(CROSS_COMPILE)gcc
16 $(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@
1 CC = $(CROSS_COMPILE)gcc global() macro
/linux-4.1.27/tools/testing/selftests/mqueue/
H A 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/
H A DMakefile8 CC = $(CROSS_COMPILE)gcc macro
18 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
/linux-4.1.27/tools/power/cpupower/debug/i386/
H A 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/testing/selftests/net/
H A DMakefile11 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/testing/selftests/vm/
H A DMakefile9 $(CC) $(CFLAGS) -o $@ $^ -lrt
/linux-4.1.27/tools/testing/selftests/x86/
H A 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
/linux-4.1.27/arch/unicore32/lib/
H A 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/tools/power/cpupower/debug/x86_64/
H A DMakefile15 $(CC) $(CFLAGS) -o $@ $<
18 $(CC) $(CFLAGS) -o $@ $<
/linux-4.1.27/tools/lib/api/
H A DMakefile11 CC = $(CROSS_COMPILE)gcc macro
27 export srctree OUTPUT CC LD CFLAGS V
/linux-4.1.27/arch/mn10300/lib/
H A Dashrdi3.c4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
11 GNU CC is distributed in the hope that it will be useful,
17 along with GNU CC; see the file COPYING. If not, write to
H A Dlshrdi3.c4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
11 GNU CC is distributed in the hope that it will be useful,
17 along with GNU CC; see the file COPYING. If not, write to
H A Dnegdi2.c6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
22 GNU CC is distributed in the hope that it will be useful,
28 along with GNU CC; see the file COPYING. If not, write to
/linux-4.1.27/tools/build/tests/ex/
H A DMakefile2 export CC := gcc macro
/linux-4.1.27/tools/firewire/
H A DMakefile4 CC = gcc macro
/linux-4.1.27/tools/testing/selftests/ipc/
H A DMakefile15 $(CC) $(CFLAGS) msgque.c -o msgque_test
/linux-4.1.27/tools/testing/selftests/mount/
H A DMakefile7 $(CC) $(CFLAGS) unprivileged-remount-test.c -o unprivileged-remount-test
/linux-4.1.27/tools/testing/selftests/powerpc/switch_endian/
H A DMakefile0 CC := $(CROSS_COMPILE)gcc
1 CC := $(CROSS_COMPILE)gcc global() macro
/linux-4.1.27/tools/thermal/tmon/
H A DMakefile6 CC=$(CROSS_COMPILE)gcc macro
29 $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(TARGET) $(TMON_LIBS)
/linux-4.1.27/arch/sparc/lib/
H A Dmuldi3.S3 This file is part of GNU CC.
5 GNU CC is free software; you can redistribute it and/or modify
10 GNU CC is distributed in the hope that it will be useful,
16 along with GNU CC; see the file COPYING. If not, write to
H A Dudivdi3.S3 This file is part of GNU CC.
5 GNU CC is free software; you can redistribute it and/or modify
10 GNU CC is distributed in the hope that it will be useful,
16 along with GNU CC; see the file COPYING. If not, write to
H A Ddivdi3.S3 This file is part of GNU CC.
5 GNU CC is free software; you can redistribute it and/or modify
10 GNU CC is distributed in the hope that it will be useful,
16 along with GNU CC; see the file COPYING. If not, write to
/linux-4.1.27/tools/net/
H A DMakefile3 CC = gcc macro
/linux-4.1.27/tools/testing/selftests/exec/
H A DMakefile18 $(CC) $(CFLAGS) -o $@ $^
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/
H A DMakefile13 $(CC) $(CFLAGS) -m64 -o $@ $^
/linux-4.1.27/arch/m68k/lib/
H A Dashldi3.c4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
11 GNU CC is distributed in the hope that it will be useful,
H A Dashrdi3.c4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
11 GNU CC is distributed in the hope that it will be useful,
H A Dlshrdi3.c4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
11 GNU CC is distributed in the hope that it will be useful,
H A Dmuldi3.c5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
12 GNU CC is distributed in the hope that it will be useful,
H A Dmulsi3.S4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
H A Ddivsi3.S4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
H A Dmodsi3.S4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
H A Dumodsi3.S4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
H A Dudivsi3.S4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify it
/linux-4.1.27/tools/lib/lockdep/
H A DMakefile8 # environment or command line. This is necessary for CC and AR
17 # Allow setting CC and AR and LD, or setting CROSS_COMPILE as a prefix.
18 $(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/build/feature/
H A 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/arch/xtensa/
H A 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/init/
H A DMakefile36 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(KBUILD_CFLAGS)"
/linux-4.1.27/scripts/
H A Dmakelst6 # $(CC) $(c_flags) -g -c -o $*.o $< &&
H A Dmkcompile_h7 CC=$5
79 echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | grep ' version '`\"
H A Dlink-vmlinux.sh60 ${CC} ${CFLAGS_vmlinux} -o ${2} \
98 ${CC} ${aflags} -c -o ${2} -x assembler-with-cpp -
H A Dsetlocalversion7 # (see MAINTAINERS) and CC Nico Schottelius
H A Dsign-file129 my ($tag, $len) = unpack("CC", substr(${$cursor->[2]}, $cursor->[0], 2));
/linux-4.1.27/tools/testing/selftests/
H A Dlib.mk3 CC := $(CROSS_COMPILE)gcc macro
/linux-4.1.27/tools/testing/selftests/timers/
H A DMakefile0 CC = $(CROSS_COMPILE)gcc
1 CC = $(CROSS_COMPILE)gcc global() macro
/linux-4.1.27/arch/um/drivers/
H A 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/arch/s390/kernel/vdso32/
H A 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/
H A DMakefile46 cmd_vdso64ld = $(CC) $(c_flags) -Wl,-T $^ -o $@
48 cmd_vdso64as = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/arch/powerpc/kernel/vdso64/
H A DMakefile39 cmd_vdso64ld = $(CC) $(c_flags) -Wl,-T $^ -o $@
41 cmd_vdso64as = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/arch/arm64/kernel/vdso/
H A DMakefile55 cmd_vdsold = $(CC) $(c_flags) -Wl,-n -Wl,-T $^ -o $@
57 cmd_vdsoas = $(CC) $(a_flags) -c -o $@ $<
/linux-4.1.27/arch/arm/kernel/
H A Dperf_event_v7.c1139 * PMRESR0 | EN | CC | CC | CC | CC | N = 1, R = 0
1141 * PMRESR1 | EN | CC | CC | CC | CC | N = 1, R = 1
1143 * PMRESR2 | EN | CC | CC | CC | CC | N = 1, R = 2
1145 * VPMRESR0 | EN | CC | CC | CC | CC | N = 2, R = ?
1155 * CC = class of events the group G is choosing from
1161 * unit, etc.) while the event code (CC) corresponds to a particular class of
1174 #define EVENT_CODE(event) (((event) >> 4) & 0xff) /* CC */
1526 * LPM0 | EN | CC | CC | CC | CC | N = 1, R = 0
1528 * LPM1 | EN | CC | CC | CC | CC | N = 1, R = 1
1530 * LPM2 | EN | CC | CC | CC | CC | N = 1, R = 2
1532 * L2LPM | EN | CC | CC | CC | CC | N = 1, R = 3
1534 * VLPM | EN | CC | CC | CC | CC | N = 2, R = ?
1545 * CC = class of events the group G is choosing from
1551 * unit, etc.) while the event code (CC) corresponds to a particular class of
H A Dopcodes.c26 0x3333, /* CC */
/linux-4.1.27/tools/power/cpupower/
H A 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)"; fi;}
190 $(ECHO) " CC " $@
191 $(QUIET) $(CC) $(CFLAGS) -fPIC -o $@ -c lib/$*.c
195 $(QUIET) $(CC) -shared $(CFLAGS) $(LDFLAGS) -o $@ \
207 $(ECHO) " CC " $@
208 $(QUIET) $(CC) $(CFLAGS) -I./lib -I ./utils -o $@ -c $*.c
211 $(ECHO) " CC " $@
212 $(QUIET) $(CC) $(CFLAGS) $(LDFLAGS) $(UTIL_OBJS) -lcpupower -lrt -lpci -L$(OUTPUT) -o $@
/linux-4.1.27/lib/raid6/test/
H A DMakefile6 CC = gcc macro
55 $(CC) $(CFLAGS) -c -o $@ $<
71 $(CC) $(CFLAGS) -o raid6test $^
/linux-4.1.27/arch/xtensa/boot/
H A DMakefile15 BIG_ENDIAN := $(shell echo __XTENSA_EB__ | $(CC) -E - | grep -v "\#")
/linux-4.1.27/arch/xtensa/boot/boot-redboot/
H A DMakefile20 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/sh/kernel/vsyscall/
H A DMakefile12 cmd_syscall = $(CC) -nostdlib $(SYSCFLAGS_$(@F)) \
/linux-4.1.27/kernel/debug/kdb/
H A DMakefile9 CCVERSION := $(shell $(CC) -v 2>&1 | sed -ne '$$p')
/linux-4.1.27/arch/mips/lasat/image/
H A DMakefile25 $(CC) -fno-pic $(HEAD_DEFINES) $(LINUXINCLUDE) -c -o $@ $<
/linux-4.1.27/arch/hexagon/
H A DMakefile34 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/m32r/
H A DMakefile36 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/Documentation/ptp/
H A Dtestptp.mk19 CC = $(CROSS_COMPILE)gcc macro
/linux-4.1.27/tools/power/acpi/
H A 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)"; fi;}
135 $(ECHO) " CC " $@
136 $(QUIET) $(CC) -c $(CFLAGS) -o $@ $<
/linux-4.1.27/arch/tile/
H A DMakefile34 $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name)
45 # Not needed for (e.g.) "$(CC) -m32" since the compiler automatically
/linux-4.1.27/tools/lib/traceevent/
H A DMakefile14 # environment or command line. This is necessary for CC and AR
23 # Allow setting CC and AR, or setting CROSS_COMPILE as a prefix.
24 $(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/arch/mn10300/kernel/
H A 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/drivers/ata/
H A Dsata_fsl.c112 CC = 0x10, enumerator in enum:__anon3334
570 VPRINTK("xx_qc_issue called,CQ=0x%x,CA=0x%x,CE=0x%x,CC=0x%x\n", sata_fsl_qc_issue()
573 ioread32(CE + hcr_base), ioread32(CC + hcr_base)); sata_fsl_qc_issue()
583 VPRINTK("CE=0x%x, DE=0x%x, CC=0x%x, CmdStat = 0x%x\n", sata_fsl_qc_issue()
586 ioread32(CC + hcr_base), sata_fsl_qc_issue()
988 DPRINTK("@Softreset, CQ = 0x%x, CA = 0x%x, CC = 0x%x\n", sata_fsl_softreset()
990 ioread32(CA + hcr_base), ioread32(CC + hcr_base)); sata_fsl_softreset()
992 iowrite32(0xFFFF, CC + hcr_base); sata_fsl_softreset()
1001 DPRINTK("Softreset@5000,CQ=0x%x,CA=0x%x,CC=0x%x\n", sata_fsl_softreset()
1003 ioread32(CA + hcr_base), ioread32(CC + hcr_base)); sata_fsl_softreset()
1039 iowrite32(0x01, CC + hcr_base); /* We know it will be cmd#0 always */ sata_fsl_softreset()
1057 VPRINTK("ccreg = 0x%x\n", ioread32(hcr_base + CC)); sata_fsl_softreset()
1227 done_mask = ioread32(hcr_base + CC); sata_fsl_host_intr()
1268 VPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x,CQ=0x%x,apqa=0x%x\n", sata_fsl_host_intr()
1277 /* clear CC bit, this will also complete the interrupt */ sata_fsl_host_intr()
1278 iowrite32(done_mask, hcr_base + CC); sata_fsl_host_intr()
1281 DPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x\n", sata_fsl_host_intr()
1288 ("completing ncq cmd,tag=%d,CC=0x%x,CA=0x%x\n", sata_fsl_host_intr()
1289 i, ioread32(hcr_base + CC), sata_fsl_host_intr()
1296 iowrite32(1, hcr_base + CC); sata_fsl_host_intr()
1299 DPRINTK("completing non-ncq cmd, CC=0x%x\n", sata_fsl_host_intr()
1300 ioread32(hcr_base + CC)); sata_fsl_host_intr()
1307 DPRINTK("spurious interrupt!!, CC = 0x%x\n", sata_fsl_host_intr()
1308 ioread32(hcr_base + CC)); sata_fsl_host_intr()
1309 iowrite32(done_mask, hcr_base + CC); sata_fsl_host_intr()
/linux-4.1.27/arch/blackfin/mach-common/
H A Dpm.c271 "CC = %2 == %0\n" bfin_pm_end()
272 "if ! CC jump 1b\n" bfin_pm_end()
273 : "=d,a" (cycle2), "=d,a" (cycle), "=d,a" (usec) : : "CC" bfin_pm_end()
H A Ddpmc_modes.S202 CC = BITTST(R2, 4); define
203 if !CC JUMP 1b;
281 CC = BITTST(R0,5); define
282 IF !CC JUMP 1b;
H A Dinterrupt.S170 CC = BITTST(R1, EVT_IVHW_P); define
171 IF ! CC JUMP 2f;
176 CC = R1 == R2; define
177 if CC JUMP 2f;
H A 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;
574 CC = BITTST(r7,TIF_SYSCALL_TRACE); define
575 if CC JUMP _sys_trace;
576 CC = BITTST(r7,TIF_SINGLESTEP); define
577 if CC JUMP _sys_trace;
/linux-4.1.27/arch/ia64/
H A DMakefile33 GAS_STATUS = $(shell $(srctree)/arch/ia64/scripts/check-gas "$(CC)" "$(OBJDUMP)")
34 KBUILD_CPPFLAGS += $(shell $(srctree)/arch/ia64/scripts/toolchain-flags "$(CC)" "$(OBJDUMP)" "$(READELF)")
/linux-4.1.27/drivers/isdn/pcbit/
H A Dedss1.c148 {EV_USR_SETUP_REQ, "CC->L3: Setup Request"},
149 {EV_USR_SETUP_RESP, "CC->L3: Setup Response"},
150 {EV_USR_PROCED_REQ, "CC->L3: Proceeding Request"},
151 {EV_USR_RELEASE_REQ, "CC->L3: Release Request"},
H A Dcapi.c399 Octect 3 = 0100 10CC - [ 7 Basic, 4 , 2-1 chan ] capi_decode_conn_ind()
/linux-4.1.27/drivers/media/rc/keymaps/
H A Drc-pv951.c41 { 0x16, KEY_SUBTITLE }, /* CC */
H A Drc-videomate-s350.c43 { 0x26, KEY_SUBTITLE}, /* CC */
H A Drc-azurewave-ad-tu700.c59 { 0x0043, KEY_SUBTITLE }, /* Subtitle / CC */
H A Drc-hauppauge.c229 { 0x1c0e, KEY_SUBTITLE }, /* CC */
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/
H A DMakefile26 AICASM_CC= $(CC)
/linux-4.1.27/crypto/
H A Dlrw.c115 s->fn(s->tfm, dst, dst); /* CC <- E(Key2,PP) */ lrw_round()
116 be128_xor(dst, dst, &s->t); /* C <- T xor CC */ lrw_round()
268 /* CC <- E(Key2,PP) */ lrw_crypt()
272 /* C <- T xor CC */ lrw_crypt()
H A Dxts.c89 s->fn(s->tfm, dst, dst); /* CC <- E(Key1,PP) */ xts_round()
90 be128_xor(dst, dst, s->t); /* C <- T xor CC */ xts_round()
211 /* CC <- E(Key2,PP) */ xts_crypt()
215 /* C <- T xor CC */ xts_crypt()
/linux-4.1.27/include/linux/platform_data/
H A Dsimplefb.h38 * @fourcc: 32bit DRM four-CC code (see drm_fourcc.h)
H A Dedma.h32 * The EDMA Channel Controller (CC) maps requests from channels into physical
/linux-4.1.27/arch/openrisc/
H A DMakefile25 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/powerpc/kernel/vdso32/
H A DMakefile11 CROSS32CC := $(CC)
/linux-4.1.27/arch/cris/boot/rescue/
H A DMakefile5 # CC = gcc-cris -mlinux -march=v32 $(LINUXINCLUDE)
/linux-4.1.27/net/netfilter/
H A Dxt_mark.c5 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
H A Dxt_owner.c7 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
H A Dxt_u32.c5 * (C) CC Computer Consultants GmbH, 2007
H A Dxt_TCPOPTSTRIP.c5 * Copyright © CC Computer Consultants GmbH, 2007
H A Dxt_iprange.c5 * (C) CC Computer Consultants GmbH, 2008
H A Dxt_connmark.c6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
H A Dxt_conntrack.c7 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
H A Dxt_time.c3 * Copyright © CC Computer Consultants GmbH, 2007
H A Dxt_connlimit.c7 * (C) CC Computer Consultants GmbH, 2007
/linux-4.1.27/arch/powerpc/
H A 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/arch/blackfin/kernel/
H A Dfixed_code.S57 CC = R0 == R1; define
58 IF !CC JUMP 1f;
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/
H A Dled.c55 /* get CC core */ brcms_led_register()
/linux-4.1.27/arch/x86/um/vdso/
H A DMakefile72 cmd_vdso = $(CC) -nostdlib -o $@ \
/linux-4.1.27/include/net/sctp/
H A Dchecksum.h22 * along with GNU CC; see the file COPYING. If not, see
H A Dauth.h19 * along with GNU CC; see the file COPYING. If not, see
H A Dulpqueue.h27 * along with GNU CC; see the file COPYING. If not, see
H A Dulpevent.h28 * along with GNU CC; see the file COPYING. If not, see
H A Dcommand.h22 * along with GNU CC; see the file COPYING. If not, see
H A Dtsnmap.h25 * along with GNU CC; see the file COPYING. If not, see
H A Dconstants.h22 * along with GNU CC; see the file COPYING. If not, see
/linux-4.1.27/arch/mn10300/
H A DMakefile17 CCSPECS := $(shell $(CC) -v 2>&1 | grep "^Reading specs from " | head -1 | cut -c20-)
/linux-4.1.27/arch/nios2/
H A DMakefile23 LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/arm/vdso/
H A DMakefile49 cmd_vdsold = $(CC) $(c_flags) $(VDSO_LDFLAGS) \
/linux-4.1.27/arch/cris/
H A DMakefile62 LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a)
/linux-4.1.27/arch/arc/include/asm/
H A Dptrace.h40 * ECR: <00> <VV> <CC> <PP>
/linux-4.1.27/drivers/bcma/
H A Dmain.c398 /* Early init CC core */ bcma_bus_register()
425 /* Init CC core */ bcma_bus_register()
432 /* Init CC core */ bcma_bus_register()
514 /* Early init CC core */ bcma_bus_early_register()
553 /* Init CC core */ bcma_bus_resume()
H A Ddriver_chipcommon.c82 /* 4706 CC and PMU watchdogs are clocked at 1/4 of ALP bcma_chipco_watchdog_ticks_per_ms()
/linux-4.1.27/arch/mips/include/asm/sn/sn0/
H A Dhubpi.h82 #define PI_CC_PEND_SET_A 0x0000c8 /* CC Interrupt Pending Set, CPU A */
83 #define PI_CC_PEND_SET_B 0x0000d0 /* CC Interrupt Pending Set, CPU B */
84 #define PI_CC_PEND_CLR_A 0x0000d8 /* CC Interrupt Pending Clr, CPU A */
85 #define PI_CC_PEND_CLR_B 0x0000e0 /* CC Interrupt Pending Clr, CPU B */
86 #define PI_CC_MASK 0x0000e8 /* CC Interrupt mask */
/linux-4.1.27/drivers/power/
H A D88pm860x_battery.c75 /* Vbat range of CC for measuring Rbat */
449 /* measure enable on IBAT, BAT_DET, CC. IBAT is depend on CC. */ pm860x_init_battery()
455 /* measure disable CC in sleep time */ pm860x_init_battery()
637 /* calculate resistor only in CC charge mode */ calc_resistor()
759 * between vbat and CC when vbat < 3.6v; calc_capacity()
766 * CC have some accumulation error, switch to OCV calc_capacity()
H A Dab8500_fg.c195 * @cc_lock: Mutex for locking the CC
477 * first stop the CC and then enable it again */ ab8500_fg_coulomb_counter()
490 /* Start the CC */ ab8500_fg_coulomb_counter()
511 /* Stop the CC */ ab8500_fg_coulomb_counter()
520 dev_dbg(di->dev, " CC enabled: %d Samples: %d\n", ab8500_fg_coulomb_counter()
564 /* Start the CC */ ab8500_fg_inst_curr_start()
650 /* Read CC Sample conversion value Low and high */ ab8500_fg_inst_curr_finalize()
691 /* Stop the CC */ ab8500_fg_inst_curr_finalize()
725 /* Wait for CC to actually start */ ab8500_fg_inst_curr_blocking()
1457 /* Wasn't the CC IRQ that got us here */ ab8500_fg_algorithm_charging()
1459 dev_dbg(di->dev, "%s CC conv not done\n", ab8500_fg_algorithm_charging()
1651 /* Wasn't the CC IRQ that got us here */ ab8500_fg_algorithm_discharging()
1653 dev_dbg(di->dev, "%s CC conv not done\n", ab8500_fg_algorithm_discharging()
1742 dev_err(di->dev, "failed to calibrate the CC\n"); ab8500_fg_algorithm_calibrate()
H A Dpm2301_charger.c389 "Watchdog occurred for precharge, CC and CV charge\n"); pm2_int_reg2()
645 /* enable CC and CV watchdog */ pm2xxx_charging_init()
662 * CC current level = 1000mA pm2xxx_charging_init()
671 * Precharge to CC threshold = 2.9V pm2xxx_charging_init()
/linux-4.1.27/arch/sparc/kernel/
H A Dvisemul.c81 /* 000000001 - Eight 8-bit edge boundary processing, no CC */
87 /* 000000011 - Eight 8-bit edge boundary processing, little-endian, no CC */
93 /* 000000101 - Four 16-bit edge boundary processing, no CC */
99 /* 000000111 - Four 16-bit edge boundary processing, little-endian, no CC */
105 /* 000001001 - Two 32-bit edge boundary processing, no CC */
111 /* 000001011 - Two 32-bit edge boundary processing, little-endian, no CC */
/linux-4.1.27/arch/tile/kernel/vdso/
H A DMakefile73 cmd_vdsold = $(CC) $(KCFLAGS) -nostdlib $(SYSCFLAGS_$(@F)) \
/linux-4.1.27/arch/x86/crypto/sha-mb/
H A 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/mips/kernel/
H A DMakefile95 CFLAGS_cpu-bugs64.o = $(shell if $(CC) $(KBUILD_CFLAGS) -Wa,-mdaddi -c -o /dev/null -x c /dev/null >/dev/null 2>&1; then echo "-DHAVE_AS_SET_DADDI"; fi)
/linux-4.1.27/net/sctp/
H A Ddebug.c25 * along with GNU CC; see the file COPYING. If not, see
H A Dssnmap.c21 * along with GNU CC; see the file COPYING. If not, see
H A Dobjcnt.c23 * along with GNU CC; see the file COPYING. If not, see
H A Dinqueue.c27 * along with GNU CC; see the file COPYING. If not, see
H A Dprimitive.c26 * along with GNU CC; see the file COPYING. If not, see
H A Dchunk.c21 * along with GNU CC; see the file COPYING. If not, see
H A Dsysctl.c22 * along with GNU CC; see the file COPYING. If not, see
H A Dtsnmap.c24 * along with GNU CC; see the file COPYING. If not, see
/linux-4.1.27/arch/avr32/mach-at32ap/include/mach/
H A Dat32ap700x.h219 ATMEL_LCDC(PC, CC) | ATMEL_LCDC(PC, DVAL) | \
223 ATMEL_LCDC(PE, CC) | ATMEL_LCDC(PE, DVAL) | \
/linux-4.1.27/arch/mips/
H A DMakefile122 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(shell $(CC) -dumpmachine |grep -q 'mips.*el-.*' && echo -EB $(undef-all) $(predef-be))
123 cflags-$(CONFIG_CPU_LITTLE_ENDIAN) += $(shell $(CC) -dumpmachine |grep -q 'mips.*el-.*' || echo -EL $(undef-all) $(predef-le))
278 CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \
/linux-4.1.27/drivers/media/usb/cx231xx/
H A Dcx231xx-pcb-cfg.h159 u8 hanc_index; /* Sliced CC */
H A Dcx231xx-cards.c1470 /* Sliced CC VBI init */ cx231xx_init_v4l2()
1472 /* compute alternate max packet sizes for sliced CC */ cx231xx_init_v4l2()
1476 "Sliced CC PCB interface #%d doesn't exist\n", idx); cx231xx_init_v4l2()
1487 "sliced CC EndPoint Addr 0x%x, Alternate settings: %i\n", cx231xx_init_v4l2()
/linux-4.1.27/drivers/spi/
H A Dspi-bcm53xx.c253 /* Broadcom SoCs (at least with the CC rev 42) use SPI for flash only */ bcm53xxspi_bcma_probe()
/linux-4.1.27/drivers/clk/qcom/
H A Dclk-rcg.h46 * @reset_in_cc: true if the mnctr_reset_bit is in the CC register
/linux-4.1.27/arch/s390/kernel/
H A Ddumpstack.c140 "P:%x AS:%x CC:%x PM:%x", mask_bits(regs, PSW_MASK_PER), show_registers()
/linux-4.1.27/arch/parisc/
H A DMakefile26 LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
/linux-4.1.27/arch/arm64/kvm/
H A Demulate.c40 0x3333, /* CC */
/linux-4.1.27/arch/blackfin/mach-bf561/include/mach/
H A Dmem_map.h176 dreg = CC;
/linux-4.1.27/arch/arc/
H A DMakefile67 LIBGCC := $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
/linux-4.1.27/drivers/media/platform/xilinx/
H A Dxilinx-vip.c72 * xvip_get_format_by_fourcc - Retrieve format information for a 4CC
73 * @fourcc: the format 4CC
/linux-4.1.27/arch/x86/
H A 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/
H A Dglue_helper.c390 /* CC <- T xor C */ glue_xts_crypt_128bit_one()
393 /* PP <- D(Key2,CC) */ glue_xts_crypt_128bit_one()
/linux-4.1.27/
H A DMakefile51 # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
339 ifneq ($(CC),)
340 ifeq ($(shell $(CC) -v 2>&1 | grep -c "clang version"), 1)
352 # Make variables (CC, etc...)
355 CC = $(CROSS_COMPILE)gcc macro
356 CPP = $(CC) -E
418 export ARCH SRCARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC
750 # arch Makefile may override CC so keep this after arch Makefile is included
751 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
779 ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y)
/linux-4.1.27/drivers/media/i2c/
H A Dsaa7127.c392 "Turn CC %s\n", enable ? "on" : "off"); saa7127_set_cc()
400 v4l2_dbg(2, debug, sd, "CC data: %04x\n", cc); saa7127_set_cc()
691 v4l2_info(sd, "CC: %s\n", state->cc_enable ? "enabled" : "disabled"); saa7127_log_status()
/linux-4.1.27/drivers/usb/host/
H A Dohci-dbg.c280 ohci_dbg (ohci, " info %08x CC=%x %s DI=%d %s %s\n", tmp, ohci_dump_td()
290 ohci_dbg (ohci, " info %08x CC=%x FC=%d DI=%d SF=%04x\n", tmp, ohci_dump_td()
301 ohci_dbg (ohci, " psw [%d] = %2x, CC=%x %s=%d\n", i, ohci_dump_td()
H A Disp116x.h212 /* Hardware transfer status codes -- CC from ptd->count */
229 /* map PTD status codes (CC) to errno values */
H A Dohci.h144 * Hardware transfer status codes -- CC from td->hwINFO or td->hwPSW
163 /* map OHCI TD status codes (CC) to errno values */
H A Dimx21-hcd.h293 /* condition (error) CC codes and mapping (OHCI like) */
H A Disp1362.h276 * Hardware transfer status codes -- CC from PTD
295 /* map OHCI TD status codes (CC) to errno values */
966 DBG(0, "EP %p: CC=%x EP=%d DIR=%x CNT=%d LEN=%d MPS=%d TGL=%x ACT=%x FA=%d SPD=%x SF=%x PR=%x LST=%x\n", dump_ptd()
/linux-4.1.27/drivers/usb/wusbcore/
H A Dcbaf.c70 * (this uploads the new CC to the device).
513 * Send a new CC to the device.
529 dev_dbg(dev, "Trying to upload CC:\n"); cbaf_cc_upload()
/linux-4.1.27/arch/openrisc/include/asm/
H A Dpgtable.h110 * Phys pg.num L PP Index D A WOM WBC CI CC
119 * CC : Cache coherent
/linux-4.1.27/drivers/media/pci/ivtv/
H A Divtv-driver.h248 #define IVTV_F_I_UPDATE_CC 9 /* CC should be updated */
570 struct vbi_cc cc_payload[256]; /* sliced VBI CC payload array: it is an array to
571 prevent dropping CC data if they couldn't be
574 u8 cc_missing_cnt; /* counts number of frames without CC for passthrough mode */
/linux-4.1.27/drivers/media/platform/vivid/
H A Dvivid-vbi-gen.c98 const unsigned rate = 1000000; /* CC has a 1 MHz transmission rate */ vivid_vbi_gen_cc_raw()
/linux-4.1.27/drivers/media/rc/
H A Dnuvoton-cir.c151 pr_info(" * CC: 0x%x\n", nvt_cir_reg_read(nvt, CIR_CC)); cir_dump_regs()
507 * set carrier on 2 registers: CP & CC
509 * set CC by SPEC, CC = 3MHz/carrier - 1
/linux-4.1.27/drivers/media/usb/dvb-usb/
H A Dvp7045.c147 { 0x0043, KEY_SUBTITLE }, /* Subtitle/CC */
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Daddi_apci_2032.c182 /* Check if VCC OR CC interrupt has occurred */ apci2032_interrupt()
/linux-4.1.27/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_crat.h31 * 4CC signature values for the CRAT and CDIT ACPI tables
/linux-4.1.27/arch/x86/vdso/
H A DMakefile173 cmd_vdso = $(CC) -nostdlib -o $@ \
/linux-4.1.27/drivers/gpu/drm/nouveau/
H A Dnouveau_acpi.c85 /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ nouveau_optimus_dsm()
/linux-4.1.27/include/linux/usb/
H A Dehci_def.h43 #define HCS_N_PCC(p) (((p)>>8)&0xf) /* bits 11:8, ports per CC */
/linux-4.1.27/include/uapi/linux/
H A Dnfc.h64 * subsequent CONNECT and CC messages.
/linux-4.1.27/include/uapi/linux/usb/
H A Dch9.h712 * encryption types available for setting up a CC/association.
882 * exchanging short lived session keys. The handshake depends on a CC.
896 /* USB_REQ_SET_CONNECTION modifies or revokes a connection context (CC).
897 * A CC may also be set up using non-wireless secure channels (including
/linux-4.1.27/arch/sh/
H A DMakefile55 cflags-y += $(shell $(CC) $(KBUILD_CFLAGS) -print-multi-lib | \
/linux-4.1.27/sound/synth/emux/
H A Demux_nrpn.c29 /* NRPN / CC -> Emu8000 parameter converter */
/linux-4.1.27/net/decnet/
H A Ddn_nsp_in.c23 * Paul Koning: Fix to push CC sockets into RUN when acks are
869 /* both data and ack frames can kick a CC socket into RUN */ dn_nsp_backlog_rcv()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/
H A Dsw.c328 {RTL_USB_DEVICE(0x0bda, 0x5088, rtl92cu_hal_cfg)}, /*Thinkware-CC&C*/
/linux-4.1.27/drivers/ssb/
H A Ddriver_gpio.c121 .name = "SSB-GPIO-CC",
/linux-4.1.27/drivers/media/platform/vsp1/
H A Dvsp1_video.c136 * vsp1_get_format_info - Retrieve format information for a 4CC
137 * @fourcc: the format 4CC
140 * given V4L2 format 4CC, or NULL if no corresponding format can be found.
/linux-4.1.27/drivers/nfc/
H A Dport100.c39 + 2) /* data[0] CC, data[1] SCC */
45 * Max extended frame payload len, excluding CC and SCC
65 #define PORT100_FRAME_DIRECTION(f) (f->data[0]) /* CC */
/linux-4.1.27/net/nfc/
H A Dllcp_core.c983 /* Send CC */ nfc_llcp_recv_connect()
1166 pr_err("Invalid CC\n"); nfc_llcp_recv_cc()
1439 pr_debug("CC\n"); nfc_llcp_rx_skb()
/linux-4.1.27/drivers/dma/
H A Dat_xdmac.c376 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n", at_xdmac_start_xfer()
403 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n", at_xdmac_start_xfer()
1160 "%s: CC=0x%08x CNDA=0x%08x, CNDC=0x%08x, CSA=0x%08x, CDA=0x%08x, CUBC=0x%08x\n", at_xdmac_interrupt()

Completed in 3608 milliseconds

12