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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
pointer-conversion.c 9 volatile char * c4; variable
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
attr-cleanup.c 36 void c4(_Bool a);
38 __attribute((cleanup(c4))) void* g;
string-init.c 24 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/clang/test/Parser/
c1x-alignas.c 8 char c4 _Alignas(32); // expected-error {{expected ';' after top level declarator}} expected-warning {{declaration does not declare anything}}
  /external/chromium_org/content/browser/
storage_partition_impl_map_unittest.cc 23 StoragePartitionImplMap::StoragePartitionConfig c4("a", std::string(), true);
36 EXPECT_TRUE(less(c1, c4));
37 EXPECT_TRUE(less(c3, c4));
38 EXPECT_TRUE(less(c4, c5));
39 EXPECT_TRUE(less(c4, c8));
40 EXPECT_TRUE(less(c6, c4));
46 EXPECT_FALSE(less(c4, c1));
47 EXPECT_FALSE(less(c4, c3));
48 EXPECT_FALSE(less(c5, c4));
49 EXPECT_FALSE(less(c8, c4));
    [all...]
  /external/clang/test/CodeGen/
constant-comparison.c 8 int *c4 = &a - (6 * 5 > 30); variable
  /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;
  /art/runtime/
dex_instruction_visitor_test.cc 65 const uint16_t c4[] = { 0, 0, 0, 0 }; local
66 v4.Visit(c4, sizeof(c4));
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 13 Constant<float (*)(int, double), f> *c4; variable
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 48 float c4 = 0.38f; local
52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1);
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3);
58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3);
60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5)
    [all...]
  /external/valgrind/main/massif/tests/
alloc-fns.c 13 void c4(int n) { malloc(n); } function
14 void c3(int n) { c4(n); }
  /external/llvm/test/MC/ARM/
gas-compl-copr-reg.s 3 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
10 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_normalization.py 57 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),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_normalization.py 57 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/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/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/compiler-rt/test/tsan/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon23472
  /frameworks/av/include/media/stagefright/
Utils.h 30 #define FOURCC(c1, c2, c3, c4) \
31 (c1 << 24 | c2 << 16 | c3 << 8 | c4)
  /frameworks/minikin/include/minikin/
MinikinFont.h 98 static uint32_t MakeTag(char c1, char c2, char c3, char c4) {
100 ((uint32_t)c3 << 8) | (uint32_t)c4;
  /frameworks/native/include/binder/
IBinder.h 26 #define B_PACK_CHARS(c1, c2, c3, c4) \
27 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/chromium_org/v8/test/mjsunit/regress/
regress-618.js 74 function C4() {
77 var c4 = new C4();
78 assertEquals(23, c4.x);
79 assertEquals("undefined", typeof c4.y);
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
84 var c4 = new C4();
85 assertEquals("undefined", typeof c4.x);
86 assertEquals(23, c4.y)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
generated-transition-stub.js 139 c4 = [0, 2.5, 0];
141 c4[i] = 0;
143 assertTrue(%HasFastDoubleElements(c4));
144 assertTrue(!%HasFastHoleyElements(c4));
145 transition3(c4, 0, new Array(5));
146 assertTrue(!%HasFastHoleyElements(c4));
147 assertTrue(%HasFastObjectElements(c4));
148 assertEquals(5, c4[0].length);
  /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/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))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xolehlp.h 33 #define EXTERN_GUID(g,l1,s1,s2,c1,c2,c3,c4,c5,c6,c7,c8) DEFINE_GUID(g,l1,s1,s2,c1,c2,c3,c4,c5,c6,c7,c8)

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>