Searched refs:b4 (Results 1 - 25 of 121) sorted by relevance

12345

/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 Dstring-init.c18 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}} local
/external/bison/build-aux/
H A DMakefile.am20 update-b4-copyright
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/
H A Dp6.cpp14 bool b4 = !E; variable
18 bool b6 = !&b4;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-omit-checks.js39 var b4 = create();
53 set(b4);
55 assertEquals(undefined, b4.z);
/external/clang/test/CodeGen/
H A Dasm-variable.c12 register unsigned long long b4 asm("r8");
19 b4 = a4;
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5));
37 register double b4 asm("xmm4");
48 b4 = a4;
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6),
H A Darm-pnaclcall.c27 int b4 : 4; member in struct:__anon15864
H A Dle32-arguments.c55 int b4 : 4; member in struct:__anon15907
/external/valgrind/main/none/tests/s390x/
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/valgrind/main/massif/tests/
H A Dalloc-fns.c8 void b4(int n) { malloc(n); } function
9 void b3(int n) { b4(n); }
/external/chromium_org/v8/test/mjsunit/
H A Dcomparison-ops-and-undefined.js30 function test_helper_for_ics(func, b1, b2, b3, b4) {
34 assertEquals(b4, func(undefined, undefined));
37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) {
43 assertEquals(b4, func(undefined, undefined));
H A Dgenerated-transition-stub.js102 b4 = [0, ,0];
104 b4[i] = 0;
106 assertTrue(%HasFastSmiElements(b4));
107 transition2(b4, 0, 2.5);
108 assertEquals(2.5, b4[0]);
H A Ddebug-evaluate-locals-optimized-double.js57 { locals: {a4: 9.09, b4: 10.10},
220 var b4 = input[i].b;
222 b4 = b4 + b4 / 100;
223 g1(i - 1, a4, b4);
224 return a4 + b4;
/external/v8/test/mjsunit/
H A Dcomparison-ops-and-undefined.js30 function test_helper_for_ics(func, b1, b2, b3, b4) {
34 assertEquals(b4, func(undefined, undefined));
37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) {
43 assertEquals(b4, func(undefined, undefined));
H A Ddebug-evaluate-locals-optimized-double.js52 { locals: {a4: 9.09, b4: 10.10}, args: { names: ["i", "x4", "y4"], values: [4, 11.11, 12.12] } }
218 var b4 = input[i].b;
220 b4 = b4 + b4 / 100;
221 g1(i - 1, a4, b4);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64Encoder.java135 byte b1, b2, b3, b4;
169 b4 = decodingTable[data[i++]];
171 if ((b1 | b2 | b3 | b4) < 0)
178 out.write((b3 << 6) | b4);
210 byte b1, b2, b3, b4;
244 b4 = decodingTable[data.charAt(i++)];
246 if ((b1 | b2 | b3 | b4) < 0)
253 out.write((b3 << 6) | b4);
268 byte b1, b2, b3, b4;
305 b4
[all...]
/external/lzma/CPP/Common/
H A DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
52 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
/external/libffi/testsuite/libffi.call/
H A Dnested_struct10.c28 static B B_fn(struct A b2, struct B b3, struct C b4) argument
32 result.x.a = b2.a + b3.x.a + b3.z + b4.d;
33 result.x.b = b2.b + b3.x.b + b3.y + b4.e;
34 result.y = b2.b + b3.x.b + b4.e;
37 (int)b3.x.a, b3.x.b, b3.y, b3.z, (int)b4.d, b4.e,
H A Dnested_struct6.c27 static B B_fn(struct A b2, struct B b3, struct C b4) argument
31 result.x.a = b2.a + b3.x.a + b4.d;
32 result.x.b = b2.b + b3.x.b + b3.y + b4.e;
33 result.y = b2.b + b3.x.b + b4.e;
36 (int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
H A Dnested_struct8.c27 static B B_fn(struct A b2, struct B b3, struct C b4) argument
31 result.x.a = b2.a + b3.x.a + b4.d;
32 result.x.b = b2.b + b3.x.b + b3.y + b4.e;
33 result.y = b2.b + b3.x.b + b4.e;
36 (int)b3.x.a, b3.x.b, b3.y, (int)b4.d, b4.e,
H A Dnested_struct9.c27 static B B_fn(struct A b2, struct B b3, struct C b4) argument
31 result.x.a = b2.a + b3.x.a + b4.d;
32 result.x.b = b2.b + b3.x.b + b3.y + b4.e;
33 result.y = b2.b + b3.x.b + b4.e;
36 b3.x.a, (int)b3.x.b, b3.y, (int)b4.d, b4.e,
/external/guava/guava/src/com/google/common/io/
H A DLittleEndianDataInputStream.java119 byte b4 = readAndCheckByte();
121 return Ints.fromBytes( b4, b3, b2, b1);
137 byte b4 = readAndCheckByte();
143 return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
/external/clang/test/CXX/special/class.inhctor/
H A Dp1.cpp33 B b4{1,2,3,4};
/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

Completed in 636 milliseconds

12345