HomeSort by relevance Sort by last modified time
    Searched refs:cc (Results 1 - 25 of 789) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2007-10-30-Volatile.c 4 volatile int cc = 0; local
5 p += cc;
  /external/regex-re2/
Android.mk 12 util/arena.cc \
13 util/hash.cc \
14 util/rune.cc \
15 util/stringpiece.cc \
16 util/stringprintf.cc \
17 util/strutil.cc \
18 util/valgrind.cc \
19 re2/bitstate.cc \
20 re2/compile.cc \
21 re2/dfa.cc \
    [all...]
  /external/valgrind/main/none/tests/s390x/
icm.c 8 : "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 = get_cc();
    [all...]
srst.c 16 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...]
lpr.c 6 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...]
stck.c 8 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...]
stckf.c 8 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...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
wc1.l 7 int cc = 0, wc = 0, lc = 0;
9 {nonws}+ cc += yyleng; ++wc;
11 {ws}+ cc += yyleng;
13 \n ++lc; ++cc;
16 printf( "%8d %8d %8d\n", lc, wc, cc );
wc2.l 8 int cc = 0, wc = 0, lc = 0;
10 {word}{ws}* cc += yyleng; ++wc;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {ws}+ cc += yyleng;
15 \n+ cc += yyleng; lc += yyleng;
18 printf( "%8d %8d %8d\n", lc, wc, cc );
wc4.l 9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* ++wc; cc += yyleng;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
13 {words}{word}{ws}* wc += 2; cc += yyleng;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
15 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
17 {words}{3}{word}{ws}* wc += 4; cc += yyleng;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc;
20 {ws}+ cc += yyleng
    [all...]
wc3.l 9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word}{ws}* cc += yyleng; wc += 2;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
19 \n+ cc += yyleng; lc += yyleng;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
wc5.l 9 int cc = 0, wc = 0, lc = 0;
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word} cc += yyleng; wc += 2; /* oops */
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
19 \n+ cc += yyleng; lc += yyleng;
22 printf( "%8d %8d %8d\n", lc, wc, cc );
  /external/webp/src/utils/
color_cache.c 24 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) {
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) {
36 if (cc != NULL) {
37 free(cc->colors_);
38 cc->colors_ = NULL
    [all...]
color_cache.h 31 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,
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,
44 return (kHashMul * argb) >> cc->hash_shift_;
47 static WEBP_INLINE int VP8LColorCacheContains(const VP8LColorCache* const cc,
49 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_
    [all...]
  /external/chromium/
Android.mk 11 LOCAL_CPP_EXTENSION := .cc
18 googleurl/src/gurl.cc \
19 googleurl/src/url_canon_etc.cc \
20 googleurl/src/url_canon_fileurl.cc \
21 googleurl/src/url_canon_host.cc \
22 googleurl/src/url_canon_icu.cc \
23 googleurl/src/url_canon_internal.cc \
24 googleurl/src/url_canon_ip.cc \
25 googleurl/src/url_canon_mailtourl.cc \
26 googleurl/src/url_canon_path.cc \
    [all...]
  /external/stressapptest/
Android.mk 6 src/main.cc \
7 src/adler32memcpy.cc \
8 src/disk_blocks.cc \
9 src/error_diag.cc \
10 src/finelock_queue.cc \
11 src/logger.cc \
12 src/os.cc \
13 src/os_factory.cc \
14 src/pattern.cc \
15 src/queue.cc \
    [all...]
  /external/v8/
Android.v8common.mk 1 LOCAL_CPP_EXTENSION := .cc
4 src/accessors.cc \
5 src/allocation.cc \
6 src/api.cc \
7 src/assembler.cc \
8 src/ast.cc \
9 src/bignum.cc \
10 src/bignum-dtoa.cc \
11 src/bootstrapper.cc \
12 src/builtins.cc \
    [all...]
  /external/valgrind/main/callgrind/
costs.c 46 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->next
    [all...]
  /external/webrtc/src/system_wrappers/source/
Android.mk 18 LOCAL_CPP_EXTENSION := .cc
20 map.cc \
21 rw_lock_generic.cc \
22 sort.cc \
23 aligned_malloc.cc \
24 atomic32.cc \
25 condition_variable.cc \
26 cpu_no_op.cc \
27 cpu_features.cc \
29 cpu_info.cc \
    [all...]
  /external/chromium/third_party/libjingle/source/talk/
libjingle.scons 59 "base/latebindingsymboltable.cc",
60 "base/linux.cc",
61 "session/phone/libudevsymboltable.cc",
62 "session/phone/v4llookup.cc",
65 "base/macconversion.cc",
66 "base/macutils.cc",
70 "base/unixfilesystem.cc",
71 "base/opensslidentity.cc",
72 "base/opensslstreamadapter.cc",
73 "base/sslidentity.cc",
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLTokenizer.cpp 53 inline UChar toLowerCase(UChar cc)
55 ASSERT(isASCIIUpper(cc));
57 return cc + lowerCaseOffset;
60 inline bool isTokenizerWhitespace(UChar cc)
62 return cc == ' ' || cc == '\x0A' || cc == '\x09' || cc == '\x0C';
170 cc = m_inputStreamPreprocessor.nextInputCharacter(); \
183 cc = m_inputStreamPreprocessor.nextInputCharacter();
    [all...]
  /abi/cpp/
Android.mk 7 src/array_type_info.cc \
8 src/class_type_info.cc \
9 src/delete.cc \
10 src/dynamic_cast.cc \
11 src/enum_type_info.cc \
12 src/function_type_info.cc \
13 src/new.cc \
14 src/pbase_type_info.cc \
15 src/pointer_type_info.cc \
16 src/pointer_to_member_type_info.cc \
    [all...]
  /external/compiler-rt/lib/asan/
Android.mk 27 asan_rtl.cc \
28 asan_allocator.cc \
29 asan_globals.cc \
30 asan_interceptors.cc \
31 asan_linux.cc \
32 asan_malloc_linux.cc \
33 asan_malloc_mac.cc \
34 asan_new_delete.cc \
35 asan_poisoning.cc \
36 asan_posix.cc \
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerProxy.h 79 virtual void dataProcessing(int opcode, int cc, int s,
82 virtual void MLA(int cc, int s,
84 virtual void MUL(int cc, int s,
86 virtual void UMULL(int cc, int s,
88 virtual void UMUAL(int cc, int s,
90 virtual void SMULL(int cc, int s,
92 virtual void SMUAL(int cc, int s,
95 virtual void B(int cc, uint32_t* pc);
96 virtual void BL(int cc, uint32_t* pc);
97 virtual void BX(int cc, int Rn)
    [all...]
ARMAssemblerInterface.h 35 EQ, NE, CS, CC, MI, PL, VS, VC, HI, LS, GE, LT, GT, LE, AL, NV,
37 LO = CC
122 dataProcessing( int opcode, int cc, int s,
127 virtual void MLA(int cc, int s,
129 virtual void MUL(int cc, int s,
131 virtual void UMULL(int cc, int s,
133 virtual void UMUAL(int cc, int s,
135 virtual void SMULL(int cc, int s,
137 virtual void SMUAL(int cc, int s,
141 virtual void B(int cc, uint32_t* pc) = 0
    [all...]

Completed in 1052 milliseconds

1 2 3 4 5 6 7 8 91011>>