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

1 2

  /external/clang/test/Sema/
pointer-conversion.c 10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}} variable
string-init.c 25 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/clang/test/CodeGen/
constant-comparison.c 9 int *c5 = &a + (6 * 5 >= 30); variable
tentative-decls.c 34 // RUN: grep '@c5 = internal global \[1 x .*\] zeroinitializer' %t
35 static int c5[]; variable
36 static int func() { return c5[0]; }
arm-abi-vector.c 89 __char5 c5 = va_arg(ap, __char5); local
90 sum = sum + c5.x + c5.y;
216 __short5 c5 = va_arg(ap, __short5); local
217 sum = sum + c5.x + c5.y;
arm64-abi-vector.c 64 __char5 c5 = va_arg(ap, __char5); local
65 sum = sum + c5.x + c5.y;
149 __short5 c5 = va_arg(ap, __short5); local
150 sum = sum + c5.x + c5.y;
193 __int5 c5 = va_arg(ap, __int5); local
194 sum = sum + c5.x + c5.y;
236 __char5 c5 = va_arg(ap, __char5) local
    [all...]
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 14 Constant<float (*)(int, double), &f> *c5; variable
  /external/fio/lib/
bswap.h 21 uint64_t c1, c2, c3, c4, c5, c6, c7, c8; local
27 c5 = (val >> 24) & 0xff;
32 return c1 | c2 << 8 | c3 << 16 | c4 << 24 | c5 << 32 | c6 << 40 | c7 << 48 | c8 << 56;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HbpcdUtils.java 110 Cursor c5 = resolver.query(MccSidRange.CONTENT_URI, projection5, local
114 if (c5 != null) {
115 if (c5.getCount() > 0) {
116 if (DBG) Log.d(LOG_TAG, "Query Range returned the cursor " + c5 );
117 c5.moveToFirst();
118 tmpMcc = c5.getInt(0);
120 c5.close();
123 c5.close();
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontTest.cpp 81 static UChar c5[] = { 0x1DFF }; local
82 EXPECT_EQ(ComplexPath, Character::characterRangeCodePath(c5, 1));
118 static UChar c5[] = { 0xDC00, 0xDBFF }; local
119 EXPECT_EQ(SimplePath, Character::characterRangeCodePath(c5, 2));
163 static UChar c5[] = { 0x1E00, 0x2FF }; local
164 EXPECT_EQ(SimpleWithGlyphOverflowPath, Character::characterRangeCodePath(c5, 2));
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
codec_unittest.cc 78 Codec c5; local
80 EXPECT_TRUE(c5 == c6);
89 AudioCodec c5(96, "A", 44100, 20000, 1, 3);
95 EXPECT_TRUE(c0 != c5);
168 VideoCodec c5(96, "V", 320, 200, 10, 3);
174 EXPECT_TRUE(c0 != c5);
226 VideoEncoderConfig c5(VideoCodec(
240 EXPECT_TRUE(c1 != c5);
  /external/chromium_org/base/
callback_unittest.cc 82 Callback<void(int,int,int,int,int)> c5; local
90 EXPECT_TRUE(c5.is_null());
callback_list_unittest.cc 133 CallbackList<void(int, int, int, int, int)> c5; local
135 subscription5 = c5.Add(Bind(&Summer::AddFiveParam, Unretained(&s)));
137 c5.Notify(1, 2, 3, 4, 5);
bind_unittest.cc 268 Callback<int(int,int,int,int,int)> c5 = Bind(&Sum, 32); local
269 EXPECT_EQ(87, c5.Run(13, 12, 11, 10, 9));
280 Callback<int(int,int,int,int,int)> c5 = Bind(c6, 32); local
281 EXPECT_EQ(87, c5.Run(13, 12, 11, 10, 9));
283 Callback<int(int,int,int,int)> c4 = Bind(c5, 16);
  /external/clang/test/SemaCXX/
string-init.cpp 20 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
  /external/chromium_org/third_party/icu/source/test/intltest/
itercoll.cpp 159 Collator *c5 = Collator::createInstance(Locale("ja", "JP", ""), status); local
161 iter = ((RuleBasedCollator*)c5)->createCollationElementIterator(source);
167 delete c5;
  /external/icu/icu4c/source/test/intltest/
itercoll.cpp 159 Collator *c5 = Collator::createInstance(Locale("ja", "JP", ""), status); local
161 iter = ((RuleBasedCollator*)c5)->createCollationElementIterator(source);
167 delete c5;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 49 float c5 = 1.0f; 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/clang/test/CodeGenCXX/
mangle-ms-return-qualifiers.cpp 68 const A* c5() { return 0; } function
69 // CHECK: "\01?c5@@YAPBVA@@XZ"
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 521 int c5 = (y0 > w0) ? 2 : 0; local
523 int c = c1 + c2 + c3 + c4 + c5 + c6;
  /external/mesa3d/src/mesa/program/
prog_noise.c 521 int c5 = (y0 > w0) ? 2 : 0; local
523 int c = c1 + c2 + c3 + c4 + c5 + c6;
  /external/fio/
init.c 1150 char *c5 = NULL, *c6 = NULL; local
1158 c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
1171 c1, c2, c3, c4, c5, c6);
1180 free(c5);
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 444 Colors c5; member in struct:ColorMap
466 io.mapOptional("c5", c.c5, cYellow); // supplies default
483 "c5: yellow\n"
492 EXPECT_EQ(cYellow,map.c5); // tests overridden
    [all...]
  /external/valgrind/main/VEX/priv/
guest_arm_toIR.c 2712 UInt c5 = 0x0000FFFF; local
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 

Completed in 1378 milliseconds

1 2