HomeSort by relevance Sort by last modified time
    Searched refs:b2 (Results 76 - 100 of 866) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/test/BlocksRuntime/
reference.C 71 void (^b2)(void) = Block_copy(b);
72 b2();
73 Block_release(b2);
  /external/valgrind/main/none/tests/s390x/
clcle.c 5 char b2[23] ="mlkjihgfedcba9876543210"; variable
50 testrun(b1, l1, b2, l3, pad);
53 testrun(b2, l1, b2, l3, pad);
54 testrun(b2, l1, b3, l3, pad);
55 testrun(b2, l1, b4, l3, pad);
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 265 byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0;
277 b2 = binaryData[dataIndex + 1];
280 //log.debug("b1= " + b1 +", b2= " + b2 + ", b3= " + b3);
282 l = (byte) (b2 & 0x0f);
288 ((b2 & SIGN) == 0) ? (byte) (b2 >> 4) : (byte) ((b2) >> 4 ^ 0xf0);
340 b2 = binaryData[dataIndex + 1];
341 l = (byte) (b2 & 0x0f)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 87 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/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp 11 [[noreturn]] [[noreturn]] void b2() { throw 0; } // ok function
18 [[noreturn]] int e() { b2(); } // ok
  /external/llvm/test/MC/AArch64/
neon-scalar-saturating-add-sub.s 6 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/
clo_redzone_128.stderr.exp 1 b1 0x........ b2 0x........
  /external/valgrind/main/none/tests/
bug129866.c 28 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/
p6.cpp 7 bool b2 = !1.2; //expected-warning{{implicit conversion from 'double' to 'bool' changes value from 1.2 to true}} variable
  /external/clang/test/CodeGenCXX/
member-init-anon-union.cpp 44 B b2(0);
  /external/clang/test/SemaCXX/
cxx1y-contextual-conversion-tweaks.cpp 74 struct B2 {
79 void foo(A0 a0, A1 a1, A2 a2, A3 a3, A4 a4, B2 b2) {
85 switch (b2) {} // @85 -- fails for different reasons
97 //expected-error@85 {{statement requires expression of integer type ('extended_examples::B2' invalid)}}
100 //expected-error@85 {{cannot initialize object parameter of type 'extended_examples::B2' with an expression of type 'extended_examples::B2'}}
120 struct B2 { // leads to one viable match in both cases
137 void foo(A1 a1, A2 a2, B1 b1, B2 b2, C c, D d)
    [all...]
  /external/libcxxabi/test/
inherited_exception.cpp 35 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/
ARM-E_filter_gnu.s 46 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 >> 1
    [all...]
eas_wt_IPC_frame.h 57 EAS_I32 b2; member in struct:s_wt_frame_tag
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_filter_gnu.s 46 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 >> 1
    [all...]
eas_wt_IPC_frame.h 57 EAS_I32 b2; member in struct:s_wt_frame_tag
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
inherited_exception.cpp 17 int b2; member in struct:Base2
27 child.b2 = 11;
35 child.b2 = 11;
43 child->b2 = 11;
  /ndk/tests/device/test-stlport_shared-exception/jni/
overload12_1.cpp 20 B<1> b2 (a);
  /ndk/tests/device/test-stlport_static-exception/jni/
overload12_1.cpp 20 B<1> b2 (a);
  /cts/libs/deviceutil/src/android/cts/util/
WidgetTestUtils.java 39 * @param Bitmap b2 the second bitmap which needs to compare.
41 public static void assertEquals(Bitmap b1, Bitmap b2) {
42 if (b1 == b2) {
46 if (b1 == null || b2 == null) {
50 // b1 and b2 are all not null.
51 if (b1.getWidth() != b2.getWidth() || b1.getHeight() != b2.getHeight()
52 || b1.getConfig() != b2.getConfig()) {
63 b2.getPixels(pixels2, 0, w, 0, 0, w, h);
  /external/eigen/test/eigen2/
eigen2_alignedbox.cpp 32 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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
propkeydef.h 35 #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
37 { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
39 #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
41 { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
44 #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 316 int b1, b2; local
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 - 87; // 87 = 'a' - 1
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 321 int b1, b2; local
334 b2 = chars[position + 1];
335 if (b2 >= '0' && b2 <= '9') {
336 b2 = b2 - '0';
337 } else if (b2 >= 'a' && b2 <= 'f') {
338 b2 = b2 - 87; // 87 = 'a' - 1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Biquad.cpp 97 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 = A * (aPlusOne - aMinusOne * k - k2)
    [all...]

Completed in 632 milliseconds

1 2 34 5 6 7 8 91011>>