Searched refs:b2 (Results 51 - 75 of 535) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DHexEncoder.java87 byte b1, b2;
117 b2 = decodingTable[data[i++]];
119 if ((b1 | b2) < 0)
124 out.write((b1 << 4) | b2);
143 byte b1, b2;
173 b2 = decodingTable[data.charAt(i++)];
175 if ((b1 | b2) < 0)
180 out.write((b1 << 4) | b2);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-omit-checks.js37 var b2 = create();
47 set(b2);
/external/chromium_org/v8/test/mjsunit/
H A Dswitch-opt.js43 function f(label, b1, b2, b3) {
48 case branch(b1) + branch(b2):
65 function assertResult(r, label, b1, b2, b3) {
66 f(label, b1, b2, b3);
140 function f(label, b1, b2, b3) {
145 case branch(b1) + branch(b2):
162 function assertResult(r, label, b1, b2, b3) {
163 f(label, b1, b2, b3);
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
H A Dp1.cpp11 [[noreturn]] [[noreturn]] void b2() { throw 0; } // ok function
18 [[noreturn]] int e() { b2(); } // ok
/external/clang/test/SemaCXX/
H A Ddeprecated.cpp59 Ctor b1, b2; member in namespace:DeprecatedCopy
60 void f() { b1 = b2; } // expected-note {{implicit copy assignment operator for 'Ctor' first required here}}
H A Dcxx1y-contextual-conversion-tweaks.cpp79 void foo(A0 a0, A1 a1, A2 a2, A3 a3, A4 a4, B2 b2) { argument
85 switch (b2) {} // @85 -- fails for different reasons
137 void foo(A1 a1, A2 a2, B1 b1, B2 b2, C c, D d) { argument
141 switch (b2) {}
/external/llvm/test/MC/AArch64/
H A Dneon-scalar-saturating-add-sub.s6 sqadd b0, b1, b2
11 // CHECK: sqadd b0, b1, b2 // encoding: [0x20,0x0c,0x22,0x5e]
19 uqadd b0, b1, b2
24 // CHECK: uqadd b0, b1, b2 // encoding: [0x20,0x0c,0x22,0x7e]
32 sqsub b0, b1, b2
37 // CHECK: sqsub b0, b1, b2 // encoding: [0x20,0x2c,0x22,0x5e]
45 uqsub b0, b1, b2
50 // CHECK: uqsub b0, b1, b2 // encoding: [0x20,0x2c,0x22,0x7e]
/external/valgrind/main/memcheck/tests/
H A Dclo_redzone_128.stderr.exp1 b1 0x........ b2 0x........
/external/valgrind/main/none/tests/
H A Dbug129866.c28 char *a1, *b1, *a2 __attribute__((unused)), *b2 __attribute__((unused)); local
33 b2 = touch_realloc(b1, 200000) ;
/external/clang/test/CXX/expr/expr.unary/expr.unary.op/
H A Dp6.cpp7 bool b2 = !1.2; //expected-warning{{implicit conversion from 'double' to 'bool' changes value from 1.2 to true}} variable
/external/clang/test/CodeGenCXX/
H A Dmember-init-anon-union.cpp44 B b2(0);
/external/libcxxabi/test/
H A Dinherited_exception.cpp35 int b2; member in struct:Base2
45 child.b2 = 11;
53 child.b2 = 11;
61 child->b2 = 11;
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s46 b2 .req r7 label
77 LDR b2, [pWTFrame, #m_b2]
80 RSB b2, b2, #0 @ b2 = -b2
81 MOV b2, b2, ASR #1 @ b2 = b2 >>
[all...]
H A Deas_wt_IPC_frame.h57 EAS_I32 b2; member in struct:s_wt_frame_tag
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s46 b2 .req r7 label
77 LDR b2, [pWTFrame, #m_b2]
80 RSB b2, b2, #0 @ b2 = -b2
81 MOV b2, b2, ASR #1 @ b2 = b2 >>
[all...]
H A Deas_wt_IPC_frame.h57 EAS_I32 b2; member in struct:s_wt_frame_tag
/external/eigen/test/eigen2/
H A Deigen2_alignedbox.cpp32 BoxType b2; local
39 (b2 = b0).extend(b1);
40 VERIFY(b2.contains(b0));
41 VERIFY(b2.contains(b1));
42 VERIFY_IS_APPROX(b2.clamp(b0), b0);
/external/lzma/CPP/Common/
H A DBuffer.h57 bool operator==(const CBuffer<T>& b1, const CBuffer<T>& b2) argument
59 if (b1.GetCapacity() != b2.GetCapacity())
62 if (b1[i] != b2[i])
68 bool operator!=(const CBuffer<T>& b1, const CBuffer<T>& b2) argument
70 return !(b1 == b2);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java316 int b1, b2;
329 b2 = chars[position + 1];
330 if (b2 >= '0' && b2 <= '9') {
331 b2 = b2 - '0';
332 } else if (b2 >= 'a' && b2 <= 'f') {
333 b2 = b2
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DBiquad.cpp97 double b2 = m_b2;
104 float y = b0*x + b1*x1 + b2*x2 - a1*y1 - a2*y2;
124 m_b2 = b2;
232 double b2 = 2 * alpha;
236 setNormalizedCoefficients(b0, b1, b2, 1, a1, a2);
268 double b2 = 2 * alpha;
272 setNormalizedCoefficients(b0, b1, b2, 1, a1, a2);
283 void Biquad::setNormalizedCoefficients(double b0, double b1, double b2, double a0, double a1, double a2)
289 m_b2 = b2 * a0Inverse;
329 double b2
[all...]
/external/guava/guava/src/com/google/common/io/
H A DLittleEndianDataInputStream.java101 byte b2 = readAndCheckByte();
103 return Ints.fromBytes((byte) 0, (byte) 0, b2, b1);
117 byte b2 = readAndCheckByte();
121 return Ints.fromBytes( b4, b3, b2, b1);
135 byte b2 = readAndCheckByte();
143 return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DParcelTest.java261 Bundle b2 = parcel.readBundle();
263 assertEquals(b1, b2);
264 assertEquals("world", b2.getString("hello"));
269 b2 = parcel.readBundle(null /* ClassLoader */);
270 assertEquals(b1, b2);
271 assertEquals("world", b2.getString("hello"));
285 Bundle b2 = parcel.readBundle();
287 assertEquals(b1, b2);
288 assertEquals(innerBundle, b2.getBundle("bundle"));
289 assertEquals(23, b2
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dbyte_array_test.cc65 ByteVector b1, b2; local
72 ReadByteArrayWithBuffer(ba2, &buffer, &b2);
74 EXPECT_EQ(b1.size(), b2.size());
75 EXPECT_TRUE(std::equal(b1.begin(), b1.end(), b2.begin()));
80 b2.clear();
84 ReadByteArrayWithSlidingWindow(ba2, window_size, &b2);
86 EXPECT_EQ(b1.size(), b2.size());
87 EXPECT_TRUE(std::equal(b1.begin(), b1.end(), b2.begin()));
H A Dtest_utils.h38 // @param b2 byte array 2
45 ByteArray* b2,
57 ByteArray* b2,
/external/clang/test/CodeGen/
H A Dpacked-nest-unpacked.c52 unsigned b2 : 12; member in struct:XBitfield
64 return gbitfield.y.b2;

Completed in 596 milliseconds

1234567891011>>