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

1 23 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]
  /external/valgrind/main/none/tests/amd64/
asorep.c 11 uintptr_t b1 = (uintptr_t) buf1, b2 = (uintptr_t) buf2; local
13 if (b1 > 0xffffffffULL || b2 > 0xffffffffULL)
17 b2 += 0xfff00000000ULL;
21 : "D" (b2), "S" (b1), "c" (0x100000004ULL)
32 : "D" (b2), "c" (0x100000003ULL)
42 : "S" (b2), "a" (2ULL));
51 : "D" (b2), "S" (b1), "c" (0x100000020ULL));
61 : "D" (b2), "c" (0x100000020ULL));
70 : "D" (b2), "c" (0x100000020ULL));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 81 int b1, b2, b3; local
91 b2 = (d1 << 4) & 0x3f;
94 out.write(encodingTable[b2]);
103 b2 = ((d1 << 4) | (d2 >>> 4)) & 0x3f;
107 out.write(encodingTable[b2]);
135 byte b1, b2, b3, b4;
161 b2 = decodingTable[data[i++]];
171 if ((b1 | b2 | b3 | b4) < 0)
176 out.write((b1 << 2) | (b2 >> 4));
177 out.write((b2 << 4) | (b3 >> 2))
    [all...]
  /external/llvm/test/MC/AArch64/
neon-scalar-saturating-rounding-shift.s 6 sqrshl b0, b1, b2
11 // CHECK: sqrshl b0, b1, b2 // encoding: [0x20,0x5c,0x22,0x5e]
19 uqrshl b0, b1, b2
24 // CHECK: uqrshl b0, b1, b2 // encoding: [0x20,0x5c,0x22,0x7e]
neon-scalar-saturating-shift.s 6 sqshl b0, b1, b2
11 // CHECK: sqshl b0, b1, b2 // encoding: [0x20,0x4c,0x22,0x5e]
19 uqshl b0, b1, b2
24 // CHECK: uqshl b0, b1, b2 // encoding: [0x20,0x4c,0x22,0x7e]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xfuncs.h 44 # define bcmp(b1,b2,len) memcmp(b1, b2, len)
64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xfuncs.h 44 # define bcmp(b1,b2,len) memcmp(b1, b2, len)
64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adoguids.h 9 #define STRING_GUID(l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8
10 #define GUID_BUILDER(n,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(n,0x##l,0x##w1,0x##w2,0x##b1,0x##b2,0x##b3,0x##b4,0x##b5,0x##b6,0x##b7,0x##b8)
  /external/chromium_org/v8/test/mjsunit/regress/
regress-365172-1.js 7 var b1 = {d: 1}; var b2 = {d: 2};
11 b2.d = 4.2;
12 f2.b = b2;
regress-365172-2.js 7 var b1 = {d: 1}; var b2 = {d: 2};
11 b2.d = 4.2;
12 f2.b = b2;
  /external/clang/test/CodeGen/
asm-variable.c 10 register unsigned long long b2 asm("rdx");
17 b2 = a2;
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5));
35 register double b2 asm("xmm2");
46 b2 = a2;
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6),
  /external/clang/test/SemaCXX/
goto.cpp 5 void f(bool b1, bool b2) {
9 if (b2) {
12 } while (b2);
24 void f(bool b1, bool b2) {
28 if (b2) {
31 } while (b2);
warn-logical-not-compare.cpp 7 bool test1(int i1, int i2, bool b1, bool b2) {
91 ret = !b1 == b2;
92 ret = !b1 != b2;
93 ret = !b1 < b2;
94 ret = !b1 > b2;
95 ret = !b1 <= b2;
96 ret = !b1 >= b2;
warn-memsize-comparison.cpp 18 char b1[80], b2[80]; local
25 if (memmove(b1, b2, sizeof(b1) == 0)) {} // \
29 if (memmove(b1, b2, sizeof(b1)) == 0) {}
31 if (memcpy(b1, b2, sizeof(b1) < 0)) {} // \
35 if (memcpy(b1, b2, sizeof(b1)) < 0) {}
37 if (memcmp(b1, b2, sizeof(b1) <= 0)) {} // \
41 if (memcmp(b1, b2, sizeof(b1)) <= 0) {}
43 if (strncmp(b1, b2, sizeof(b1) > 0)) {} // \
47 if (strncmp(b1, b2, sizeof(b1)) > 0) {}
49 if (strncasecmp(b1, b2, sizeof(b1) >= 0)) {} //
    [all...]
constexpr-value-init.cpp 18 constexpr B b2 = B(); // ok variable
19 static_assert(b2.a.a == 1, "");
20 static_assert(b2.a.b == 2, "");
  /external/valgrind/main/none/tests/s390x/
clc.c 5 char b2[23] ="mlkjihgfedcba9876543210"; variable
39 testrun(b1 + offset1, b2 + offset2, l);
42 testrun(b2 + offset1, b2 + offset2, l);
43 testrun(b2 + offset1, b3 + offset2, l);
44 testrun(b2 + offset1, b4 + offset2, l);
opcodes.h 29 #define RXY_RRRD(op1,r1,x2,b2,dl2,dh2,op2) \
31 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
68 #define RSY_RURD(op1,r1,r3,b2,dl2,dh2,op2) \
70 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
76 #define RSY_RRRD(op1,r1,r3,b2,dl2,dh2,op2) \
78 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
79 #define RSY_AARD(op1,r1,r3,b2,dl2,dh2,op2) \
81 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
84 #define RXY_FRRD(op1,r1,x2,b2,dl2,dh2,op2) \
86 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
write_batch_test.cc 91 WriteBatch b1, b2; local
93 WriteBatchInternal::SetSequence(&b2, 300);
94 WriteBatchInternal::Append(&b1, &b2);
97 b2.Put("a", "va");
98 WriteBatchInternal::Append(&b1, &b2);
101 b2.Clear();
102 b2.Put("b", "vb");
103 WriteBatchInternal::Append(&b1, &b2);
107 b2.Delete("foo");
108 WriteBatchInternal::Append(&b1, &b2);
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
Base64.java 75 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0;
99 b2 = base64Alphabet[base64Data[dataIndex + 1]];
106 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
108 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
112 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
117 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
119 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
chebyshev.c 35 int32_t b2; local
40 b2 = (int32_t)0x1000000; /* b2 = 1.0 (Q23) */
52 /* Calculate 2*x*b1-b2+f[i] */
56 tmp1W32 -= b2;
59 /* Update b2 for next round */
60 b2 = tmp2W32;
67 /* tmp1W32 = x*b1 - b2 + f[i]/2 */
71 tmp1W32 -= b2;
  /external/lzma/CPP/Common/
Buffer.h 57 bool operator==(const CBuffer<T>& b1, const CBuffer<T>& b2)
59 if (b1.GetCapacity() != b2.GetCapacity())
62 if (b1[i] != b2[i])
68 bool operator!=(const CBuffer<T>& b1, const CBuffer<T>& b2)
70 return !(b1 == b2);
  /external/stressapptest/src/
adler32memcpy.cc 38 // streams, and hence the two checksums a1, a2, b1 and b2.
39 // Initialize a1 and a2 with 1, b1 and b2 with 0
45 // add a2 to b2
47 // add a2 to b2
78 void AdlerChecksum::Set(uint64 a1, uint64 a2, uint64 b1, uint64 b2) {
82 b2_ = b2;
100 uint64 b2 = 0; local
114 b2 = b2 + a2;
116 b2 = b2 + a2
138 uint64 b2 = 0; local
179 uint64 b2 = 0; local
    [all...]
  /external/ceres-solver/internal/ceres/
dense_sparse_matrix_test.cc 101 Vector b2 = Vector::Zero(num_rows); local
104 dsm->RightMultiply(a.data(), b2.data());
106 EXPECT_EQ((b1 - b2).norm(), 0);
115 Vector b2 = Vector::Zero(num_cols); local
118 dsm->LeftMultiply(a.data(), b2.data());
120 EXPECT_EQ((b1 - b2).norm(), 0);
130 Vector b2 = Vector::Zero(num_cols); local
133 dsm->LeftMultiply(a.data(), b2.data());
135 EXPECT_EQ((b1 - b2).norm(), 0);
140 Vector b2 = Vector::Zero(num_cols) local
    [all...]

Completed in 1405 milliseconds

1 23 4 5 6 7 8 91011>>