Searched defs:c5 (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/Sema/
H A Dpointer-conversion.c10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}} variable
H A Dstring-init.c25 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
/external/clang/test/CodeGen/
H A Dconstant-comparison.c9 int *c5 = &a + (6 * 5 >= 30); variable
H A Dtentative-decls.c34 // RUN: grep '@c5 = internal global \[1 x .*\] zeroinitializer' %t
35 static int c5[]; variable
36 static int func() { return c5[0]; }
H A Darm-abi-vector.c89 __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;
H A Darm64-abi-vector.c64 __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 local
284 test(__char3 *c3, __char5 *c5, __char9 *c9, __char19 *c19, __short3 *s3, __short5 *s5, __int3 *i3, __int5 *i5, __double3 *d3) argument
308 args_vec_5c(int fixed, __char5 c5) argument
370 args_vec_5s(int fixed, __short5 c5) argument
402 args_vec_5i(int fixed, __int5 c5) argument
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp14 Constant<float (*)(int, double), &f> *c5; variable
/external/fio/lib/
H A Dbswap.h21 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;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontTest.cpp81 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/
H A Dcodec_unittest.cc78 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/
H A Dcallback_unittest.cc82 Callback<void(int,int,int,int,int)> c5; local
90 EXPECT_TRUE(c5.is_null());
H A Dcallback_list_unittest.cc133 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);
H A Dbind_unittest.cc268 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/
H A Dstring-init.cpp20 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/
H A Ditercoll.cpp159 Collator *c5 = Collator::createInstance(Locale("ja", "JP", ""), status); local
161 iter = ((RuleBasedCollator*)c5)->createCollationElementIterator(source);
167 delete c5;
/external/icu/icu4c/source/test/intltest/
H A Ditercoll.cpp159 Collator *c5 = Collator::createInstance(Locale("ja", "JP", ""), status); local
161 iter = ((RuleBasedCollator*)c5)->createCollationElementIterator(source);
167 delete c5;
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-return-qualifiers.cpp68 const A* c5() { return 0; } function
69 // CHECK: "\01?c5@@YAPBVA@@XZ"
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_noise.c521 int c5 = (y0 > w0) ? 2 : 0; local
523 int c = c1 + c2 + c3 + c4 + c5 + c6;
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c521 int c5 = (y0 > w0) ? 2 : 0; local
523 int c = c1 + c2 + c3 + c4 + c5 + c6;
/external/fio/
H A Dinit.c1150 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);
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp444 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
/external/valgrind/main/VEX/priv/
H A Dguest_arm_toIR.c2712 UInt c5 = 0x0000FFFF; local
2752 binop(Iop_And32, mkexpr(x4), mkU32(c5)),
2755 binop(Iop_And32, mkexpr(x4), mkU32(~c5)),
17206 /* mcr 15, 0, r0, c7, c5, 4 (v6) equiv to ISB (v7).
17212 DIP("mcr 15, 0, r0, c7, c5, 4 (insn synch barrier)\n");
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 792 milliseconds

12