Searched defs:cc (Results 1 - 25 of 226) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A D2007-10-30-Volatile.c4 volatile int cc = 0; local
5 p += cc;
/external/webp/src/utils/
H A Dcolor_cache.c24 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) { argument
26 assert(cc != NULL);
28 cc->colors_ = (uint32_t*)WebPSafeCalloc((uint64_t)hash_size,
29 sizeof(*cc->colors_));
30 if (cc->colors_ == NULL) return 0;
31 cc->hash_shift_ = 32 - hash_bits;
35 void VP8LColorCacheClear(VP8LColorCache* const cc) { argument
36 if (cc != NULL) {
37 free(cc->colors_);
38 cc
[all...]
H A Dcolor_cache.h31 const VP8LColorCache* const cc, uint32_t key) {
32 assert(key <= (~0U >> cc->hash_shift_));
33 return cc->colors_[key];
36 static WEBP_INLINE void VP8LColorCacheInsert(const VP8LColorCache* const cc, argument
38 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_;
39 cc->colors_[key] = argb;
42 static WEBP_INLINE int VP8LColorCacheGetIndex(const VP8LColorCache* const cc, argument
44 return (kHashMul * argb) >> cc->hash_shift_;
47 static WEBP_INLINE int VP8LColorCacheContains(const VP8LColorCache* const cc, argument
49 const uint32_t key = (kHashMul * argb) >> cc
30 VP8LColorCacheLookup( const VP8LColorCache* const cc, uint32_t key) argument
[all...]
/external/clang/test/CXX/class/class.local/
H A Dp1-0x.cpp8 int cc = c; member in struct:C
/external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
H A Dmywc.c8 register int c, cc = 0, wc = 0, lc = 0; local
12 ++cc;
19 ++cc;
25 done: printf( "%8d%8d%8d\n", lc, wc, cc );
/external/valgrind/main/none/tests/s390x/
H A Dstck.c8 int cc; local
12 :"=Q" (*addr), "=d"(cc)::"memory", "cc");
13 return cc;
24 int cc; local
27 cc = stck(&start);
28 if (cc)
29 printf("cc != 0!\n");
31 cc = stck(&end);
32 if (cc)
[all...]
H A Dstckf.c8 int cc; local
12 :"=Q" (*addr), "=d"(cc)::"memory", "cc");
13 return cc;
24 int cc; local
27 cc = stckf(&start);
28 if (cc)
29 printf("cc != 0!\n");
31 cc = stckf(&end);
32 if (cc)
[all...]
H A Dstfle.c11 int cc; local
16 : "=m" (*hoststfle), "+d" (__nr), "=d" (cc) : : "cc", "memory");
18 printf("the value of cc is %d and #double words is %llu\n", cc, __nr + 1);
H A Dflogr.c18 unsigned int *cc)
30 : "2", "3", "cc");
32 *cc = psw >> 28;
34 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
35 value, *bitpos, *modval, *cc);
42 unsigned int *cc)
54 : "3", "cc");
56 *cc = psw >> 28;
58 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
59 value, *bitpos, *modval, *cc);
17 flogr1(unsigned long input, unsigned long *bitpos, unsigned long *modval, unsigned int *cc) argument
41 flogr2(unsigned long input, unsigned long *bitpos, unsigned long *modval, unsigned int *cc) argument
65 flogr3(unsigned long input, unsigned long *bitpos, unsigned long *modval, unsigned int *cc) argument
92 unsigned int cc; local
[all...]
H A Dicm.c8 : "1", "memory", "cc"); \
16 : "1", "memory", "cc"); \
30 int cc; local
36 icm(&a[0+offset], 0, what); cc = get_cc(); \
37 icm(&a[1+offset+cc], 1, what); cc = get_cc(); \
38 icm(&a[2+offset+cc], 2, what); cc = get_cc(); \
39 icm(&a[3+offset+cc], 3, what); cc
[all...]
H A Dlpr.c6 int _new, cc; local
10 : "=d" (_new), "=d" (cc)
12 : "cc");
14 return cc;
20 int cc; local
24 : "=d" (_new), "=d" (cc)
26 : "cc");
28 return cc;
34 int cc; local
38 : "=d" (_new), "=d" (cc)
48 int n,cc; local
57 int cc; local
67 int cc; local
[all...]
H A Dsrst.c16 int cc; local
22 :"+d" (start), "+d" (next), "=d" (cc) :"d" (what): "cc");
23 *__cc = cc;
31 int cc; local
37 :"+d" (start), "+d" (what), "=d" (cc) :: "cc");
38 *__cc = cc;
45 int cc; local
49 srst3((char *)0x12345678,(char *)0x12345678,'0', &cc);
[all...]
H A Dstcke.c18 int cc; local
22 :"+Q" (*addr), "=d"(cc)::"cc");
24 return cc;
35 int cc; local
37 cc = stcke(start.buffer);
38 if (cc)
39 printf("cc != 0!\n");
42 cc = stcke(end.buffer);
43 if (cc)
[all...]
H A Dclc.c13 int cc; local
21 :"=d" (cc)
22 :"a" (a1), "a" (a2), "d" (l): "1", "cc");
23 return cc;
29 int cc; local
31 cc = clc(a1, a2, l);
32 printf("%d bytes:%d\n",l, cc);
H A Dclcle.c17 register unsigned long cc asm ("7");
23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3)
25 : "memory", "cc");
31 return cc;
38 int cc; local
41 cc = clcle(&a1, &l1, &a3, &l3, pad);
42 printf("cc: %d, l1: %lu(%lu) l3: %lu(%lu) diff1: %lu diff3: %lu\n",
43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3);
/external/chromium/chrome/browser/ui/views/
H A Dssl_client_certificate_selector_win.cc37 PCCERT_CONTEXT cc = cert_request_info->client_certs[i]->os_cert_handle(); local
38 ok = CertAddCertificateContextToStore(client_certs, cc,
/external/clang/test/CXX/special/class.inhctor/
H A Delsewhere.cpp46 C<char> cc; // expected-note {{here}} variable
/external/openssl/crypto/des/
H A Dcfb64enc.c74 unsigned char *iv,c,cc; local
111 cc= *(in++);
113 iv[n]=cc;
114 *(out++)=c^cc;
118 v0=v1=ti[0]=ti[1]=c=cc=0;
/external/valgrind/main/callgrind/
H A Dcosts.c46 CostChunk* cc = (CostChunk*) CLG_MALLOC("cl.costs.gc.1", local
49 cc->size = COSTCHUNK_SIZE;
50 cc->used = 0;
51 cc->next = 0;
54 cost_chunk_current->next = cc;
55 cost_chunk_current = cc;
57 if (!cost_chunk_base) cost_chunk_base = cc;
72 CostChunk* cc = cost_chunk_base, *cc_next; local
73 while(cc) {
74 cc_next = cc
[all...]
/external/valgrind/main/helgrind/
H A Dhg_basics.c45 void* HG_(zalloc) ( HChar* cc, SizeT n ) argument
49 p = VG_(malloc)( cc, n );
61 Char* HG_(strdup) ( HChar* cc, const Char* s ) argument
63 return VG_(strdup)( cc, s );
/external/valgrind/main/none/tests/amd64/
H A Dsmc1.c89 void cc ( int x ) { dd(x, (void(*)(int)) &code[0]); } function
92 void bb ( int x ) { cc(x); }
/external/valgrind/main/none/tests/x86/
H A Dsmc1.c72 void cc ( int x ) { dd(x, (void(*)(int)) &code[0]); } function
75 void bb ( int x ) { cc(x); }
/external/openssl/crypto/bf/
H A Dbf_cfb64.c74 unsigned char *iv,c,cc; local
111 cc= *(in++);
113 iv[n]=cc;
114 *(out++)=c^cc;
118 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/external/openssl/crypto/rc2/
H A Drc2cfb64.c75 unsigned char *iv,c,cc; local
112 cc= *(in++);
114 iv[n]=cc;
115 *(out++)=c^cc;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/external/srec/srec/cfront/
H A Dlog_tabl.c122 int ii, aa, bb, cc, value, shift; local
138 cc = value >> 2;
139 value = aa + bb + cc;
147 bb += cc;
149 cc >>= 2;
150 value = aa + bb + cc;

Completed in 3000 milliseconds

12345678910