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

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-10-30-Volatile.c4 volatile int cc = 0; local
5 p += cc;
/external/clang/test/CodeGenCXX/
H A Dcxx1y-generic-lambdas.cpp10 custom_copy_ctor<void> cc; local
11 [cc](auto){}(1);
/external/libyuv/files/util/
H A DMakefile1 psnr: psnr.cc ssim.cc psnr_main.cc
3 $(CXX) /arch:SSE2 /Ox /openmp psnr.cc ssim.cc psnr_main.cc
5 $(CXX) -msse2 -O3 -fopenmp -static -o psnr psnr.cc ssim.cc psnr_main.cc -Wl,--strip-all
/external/valgrind/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 Dcomp-1.stdout.exp1 cr (0, 0) --> cc = 0
2 cr (0, 1) --> cc = 1
3 cr (0, -1) --> cc = 2
4 cr (1, 0) --> cc = 2
5 cr (-1, 0) --> cc = 1
6 cr (-2, -1) --> cc = 1
7 cr (-2, -2) --> cc = 0
8 cr (-2, -3) --> cc = 2
9 cr (2, 1) --> cc = 2
10 cr (2, 2) --> cc
[all...]
H A Dcomp-2.stdout.exp1 clr (0, 0) --> cc = 0
2 clr (0, 1) --> cc = 1
3 clr (1, 0) --> cc = 2
4 clr (2, 1) --> cc = 2
5 clr (2, 2) --> cc = 0
6 clr (2, 3) --> cc = 1
7 clr (0, 127) --> cc = 1
8 clr (127, 0) --> cc = 2
9 clr (127, 126) --> cc = 2
10 clr (127, 127) --> cc
[all...]
H A Ddfp-3.stdout.exp2 2220000000500005 == 2220000000500005 (cc == 0)
3 2220000000500005 < 363c000000000000 (cc == 1)
4 363c000000000000 > 2220000000500005 (cc == 2)
5 7800000000000000 <> 7c00000000000000 (cc == 3)
6 7800000000000000 == 7800000000000000 (cc == 0)
7 7c00000000000000 <> 7c00000000000000 (cc == 3)
9 2206c00000000000000a0005 == 2206c00000000000000a0005 (cc == 0)
10 2206c00000000000000a0005 < 2207c00000000000140000000000005 (cc == 1)
11 2207c00000000000140000000000005 > 2206c00000000000000a0005 (cc == 2)
12 780000000000000000000000 <> 7c0000000000000000000000 (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/pdfium/xfa/fxfa/parser/
H A Dcxfa_data.cpp19 int cc = 0; local
22 while (FXSYS_iswspace(str[cc]) && cc < len)
23 cc++;
25 if (cc >= len)
28 while (cc < len) {
29 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
32 r = r * 10 + str[cc] - '0';
33 cc
[all...]
/external/toybox/toys/other/
H A Dchvt.c25 char *consoles[]={"/dev/console", "/dev/vc/0", "/dev/tty", NULL}, **cc; local
28 for (cc = consoles; *cc; cc++)
29 if (-1 != (fd = open(*cc, O_RDWR))) break;
32 if (!*cc || fd < 0 || ioctl(fd, 0x5606, vtnum) || ioctl(fd, 0x5607, vtnum))
/external/libyuv/files/
H A DAndroid.mk6 LOCAL_CPP_EXTENSION := .cc
9 source/compare.cc \
10 source/compare_common.cc \
11 source/compare_gcc.cc \
12 source/compare_neon.cc \
13 source/compare_neon64.cc \
14 source/convert.cc \
15 source/convert_argb.cc \
16 source/convert_from.cc \
17 source/convert_from_argb.cc \
[all...]
/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/stressapptest/
H A DAndroid.mk7 src/main.cc \
8 src/adler32memcpy.cc \
9 src/disk_blocks.cc \
10 src/error_diag.cc \
11 src/finelock_queue.cc \
12 src/logger.cc \
13 src/os.cc \
14 src/os_factory.cc \
15 src/pattern.cc \
16 src/queue.cc \
[all...]
/external/v8/
H A DAndroid.v8.mk9 src/accessors.cc \
10 src/address-map.cc \
11 src/allocation-site-scopes.cc \
12 src/allocation.cc \
13 src/api-arguments.cc \
14 src/api-experimental.cc \
15 src/api-natives.cc \
16 src/api.cc \
17 src/arguments.cc \
18 src/asmjs/asm-js.cc \
[all...]
H A DAndroid.base.mk9 src/base/bits.cc \
10 src/base/cpu.cc \
11 src/base/debug/stack_trace.cc \
12 src/base/division-by-constant.cc \
13 src/base/file-utils.cc \
14 src/base/functional.cc \
15 src/base/ieee754.cc \
16 src/base/logging.cc \
17 src/base/once.cc \
18 src/base/platform/condition-variable.cc \
[all...]
/external/gptfdisk/
H A DAndroid.mk4 sgdisk.cc \
5 gptcl.cc \
6 crc32.cc \
7 support.cc \
8 guid.cc \
9 gptpart.cc \
10 mbrpart.cc \
11 basicmbr.cc \
12 mbr.cc \
13 gpt.cc \
[all...]
/external/vboot_reference/tests/
H A Dvb2_misc_tests.c20 static struct vb2_context cc; variable in typeref:struct:vb2_context
35 memset(&cc, 0, sizeof(cc));
36 cc.workbuf = workbuf;
37 cc.workbuf_size = sizeof(workbuf);
39 vb2_init_context(&cc);
40 sd = vb2_get_sd(&cc);
42 vb2_nv_init(&cc);
44 vb2_secdata_create(&cc);
45 vb2_secdata_init(&cc);
[all...]
/external/webp/src/utils/
H A Dcolor_cache_utils.c23 int VP8LColorCacheInit(VP8LColorCache* const cc, int hash_bits) { argument
25 assert(cc != NULL);
27 cc->colors_ = (uint32_t*)WebPSafeCalloc((uint64_t)hash_size,
28 sizeof(*cc->colors_));
29 if (cc->colors_ == NULL) return 0;
30 cc->hash_shift_ = 32 - hash_bits;
31 cc->hash_bits_ = hash_bits;
35 void VP8LColorCacheClear(VP8LColorCache* const cc) { argument
36 if (cc != NULL) {
37 WebPSafeFree(cc
[all...]
/external/libvpx/libvpx/test/
H A Dtest.mk8 LIBVPX_TEST_SRCS-yes += test_libvpx.cc
9 LIBVPX_TEST_SRCS-yes += test_vectors.cc
22 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += altref_test.cc
23 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += aq_segment_test.cc
24 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += alt_ref_aq_segment_test.cc
25 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += datarate_test.cc
26 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += encode_api_test.cc
27 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += error_resilience_test.cc
29 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += realtime_test.cc
30 LIBVPX_TEST_SRCS-$(CONFIG_ENCODERS) += resize_test.cc
[all...]
/external/syslinux/utils/
H A Dbin2hex.pl34 $cc = ord($ch);
35 $s = sprintf("%x", $cc);
/external/libvpx/libvpx/third_party/libwebm/
H A DAndroid.mk10 LOCAL_SRC_FILES:= common/file_util.cc \
11 common/hdr_util.cc \
12 mkvparser/mkvparser.cc \
13 mkvparser/mkvreader.cc \
14 mkvmuxer/mkvmuxer.cc \
15 mkvmuxer/mkvmuxerutil.cc \
16 mkvmuxer/mkvwriter.cc

Completed in 752 milliseconds

1234567891011>>