HomeSort by relevance Sort by last modified time
    Searched defs:c4 (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/clang/test/Sema/
pointer-conversion.c 9 volatile char * c4; variable
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
string-init.c 24 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/clang/test/CodeGen/
constant-comparison.c 8 int *c4 = &a - (6 * 5 > 30); variable
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 13 Constant<float (*)(int, double), f> *c4; variable
attributes.cpp 20 check_alignment<4>::t c4; member in namespace:attribute_aligned
  /art/runtime/
dex_instruction_visitor_test.cc 65 const uint16_t c4[] = { 0, 0, 0, 0 }; local
66 v4.Visit(c4, sizeof(c4));
  /external/chromium_org/third_party/icu/source/i18n/
cecal.cpp 133 int32_t c4; // number of 4 year cycle (1461 days) local
136 c4 = ClockMath::floorDivide(julianDay - jdEpochOffset, 1461, r4);
138 year = 4 * c4 + (r4/365 - r4/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/compiler-rt/test/tsan/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon24278
  /external/fio/lib/
bswap.h 9 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/icu/icu4c/source/i18n/
cecal.cpp 133 int32_t c4; // number of 4 year cycle (1461 days) local
136 c4 = ClockMath::floorDivide(julianDay - jdEpochOffset, 1461, r4);
138 year = 4 * c4 + (r4/365 - r4/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 34 CipherSuite c4 = new CipherSuite("CipherSuite4", false, 0, "", "", local
36 if (!c1.equals(c2) || c1.equals(c3) || c4.equals(c1) || c4.equals(c3)) {
97 CipherSuite c4 = new CipherSuite("CipherSuite4", false, local
102 assertFalse(c4.isAnonymous());
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontTest.cpp 79 static UChar c4[] = { 0x1DD0 }; local
80 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c4, 1));
116 static UChar c4[] = { 0xDBFF, 0xE000 }; local
117 EXPECT_EQ(SimplePath, Character::characterRangeCodePath(c4, 2));
160 static UChar c4[] = { 0x36F, 0x330 }; local
161 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c4, 2));
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 164 const uint32_t c4 = 0xa1e38b93; local
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
210 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
216 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
  /external/jemalloc/include/jemalloc/internal/
hash.h 153 const uint32_t c4 = 0xa1e38b93; local
176 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
181 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
200 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4;
206 k3 *= c3; k3 = hash_rotl_32(k3, 17); k3 *= c4; h3 ^= k3;
  /external/lldb/test/pexpect-2.4/examples/
chess3.py 87 c4 = white.term.get_abs(17,61) variable
89 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
96 c4 = white.term.get_abs(17,61) variable
98 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
  /external/chromium_org/base/
callback_unittest.cc 81 Callback<void(int,int,int,int)> c4; local
89 EXPECT_TRUE(c4.is_null());
callback_list_unittest.cc 126 CallbackList<void(int, int, int, int)> c4; local
128 subscription4 = c4.Add(Bind(&Summer::AddFourParam, Unretained(&s)));
130 c4.Notify(1, 2, 3, 4);
  /external/chromium_org/third_party/smhasher/src/
MurmurHash3.cpp 164 const uint32_t c4 = 0xa1e38b93; local
186 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
190 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
210 k4 *= c4; k4 = ROTL32(k4,18); k4 *= c1; h4 ^= k4;
216 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 50 constexpr Constexpr4 c4 = Constexpr4(); // ok variable
  /external/clang/test/CodeGenCXX/
global-init.cpp 177 const int c4 = C(C()).n; member in namespace:test7
  /external/clang/test/SemaCXX/
string-init.cpp 19 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 208 unsigned char c4 = buf2Len ? (--buf2Len, *buf2++) : 0; local
212 if (c3 || c4) {
225 } else if (!c1 && !c2 && c3 == 0xFE && c4 == 0xFF) {
  /external/chromium_org/third_party/icu/source/test/intltest/
itercoll.cpp 149 Collator *c4 = Collator::createInstance(Locale("th", "TH", ""), status); local
153 iter = ((RuleBasedCollator*)c4)->createCollationElementIterator(source);
156 delete c4;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_mips.c 116 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/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 50 class C4 {} constexpr c4 = C4(); variable in typeref:class:C4

Completed in 1449 milliseconds

1 2 3