Home
last modified time | relevance | path

Searched refs:b2 (Results 1 – 25 of 403) sorted by relevance

12345678910>>...17

/external/chromium/base/win/
Dscoped_bstr_unittest.cc26 ScopedBstr b2; in DumbBstrTests() local
27 b.Swap(b2); in DumbBstrTests()
28 EXPECT_TRUE(b2 == NULL); in DumbBstrTests()
40 ScopedBstr b2; in BasicBstrTests() local
41 b1.Swap(b2); in BasicBstrTests()
42 EXPECT_EQ(test1_len, b2.Length()); in BasicBstrTests()
44 EXPECT_EQ(0, lstrcmp(b2, kTestString1)); in BasicBstrTests()
45 BSTR tmp = b2.Release(); in BasicBstrTests()
48 EXPECT_TRUE(b2 == NULL); in BasicBstrTests()
51 GiveMeABstr(b2.Receive()); in BasicBstrTests()
[all …]
/external/valgrind/main/none/tests/s390x/
Dopcodes.h29 #define RXY_RRRD(op1,r1,x2,b2,dl2,dh2,op2) \ argument
31 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
67 #define RSY_RURD(op1,r1,r3,b2,dl2,dh2,op2) \ argument
69 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
71 #define RSY_RRRD(op1,r1,r3,b2,dl2,dh2,op2) \ argument
73 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
74 #define RSY_AARD(op1,r1,r3,b2,dl2,dh2,op2) \ argument
76 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
79 #define RXY_FRRD(op1,r1,x2,b2,dl2,dh2,op2) \ argument
81 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
[all …]
/external/dropbear/libtomcrypt/notes/etc/
Dsaferp_optimizer.c8 b2[0] = b[8]; b2[1] = b[11]; b2[2] = b[12]; b2[3] = b[15]; \
9 b2[4] = b[2]; b2[5] = b[1]; b2[6] = b[6]; b2[7] = b[5]; \
10 b2[8] = b[10]; b2[9] = b[9]; b2[10] = b[14]; b2[11] = b[13]; \
11 b2[12] = b[0]; b2[13] = b[7]; b2[14] = b[4]; b2[15] = b[3]; memcpy(b, b2, sizeof(b));
14 #define iSHUF(b, b2) \ argument
15 b2[0] = b[12]; b2[1] = b[5]; b2[2] = b[4]; b2[3] = b[15]; \
16 b2[4] = b[14]; b2[5] = b[7]; b2[6] = b[6]; b2[7] = b[13]; \
17 b2[8] = b[0]; b2[9] = b[9]; b2[10] = b[8]; b2[11] = b[1]; \
18 b2[12] = b[2]; b2[13] = b[11]; b2[14] = b[10]; b2[15] = b[3]; memcpy(b, b2, sizeof(b));
40 int b[16], b2[16], x, y, z; in main() local
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DBase64Encoder.java81 int b1, b2, b3; in encode() local
91 b2 = (d1 << 4) & 0x3f; in encode()
94 out.write(encodingTable[b2]); in encode()
103 b2 = ((d1 << 4) | (d2 >>> 4)) & 0x3f; in encode()
107 out.write(encodingTable[b2]); in encode()
135 byte b1, b2, b3, b4; in decode()
161 b2 = decodingTable[data[i++]]; in decode()
171 if ((b1 | b2 | b3 | b4) < 0) in decode()
176 out.write((b1 << 2) | (b2 >> 4)); in decode()
177 out.write((b2 << 4) | (b3 >> 2)); in decode()
[all …]
DHexEncoder.java87 byte b1, b2; in decode()
117 b2 = decodingTable[data[i++]]; in decode()
119 if ((b1 | b2) < 0) in decode()
124 out.write((b1 << 4) | b2); in decode()
143 byte b1, b2; in decode()
173 b2 = decodingTable[data.charAt(i++)]; in decode()
175 if ((b1 | b2) < 0) in decode()
180 out.write((b1 << 4) | b2); in decode()
/external/dropbear/libtomcrypt/src/ciphers/safer/
Dsaferp.c107 #define SHUF(b, b2) \ argument
108 b2[0] = b[8]; b2[1] = b[11]; b2[2] = b[12]; b2[3] = b[15]; \
109 b2[4] = b[2]; b2[5] = b[1]; b2[6] = b[6]; b2[7] = b[5]; \
110 b2[8] = b[10]; b2[9] = b[9]; b2[10] = b[14]; b2[11] = b[13]; \
111 b2[12] = b[0]; b2[13] = b[7]; b2[14] = b[4]; b2[15] = b[3];
114 #define iSHUF(b, b2) \ argument
115 b2[0] = b[12]; b2[1] = b[5]; b2[2] = b[4]; b2[3] = b[15]; \
116 b2[4] = b[14]; b2[5] = b[7]; b2[6] = b[6]; b2[7] = b[13]; \
117 b2[8] = b[0]; b2[9] = b[9]; b2[10] = b[8]; b2[11] = b[1]; \
118 b2[12] = b[2]; b2[13] = b[11]; b2[14] = b[10]; b2[15] = b[3];
[all …]
/external/stlport/test/unit/
Dbitset_test.cpp39 bitset<13U> b2(0x1111); in bitset1() local
42 CPPUNIT_ASSERT(b2.size() == 13); in bitset1()
43 CPPUNIT_ASSERT(b2 == 0x1111); in bitset1()
46 b1 = b1 ^ (b2 << 2); in bitset1()
50 CPPUNIT_ASSERT(b2.count() == 4); in bitset1()
53 size_t __pos = b2._Find_first(); in bitset1()
55 __pos = b2._Find_next(__pos); in bitset1()
57 __pos = b2._Find_next(__pos); in bitset1()
59 __pos = b2._Find_next(__pos); in bitset1()
61 __pos = b2._Find_next(__pos); in bitset1()
[all …]
/external/stressapptest/src/
Dadler32memcpy.cc78 void AdlerChecksum::Set(uint64 a1, uint64 a2, uint64 b1, uint64 b2) { in Set() argument
82 b2_ = b2; in Set()
100 uint64 b2 = 0; in CalculateAdlerChecksum() local
114 b2 = b2 + a2; in CalculateAdlerChecksum()
116 b2 = b2 + a2; in CalculateAdlerChecksum()
119 checksum->Set(a1, a2, b1, b2); in CalculateAdlerChecksum()
138 uint64 b2 = 0; in AdlerMemcpyC() local
153 b2 = b2 + a2; in AdlerMemcpyC()
155 b2 = b2 + a2; in AdlerMemcpyC()
159 checksum->Set(a1, a2, b1, b2); in AdlerMemcpyC()
[all …]
/external/sonivox/arm-hybrid-22k/lib_src/
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 >> 1
92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
109 SMLABB tmp1, tmp1, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
/external/sonivox/arm-wt-22k/lib_src/
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 >> 1
92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2)
109 SMLABB tmp1, tmp1, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
/external/valgrind/main/none/tests/amd64/
Dasorep.c11 uintptr_t b1 = (uintptr_t) buf1, b2 = (uintptr_t) buf2; in main() local
13 if (b1 > 0xffffffffULL || b2 > 0xffffffffULL) in main()
17 b2 += 0xfff00000000ULL; in main()
21 : "D" (b2), "S" (b1), "c" (0x100000004ULL) in main()
32 : "D" (b2), "c" (0x100000003ULL) in main()
42 : "S" (b2), "a" (2ULL)); in main()
51 : "D" (b2), "S" (b1), "c" (0x100000020ULL)); in main()
61 : "D" (b2), "c" (0x100000020ULL)); in main()
70 : "D" (b2), "c" (0x100000020ULL)); in main()
/external/libffi/testsuite/libffi.call/
Dcls_24byte.c20 struct cls_struct_24byte b2, in cls_struct_24byte_fn() argument
25 result.a = b0.a + b1.a + b2.a + b3.a; in cls_struct_24byte_fn()
26 result.b = b0.b + b1.b + b2.b + b3.b; in cls_struct_24byte_fn()
27 result.c = b0.c + b1.c + b2.c + b3.c; in cls_struct_24byte_fn()
28 result.d = b0.d + b1.d + b2.d + b3.d; in cls_struct_24byte_fn()
33 b2.a, b2.b, b2.c, b2.d, in cls_struct_24byte_fn()
34 b3.a, b3.b, b3.c, b2.d, in cls_struct_24byte_fn()
44 struct cls_struct_24byte b0, b1, b2, b3; in cls_struct_24byte_gn() local
48 b2 = *(struct cls_struct_24byte*)(args[2]); in cls_struct_24byte_gn()
51 *(cls_struct_24byte*)resp = cls_struct_24byte_fn(b0, b1, b2, b3); in cls_struct_24byte_gn()
Dcls_16byte.c18 struct cls_struct_16byte b2) in cls_struct_16byte_fn() argument
22 result.a = b1.a + b2.a; in cls_struct_16byte_fn()
23 result.b = b1.b + b2.b; in cls_struct_16byte_fn()
24 result.c = b1.c + b2.c; in cls_struct_16byte_fn()
26 printf("%d %g %d %d %g %d: %d %g %d\n", b1.a, b1.b, b1.c, b2.a, b2.b, b2.c, in cls_struct_16byte_fn()
35 struct cls_struct_16byte b1, b2; in cls_struct_16byte_gn() local
38 b2 = *(struct cls_struct_16byte*)(args[1]); in cls_struct_16byte_gn()
40 *(cls_struct_16byte*)resp = cls_struct_16byte_fn(b1, b2); in cls_struct_16byte_gn()
Dcls_12byte.c17 struct cls_struct_12byte b2) in cls_struct_12byte_fn() argument
21 result.a = b1.a + b2.a; in cls_struct_12byte_fn()
22 result.b = b1.b + b2.b; in cls_struct_12byte_fn()
23 result.c = b1.c + b2.c; in cls_struct_12byte_fn()
25 printf("%d %d %d %d %d %d: %d %d %d\n", b1.a, b1.b, b1.c, b2.a, b2.b, b2.c, in cls_struct_12byte_fn()
34 struct cls_struct_12byte b1, b2; in cls_struct_12byte_gn() local
37 b2 = *(struct cls_struct_12byte*)(args[1]); in cls_struct_12byte_gn()
39 *(cls_struct_12byte*)resp = cls_struct_12byte_fn(b1, b2); in cls_struct_12byte_gn()
Dnested_struct.c30 struct cls_struct_combined b2) in cls_struct_combined_fn() argument
34 result.d.a = b0.a + b1.dd + b2.d.a; in cls_struct_combined_fn()
35 result.d.b = b0.b + b1.ff + b2.d.b; in cls_struct_combined_fn()
36 result.d.c = b0.c + b1.ii + b2.d.c; in cls_struct_combined_fn()
37 result.e.ii = b0.c + b1.ii + b2.e.ii; in cls_struct_combined_fn()
38 result.e.dd = b0.a + b1.dd + b2.e.dd; in cls_struct_combined_fn()
39 result.e.ff = b0.b + b1.ff + b2.e.ff; in cls_struct_combined_fn()
44 b2.d.a, b2.d.b, b2.d.c, in cls_struct_combined_fn()
45 b2.e.ii, b2.e.dd, b2.e.ff, in cls_struct_combined_fn()
58 struct cls_struct_combined b2; in cls_struct_combined_gn() local
[all …]
Dnested_struct1.c30 struct cls_struct_combined b2, in cls_struct_combined_fn() argument
35 result.d.a = b0.a + b1.dd + b2.d.a; in cls_struct_combined_fn()
36 result.d.b = b0.b + b1.ff + b2.d.b; in cls_struct_combined_fn()
37 result.d.c = b0.c + b1.ii + b2.d.c; in cls_struct_combined_fn()
38 result.e.ii = b0.c + b1.ii + b2.e.ii; in cls_struct_combined_fn()
39 result.e.dd = b0.a + b1.dd + b2.e.dd; in cls_struct_combined_fn()
40 result.e.ff = b0.b + b1.ff + b2.e.ff; in cls_struct_combined_fn()
45 b2.d.a, b2.d.b, b2.d.c, in cls_struct_combined_fn()
46 b2.e.ii, b2.e.dd, b2.e.ff, in cls_struct_combined_fn()
60 struct cls_struct_combined b2; in cls_struct_combined_gn() local
[all …]
Dcls_64byte.c25 struct cls_struct_64byte b2, in cls_struct_64byte_fn() argument
30 result.a = b0.a + b1.a + b2.a + b3.a; in cls_struct_64byte_fn()
31 result.b = b0.b + b1.b + b2.b + b3.b; in cls_struct_64byte_fn()
32 result.c = b0.c + b1.c + b2.c + b3.c; in cls_struct_64byte_fn()
33 result.d = b0.d + b1.d + b2.d + b3.d; in cls_struct_64byte_fn()
34 result.e = b0.e + b1.e + b2.e + b3.e; in cls_struct_64byte_fn()
35 result.f = b0.f + b1.f + b2.f + b3.f; in cls_struct_64byte_fn()
36 result.g = b0.g + b1.g + b2.g + b3.g; in cls_struct_64byte_fn()
37 result.h = b0.h + b1.h + b2.h + b3.h; in cls_struct_64byte_fn()
49 struct cls_struct_64byte b0, b1, b2, b3; in cls_struct_64byte_gn() local
[all …]
Dcls_9byte2.c19 struct cls_struct_9byte b2) in cls_struct_9byte_fn() argument
23 result.a = b1.a + b2.a; in cls_struct_9byte_fn()
24 result.b = b1.b + b2.b; in cls_struct_9byte_fn()
26 printf("%g %d %g %d: %g %d\n", b1.a, b1.b, b2.a, b2.b, in cls_struct_9byte_fn()
35 struct cls_struct_9byte b1, b2; in cls_struct_9byte_gn() local
38 b2 = *(struct cls_struct_9byte*)(args[1]); in cls_struct_9byte_gn()
40 *(cls_struct_9byte*)resp = cls_struct_9byte_fn(b1, b2); in cls_struct_9byte_gn()
Dcls_9byte1.c19 struct cls_struct_9byte b2) in cls_struct_9byte_fn() argument
23 result.a = b1.a + b2.a; in cls_struct_9byte_fn()
24 result.b = b1.b + b2.b; in cls_struct_9byte_fn()
26 printf("%d %g %d %g: %d %g\n", b1.a, b1.b, b2.a, b2.b, in cls_struct_9byte_fn()
35 struct cls_struct_9byte b1, b2; in cls_struct_9byte_gn() local
38 b2 = *(struct cls_struct_9byte*)(args[1]); in cls_struct_9byte_gn()
40 *(cls_struct_9byte*)resp = cls_struct_9byte_fn(b1, b2); in cls_struct_9byte_gn()
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java260 byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; in encodeBase64()
272 b2 = binaryData[dataIndex + 1]; in encodeBase64()
277 l = (byte) (b2 & 0x0f); in encodeBase64()
283 ((b2 & SIGN) == 0) ? (byte) (b2 >> 4) : (byte) ((b2) >> 4 ^ 0xf0); in encodeBase64()
335 b2 = binaryData[dataIndex + 1]; in encodeBase64()
336 l = (byte) (b2 & 0x0f); in encodeBase64()
342 ((b2 & SIGN) == 0) ? (byte) (b2 >> 4) : (byte) ((b2) >> 4 ^ 0xf0); in encodeBase64()
383 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0; in decodeBase64()
407 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
414 decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4); in decodeBase64()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DTwofishEngine.java392 int b0, b1, b2, b3; in setKey() local
396 b0 = b1 = b2 = b3 = i; in setKey()
402 gSBox[i*2+0x200] = gMDS2[(P[P_21][b2] & 0xff) ^ b2(k0)]; in setKey()
408 b2 = (P[P_24][b2] & 0xff) ^ b2(k3); in setKey()
414 b2 = (P[P_23][b2] & 0xff) ^ b2(k2); in setKey()
423 [(P[P_22][b2] & 0xff) ^ b2(k1)] & 0xff) ^ b2(k0)]; in setKey()
526 int b2 = b2(x); in F32() local
539 gMDS2[(P[P_21][b2] & 0xff) ^ b2(k0)] ^ in F32()
545 b2 = (P[P_24][b2] & 0xff) ^ b2(k3); in F32()
550 b2 = (P[P_23][b2] & 0xff) ^ b2(k2); in F32()
[all …]
/external/icu4c/test/intltest/
Didnaref.cpp136 char* b2 = b2Stack; in convertToPuny() local
161 error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny()
166 b2 = (char*) uprv_malloc( b2Len * sizeof(char)); in convertToPuny()
167 if(b2==NULL){ in convertToPuny()
174 punycode_status error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny()
182 convertASCIIToUChars(b2,dest,b2Len); in convertToPuny()
191 if(b2Stack != b2){ in convertToPuny()
192 uprv_free(b2); in convertToPuny()
209 uint32_t* b2 = b2Stack; in convertFromPuny() local
212 punycode_status error = punycode_decode(srcLength,b1,(uint32_t*)&b2Len,b2,caseFlags); in convertFromPuny()
[all …]
/external/llvm/lib/MC/
DMCWin64EH.cpp67 uint8_t b1, b2; in EmitUnwindCode() local
69 b2 = (inst.getOperation() & 0x0F); in EmitUnwindCode()
73 b2 |= (inst.getRegister() & 0x0F) << 4; in EmitUnwindCode()
74 streamer.EmitIntValue(b2, 1); in EmitUnwindCode()
79 b2 |= 0x10; in EmitUnwindCode()
80 streamer.EmitIntValue(b2, 1); in EmitUnwindCode()
85 streamer.EmitIntValue(b2, 1); in EmitUnwindCode()
91 b2 |= (((inst.getSize()-8) >> 3) & 0x0F) << 4; in EmitUnwindCode()
93 streamer.EmitIntValue(b2, 1); in EmitUnwindCode()
98 streamer.EmitIntValue(b2, 1); in EmitUnwindCode()
[all …]
/external/clang/test/CodeGen/
Dasm-variable.c10 register unsigned long long b2 asm("rdx"); in foo()
17 b2 = a2; in foo()
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5)); in foo()
35 register double b2 asm("xmm2"); in foo2()
46 b2 = a2; in foo2()
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6), in foo2()
/external/clang/test/SemaCXX/
Dgoto.cpp5 void f(bool b1, bool b2) { in f() argument
9 if (b2) { in f()
12 } while (b2); in f()
24 void f(bool b1, bool b2) { in f() argument
28 if (b2) { in f()
31 } while (b2); in f()

12345678910>>...17