Searched refs:c5 (Results 1 - 25 of 68) sorted by relevance

123

/external/clang/test/Sema/
H A Dpointer-conversion.c10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}} variable
H A Dattr-cleanup.c41 void c5(void*) __attribute__((deprecated)); // expected-note{{'c5' has been explicitly marked deprecated here}}
43 int i __attribute__((cleanup(c5))); // expected-warning {{'c5' is deprecated}}
H A Dstring-init.c25 char16_t c5[] = L"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
H A Dwarn-unreachable.c53 c5:
60 goto c5;
/external/clang/test/Parser/
H A Dc1x-alignas.c10 char _Alignas(_Alignof(int)) c5;
/external/clang/test/CodeGen/
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 Dconstant-comparison.c9 int *c5 = &a + (6 * 5 >= 30); variable
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...]
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;
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp14 Constant<float (*)(int, double), &f> *c5; variable
/external/chromium_org/v8/test/mjsunit/
H A Dgenerated-transition-stub.js153 c5 = [0, 2.5, 0];
155 c5[i] = 0;
157 assertTrue(%HasFastDoubleElements(c5));
158 assertTrue(!%HasFastHoleyElements(c5));
159 transition3(c5, 0, new Array(5));
160 assertTrue(!%HasFastHoleyElements(c5));
161 assertTrue(%HasFastObjectElements(c5));
162 assertEquals(5, c5[0].length);
/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/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks_mips.c116 int32_t c4, c5, c6, c7; local
131 "lh %[c5], 10(%[coeff_ptr]) \n\t"
137 [c4] "=&r" (c4), [c5] "=&r" (c5), [c6] "=&r" (c6), [c7] "=&r" (c7),
152 "mul %[t0], %[c5], %[state0_lo] \n\t"
154 "mul %[a1], %[c5], %[state0_hi] \n\t"
212 [c4] "r" (c4), [c5] "r" (c5), [c6] "r" (c6), [c7] "r" (c7),
/external/chromium_org/content/browser/
H A Dstorage_partition_impl_map_unittest.cc24 StoragePartitionImplMap::StoragePartitionConfig c5("b", std::string(), true);
38 EXPECT_TRUE(less(c4, c5));
48 EXPECT_FALSE(less(c5, c4));
/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/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/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/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/libvorbis/vq/
H A DMakefile.am21 44c3.vqs 44c4.vqs 44c5.vqs 44c6.vqs 44c7.vqs 44c8.vqs 44c9.vqs \
/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/llvm/test/MC/ARM/
H A Ddeprecated-v8.s11 mcr p15, #0, r5, c7, c5, #4
/external/chromium_org/ui/gfx/geometry/
H A Dquad_unittest.cc230 PointF c5(1e35f, 1e35f);
232 EXPECT_FALSE(QuadF(a5, b5, c5, d5).IsCounterClockwise());
233 EXPECT_FALSE(QuadF(b5, c5, d5, a5).IsCounterClockwise());
234 EXPECT_TRUE(QuadF(a5, d5, c5, b5).IsCounterClockwise());
235 EXPECT_TRUE(QuadF(c5, b5, a5, d5).IsCounterClockwise());

Completed in 527 milliseconds

123