Searched defs:b4 (Results 1 - 25 of 75) sorted by relevance

123

/external/clang/test/Sema/
H A Dfor.c7 void b4 (void) { for (typedef int f;;); } // expected-error {{declaration of non-local variable}} function
H A Dattr-alias-elf.c53 extern int a4 __attribute__((alias("b4"))); // expected-error {{alias must point to a defined variable or function}}
54 typedef int b4; typedef
H A Dstring-init.c18 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/
H A Dp6.cpp14 bool b4 = !E; variable
18 bool b6 = !&b4; // expected-warning{{address of 'b4' will always evaluate to 'true'}}
/external/valgrind/none/tests/s390x/
H A Dicm.c26 char *b4="\x00\xff\x00\x00"; local
87 test(b4,192);
H A Dclc.c7 char b4[23] ="00000000000000000000000"; variable
41 testrun(b1 + offset1, b4 + offset2, l);
44 testrun(b2 + offset1, b4 + offset2, l);
46 testrun(b3 + offset1, b4 + offset2, l);
47 testrun(b4 + offset1, b4 + offset2, l);
H A Dclcle.c7 char b4[23] ="00000000000000000000000"; variable
52 testrun(b1, l1, b4, l3, pad);
55 testrun(b2, l1, b4, l3, pad);
57 testrun(b3, l1, b4, l3, pad);
58 testrun(b4, l1, b4, l3, pad);
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3.cpp20 int b4 = f(E::e, 0); // expected-note {{in instantiation of}} member in namespace:bullet2
/external/skia/src/core/
H A DSkPM4fPriv.h22 uint32_t b4; local
23 SkNx_cast<uint8_t>(f4).store((uint8_t*)&b4);
24 return b4;
27 static inline Sk4f to_4f(uint32_t b4) { argument
28 return SkNx_cast<float>(Sk4b::Load((const uint8_t*)&b4));
/external/valgrind/massif/tests/
H A Dalloc-fns.c8 void b4(int n) { malloc(n); } function
9 void b3(int n) { b4(n); }
/external/lldb/test/lang/c/bitfields/
H A Dmain.c21 b4 __attribute__ ((align(16))), member in struct:Bits
39 bits.b4 = i; //// break $source:$line
/external/testng/src/test/java/test/thread/
H A DMultiThreadedDependentSampleTest.java72 public void b4() { method in class:MultiThreadedDependentSampleTest
74 log("b4");
/external/clang/test/CodeGen/
H A Dle32-arguments.c55 int b4 : 4; member in struct:__anon2186
H A Dwasm-arguments.c86 int b4 : 4; member in struct:__anon2278
/external/clang/test/SemaCXX/
H A Dstring-init.cpp13 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
H A Dconstant-expression.cpp38 b4 : ceval, member in struct:C
H A Dmember-pointer.cpp57 bool b4 = (pf != 0); (void)b4; local
/external/emma/core/java12/com/vladium/util/
H A DByteArrayOStream.java98 public final void write4 (final int b1, final int b2, final int b3, final int b4) argument
120 mbuf [pos + 3] = (byte) b4;
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp63 B4 b4; // expected-error {{deleted function}} variable
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
H A Dp1.cpp57 B<long long>::E b4 = B<long long>::E::e4; variable
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sse.h207 __m128i b4 = _mm_srli_epi64(b, 32); /* shift by one dword */ local
209 __m128i b4a4 = _mm_mul_epu32(b4, a4); /* multiply dwords 1, 3 */
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp328 uint8 b4 = GetByte(); local
329 return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-return-qualifiers.cpp30 const float *b4() { return 0; } function
31 // CHECK: "\01?b4@@YAPBMXZ"
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java329 * byte[] {b1, b2, b3, b4})}.
334 public static int fromBytes(byte b1, byte b2, byte b3, byte b4) { argument
335 return b1 << 24 | (b2 & 0xFF) << 16 | (b3 & 0xFF) << 8 | (b4 & 0xFF);
H A DLongs.java299 * byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
303 public static long fromBytes(byte b1, byte b2, byte b3, byte b4, argument
308 | (b4 & 0xFFL) << 32

Completed in 1658 milliseconds

123