Searched refs:c4 (Results 1 - 25 of 239) sorted by relevance

12345678910

/external/clang/test/Sema/
H A Dpointer-conversion.c9 volatile char * c4; variable
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
H A Dattr-cleanup.c36 void c4(_Bool a);
38 __attribute((cleanup(c4))) void* g;
/external/skia/tests/
H A DSkColor4fTest.cpp40 SkColor4f c4 = SkColor4f::FromColor(r.fC); local
41 REPORTER_ASSERT(reporter, c4 == r.fC4);
50 SkColor4f c4 {
53 SkPM4f pm4 = c4.premul();
54 REPORTER_ASSERT(reporter, pm4.a() == c4.fA);
55 REPORTER_ASSERT(reporter, pm4.r() == c4.fA * c4.fR);
56 REPORTER_ASSERT(reporter, pm4.g() == c4.fA * c4.fG);
57 REPORTER_ASSERT(reporter, pm4.b() == c4
[all...]
/external/skqp/tests/
H A DSkColor4fTest.cpp40 SkColor4f c4 = SkColor4f::FromColor(r.fC); local
41 REPORTER_ASSERT(reporter, c4 == r.fC4);
50 SkColor4f c4 {
53 SkPM4f pm4 = c4.premul();
54 REPORTER_ASSERT(reporter, pm4.a() == c4.fA);
55 REPORTER_ASSERT(reporter, pm4.r() == c4.fA * c4.fR);
56 REPORTER_ASSERT(reporter, pm4.g() == c4.fA * c4.fG);
57 REPORTER_ASSERT(reporter, pm4.b() == c4
[all...]
/external/clang/test/Parser/
H A Dc1x-alignas.c8 char c4 _Alignas(32); // expected-error {{expected ';' after top level declarator}} expected-warning {{declaration does not declare anything}}
/external/llvm/test/MC/Sparc/
H A Dsparc-coproc.s3 ! CHECK: ld [%i1], %c4 ! encoding: [0xc9,0x86,0x40,0x00]
4 ! CHECK: ld [%i1+-15], %c4 ! encoding: [0xc9,0x86,0x7f,0xf1]
5 ! CHECK: ld [%i1+%o3], %c4 ! encoding: [0xc9,0x86,0x40,0x0b]
6 ! CHECK: ld [%i7], %c4 ! encoding: [0xc9,0x87,0xc0,0x00]
8 ld [%i1], %c4
9 ld [%i1 - 15], %c4
10 ld [%i1 +%o3], %c4
11 ld [%i7], %c4
15 ! CHECK: ldd [%i1], %c4 ! encoding: [0xc9,0x9e,0x40,0x00]
16 ! CHECK: ldd [%i7], %c4 ! encodin
[all...]
/external/libffi/testsuite/libffi.call/
H A Dreturn_complex1.inc5 static _Complex T_C_TYPE return_c(_Complex T_C_TYPE c1, float fl2, unsigned int in3, _Complex T_C_TYPE c4)
7 return c1 + fl2 + in3 + c4;
14 _Complex T_C_TYPE c1, c4, rc, rc2;
24 values[3] = &c4;
32 c4 = 512.7 + 1024.1 * I;
35 rc2 = return_c(c1, fl2, in3, c4);
H A Dreturn_complex2.inc5 static _Complex T_C_TYPE return_c(_Complex T_C_TYPE c1, _Complex T_C_TYPE c2, unsigned int in3, _Complex T_C_TYPE c4)
7 return c1 + c2 + in3 + c4;
14 _Complex T_C_TYPE c1, c2, c4, rc, rc2;
23 values[3] = &c4;
31 c4 = 512.7 + 1024.1 * I;
34 rc2 = return_c(c1, c2, in3, c4);
38 CHECK(rc == c1 + c2 + in3 + c4);
/external/clang/test/CodeGen/
H A Dconstant-comparison.c8 int *c4 = &a - (6 * 5 > 30); variable
/external/libxcam/
H A Dcode_style.sh3 git status -s | grep -E "\.cpp$|\.h$" | cut -c4- | xargs astyle --indent=spaces=4 --convert-tabs --pad-oper --suffix=none
/external/pdfium/core/fxcrt/
H A Dfx_string.h13 #define FXBSTR_ID(c1, c2, c3, c4) \
15 ((uint32_t)c4))
/external/fio/lib/
H A Dbswap.h9 uint32_t c1, c2, c3, c4; local
14 c4 = val & 0xff;
16 return c1 | c2 << 8 | c3 << 16 | c4 << 24;
21 uint64_t c1, c2, c3, c4, c5, c6, c7, c8; local
26 c4 = (val >> 32) & 0xff;
32 return c1 | c2 << 8 | c3 << 16 | c4 << 24 | c5 << 32 | c6 << 40 | c7 << 48 | c8 << 56;
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp13 Constant<float (*)(int, double), f> *c4; variable
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dtranspose_vsx.h41 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
66 c4 = vec_mergeh(b2, b6);
76 // c4: 10 30 50 70 11 31 51 71
81 v[0] = vec_mergeh(c0, c4);
82 v[1] = vec_mergel(c0, c4);
/external/python/cpython2/Lib/test/
H A Dtest_normalization.py57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
72 self.assertTrue(c4 == NFC(c4) == NFC(c5), line)
74 self.assertTrue(c5 == NFD(c4) == NFD(c5), line)
75 self.assertTrue(c4 == NFKC(c1) == NFKC(c2) == \
76 NFKC(c3) == NFKC(c4) == NFKC(c5),
79 NFKD(c3) == NFKD(c4) == NFKD(c5),
/external/python/cpython3/Lib/test/
H A Dtest_normalization.py58 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
73 self.assertTrue(c4 == NFC(c4) == NFC(c5), line)
75 self.assertTrue(c5 == NFD(c4) == NFD(c5), line)
76 self.assertTrue(c4 == NFKC(c1) == NFKC(c2) == \
77 NFKC(c3) == NFKC(c4) == NFKC(c5),
80 NFKD(c3) == NFKD(c4) == NFKD(c5),
/external/valgrind/massif/tests/
H A Dalloc-fns.c13 void c4(int n) { malloc(n); } function
14 void c3(int n) { c4(n); }
/external/llvm/test/MC/ARM/
H A Dgas-compl-copr-reg.s3 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
10 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks_mips.c116 int32_t c4, c5, c6, c7; local
130 "lh %[c4], 8(%[coeff_ptr]) \n\t"
137 [c4] "=&r" (c4), [c5] "=&r" (c5), [c6] "=&r" (c6), [c7] "=&r" (c7),
151 "mul %[t2], %[c4], %[state0_lo] \n\t"
153 "mul %[t1], %[c4], %[state0_hi] \n\t"
212 [c4] "r" (c4), [c5] "r" (c5), [c6] "r" (c6), [c7] "r" (c7),
/external/icu/icu4c/source/i18n/
H A Dcecal.cpp135 int32_t c4; // number of 4 year cycle (1461 days) local
138 c4 = ClockMath::floorDivide(julianDay - jdEpochOffset, 1461, r4);
140 year = 4 * c4 + (r4/365 - r4/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
/external/compiler-rt/test/tsan/
H A Dtsan-vs-gvn.cc12 char c1, c2, c3, c4; member in struct:__anon3885
/external/skia/gm/
H A Dcolor4f.cpp109 for (const auto& c4 : colors) {
111 SkShader::MakeColorShader(c4, nullptr),
112 SkShader::MakeColorShader(c4, srgb),
113 SkShader::MakeColorShader(c4, spin),
/external/skqp/gm/
H A Dcolor4f.cpp110 for (const auto& c4 : colors) {
112 SkShader::MakeColorShader(c4, nullptr),
113 SkShader::MakeColorShader(c4, srgb),
114 SkShader::MakeColorShader(c4, spin),
/external/clang/test/CodeGenCXX/
H A Dlto-visibility-inference.cpp68 void f(C1 *c1, C2 *c2, C3 *c3, C4 *c4, C5 *c5, C6 *c6, std::C7 *c7, argument
81 c4->f();
/external/libcxx/test/std/containers/sequences/array/
H A Dcompare.pass.cpp51 C c4 = {1, 2, 1}; local
54 test_compare(c1, c4);

Completed in 539 milliseconds

12345678910