Searched refs:cc (Results 1 - 25 of 692) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-10-30-Volatile.c4 volatile int cc = 0; local
5 p += cc;
/external/regex-re2/
H A DAndroid.mk11 util/arena.cc \
12 util/hash.cc \
13 util/rune.cc \
14 util/stringpiece.cc \
15 util/stringprintf.cc \
16 util/strutil.cc \
17 util/valgrind.cc \
18 re2/bitstate.cc \
19 re2/compile.cc \
20 re2/dfa.cc \
[all...]
/external/valgrind/main/none/tests/s390x/
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 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 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 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 Dtre.stdout.exp1 Resulting cc is 0 and the string is
2 Resulting cc is 0 and the string is
3 Resulting cc is 0 and the string is
4 Resulting cc is 1 and the string is a
5 Resulting cc is 0 and the string is A
6 Resulting cc is 1 and the string is abc
7 Resulting cc is 0 and the string is ABC
8 Resulting cc is 0 and the string is ABCDEFGH
9 Resulting cc is 1 and the string is ABC
10 Resulting cc i
[all...]
/external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
H A Dwc1.l7 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 );
H A Dwc2.l8 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 );
H A Dwc4.l9 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
[all...]
H A Dwc3.l9 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 );
H A Dwc5.l9 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/
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/chromium/
H A DAndroid.mk11 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/ceres-solver/
H A DAndroid.mk15 LOCAL_CPP_EXTENSION := .cc
29 LOCAL_SRC_FILES := internal/ceres/array_utils.cc \
30 internal/ceres/block_evaluate_preparer.cc \
31 internal/ceres/block_jacobian_writer.cc \
32 internal/ceres/block_jacobi_preconditioner.cc \
33 internal/ceres/block_random_access_dense_matrix.cc \
34 internal/ceres/block_random_access_matrix.cc \
35 internal/ceres/block_random_access_sparse_matrix.cc \
36 internal/ceres/block_sparse_matrix.cc \
37 internal/ceres/block_structure.cc \
[all...]
/external/stressapptest/
H A DAndroid.mk6 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/
H A DAndroid.v8common.mk1 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/
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/chromium/third_party/libjingle/source/talk/
H A Dlibjingle.scons59 "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/
H A DHTMLTokenizer.cpp53 inline UChar toLowerCase(UChar cc) argument
55 ASSERT(isASCIIUpper(cc));
57 return cc + lowerCaseOffset;
60 inline bool isTokenizerWhitespace(UChar cc) argument
62 return cc == ' ' || cc == '\x0A' || cc == '\x09' || cc == '\x0C';
170 cc = m_inputStreamPreprocessor.nextInputCharacter(); \
183 cc
1670 addToPossibleEndTag(UChar cc) argument
[all...]
/external/harfbuzz_ng/
H A DAndroid.mk30 src/hb-blob.cc \
31 src/hb-buffer-serialize.cc \
32 src/hb-buffer.cc \
33 src/hb-common.cc \
34 src/hb-fallback-shape.cc \
35 src/hb-font.cc \
36 src/hb-ot-tag.cc \
37 src/hb-set.cc \
38 src/hb-shape.cc \
39 src/hb-shape-plan.cc \
[all...]
/external/libyuv/
H A DAndroid.mk8 files/source/compare.cc \
9 files/source/convert.cc \
10 files/source/convert_argb.cc \
11 files/source/convert_from.cc \
12 files/source/cpu_id.cc \
13 files/source/format_conversion.cc \
14 files/source/planar_functions.cc \
15 files/source/rotate.cc \
16 files/source/rotate_argb.cc \
17 files/source/row_common.cc \
[all...]
/external/clang/utils/VtableTest/
H A DMakefile6 test.cc: gen.cc
7 g++ gen.cc -o gen
8 ./gen >test.cc
10 test-gcc.sum: test.cc
11 time $(GXX) test.cc -o test-gcc.s -S
15 test-clang.sum: test.cc
16 time $(CLANGXX) test.cc -o test-clang.s -S
24 rm -f gen test-gcc test-clang test.cc test-gcc.sum test-clang.sum test-gcc.s test-clang.s

Completed in 616 milliseconds

1234567891011>>