Home
last modified time | relevance | path

Searched refs:b3 (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DBase64Encoder.java84 int b1, b2, b3; in encode() local
107 b3 = (d2 << 2) & 0x3f; in encode()
111 out.write(encodingTable[b3]); in encode()
138 byte b1, b2, b3, b4; in decode()
168 b3 = decodingTable[data[i++]]; in decode()
174 if ((b1 | b2 | b3 | b4) < 0) in decode()
180 out.write((b2 << 4) | (b3 >> 2)); in decode()
181 out.write((b3 << 6) | b4); in decode()
213 byte b1, b2, b3, b4; in decode()
243 b3 = decodingTable[data.charAt(i++)]; in decode()
[all …]
/external/sonivox/arm-wt-22k/vectors/
Dabba.imy9b3*4a4*4b3.*5#c3*5#c2*5a4*5a3*5#g4*5#g3*5#f4*5#f1*5#c1*4b2*5d1*5#c4*4b3*4a4*4b3.*5#c3*5#c2*4b2*4a1…
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DTwofishEngine.java393 int b0, b1, b2, b3; in setKey() local
397 b0 = b1 = b2 = b3 = i; in setKey()
404 gSBox[i*2+0x201] = gMDS3[(P[P_31][b3] & 0xff) ^ b3(k0)]; in setKey()
410 b3 = (P[P_34][b3] & 0xff) ^ b3(k3); in setKey()
416 b3 = (P[P_33][b3] & 0xff) ^ b3(k2); in setKey()
426 [(P[P_32][b3] & 0xff) ^ b3(k1)] & 0xff) ^ b3(k0)]; in setKey()
528 int b3 = b3(x); in F32() local
541 gMDS3[(P[P_31][b3] & 0xff) ^ b3(k0)]; in F32()
547 b3 = (P[P_34][b3] & 0xff) ^ b3(k3); in F32()
552 b3 = (P[P_33][b3] & 0xff) ^ b3(k2); in F32()
[all …]
/external/okhttp/okio/okio/src/test/java/okio/
DTestUtil.java79 ByteString b3 = new ByteString(b3Bytes); in assertEquivalent() local
80 assertFalse(b1.equals(b3)); in assertEquivalent()
81 assertFalse(b1.hashCode() == b3.hashCode()); in assertEquivalent()
83 ByteString b3 = ByteString.encodeUtf8("a"); in assertEquivalent() local
84 assertFalse(b1.equals(b3)); in assertEquivalent()
85 assertFalse(b1.hashCode() == b3.hashCode()); in assertEquivalent()
116 Buffer b3 = new Buffer().write(b3Bytes); in assertEquivalent() local
117 assertFalse(b1.equals(b3)); in assertEquivalent()
118 assertFalse(b1.hashCode() == b3.hashCode()); in assertEquivalent()
120 Buffer b3 = new Buffer().writeUtf8("a"); in assertEquivalent() local
[all …]
/external/v8/test/mjsunit/
Dswitch-opt.js43 function f(label, b1, b2, b3) { argument
55 branch(b3);
59 branch(b3);
65 function assertResult(r, label, b1, b2, b3) { argument
66 f(label, b1, b2, b3);
140 function f(label, b1, b2, b3) { argument
152 branch(b3);
156 branch(b3);
162 function assertResult(r, label, b1, b2, b3) { argument
163 f(label, b1, b2, b3);
Dgenerated-transition-stub.js92 var b3 = [0, 1, 2, , 4];
93 assertTrue(%HasFastSmiElements(b3));
94 assertTrue(%HasFastHoleyElements(b3));
95 transition2(b3, 0, 2.5);
96 assertTrue(%HasFastHoleyElements(b3));
97 assertEquals(4, b3[4]);
98 assertEquals(2.5, b3[0]);
Dcomparison-ops-and-undefined.js30 function test_helper_for_ics(func, b1, b2, b3, b4) { argument
33 assertEquals(b3, func(undefined, .5));
37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) { argument
42 assertEquals(b3, func(undefined, .5));
Ddebug-evaluate-locals-optimized-double.js54 { locals: {a3: 7.07, b3: 8.08}, property
213 var b3 = input[i].b;
215 b3 = b3 + b3 / 100;
216 new g2(i - 1, a3, b3);
217 return a3 + b3;
/external/clang/test/CodeGen/
Dasm-variable.c11 register unsigned long long b3 asm("rcx"); in foo()
18 b3 = a3; in foo()
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5)); in foo()
36 register double b3 asm("xmm3"); in foo2()
47 b3 = a3; in foo2()
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6), in foo2()
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java265 byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; in encodeBase64()
278 b3 = binaryData[dataIndex + 2]; in encodeBase64()
290 ((b3 & SIGN) == 0) ? (byte) (b3 >> 6) : (byte) ((b3) >> 6 ^ 0xfc); in encodeBase64()
300 encodedData[encodedIndex + 3] = lookUpBase64Alphabet[b3 & 0x3f]; in encodeBase64()
388 byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0; in decodeBase64()
416 b3 = base64Alphabet[marker0]; in decodeBase64()
421 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
422 decodedData[encodedIndex + 2] = (byte) (b3 << 6 | b4); in decodeBase64()
428 b3 = base64Alphabet[marker0]; in decodeBase64()
432 (byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf)); in decodeBase64()
/external/valgrind/none/tests/s390x/
Dclc.c6 char b3[23] ="mmmmmmmmmmmmmmmmmmmmmmm"; variable
40 testrun(b1 + offset1, b3 + offset2, l); in multiplex()
43 testrun(b2 + offset1, b3 + offset2, l); in multiplex()
45 testrun(b3 + offset1, b3 + offset2, l); in multiplex()
46 testrun(b3 + offset1, b4 + offset2, l); in multiplex()
Dclcle.c6 char b3[23] ="mmmmmmmmmmmmmmmmmmmmmmm"; variable
51 testrun(b1, l1, b3, l3, pad); in multiplex()
54 testrun(b2, l1, b3, l3, pad); in multiplex()
56 testrun(b3, l1, b3, l3, pad); in multiplex()
57 testrun(b3, l1, b4, l3, pad); in multiplex()
/external/v8/test/mjsunit/tools/
Dprofile_view.js58 var b3 = createNode('b', 3, a1);
61 createNode('c', 5, b3);
62 createNode('d', 4, b3);
63 createNode('d', 2, b3);
/external/icu/icu4c/source/test/cintltst/
Dnfsprep.c52 char *b3=b3Stack; in nfs4_prepare() local
104 u_strToUTF8(b3,b3Capacity, &b3Len, b2, b2Len, status); in nfs4_prepare()
107 b3 = (char*) malloc(b3Len); in nfs4_prepare()
108 if(b3== NULL){ in nfs4_prepare()
113 u_strToUTF8(b3,b3Capacity, &b3Len, b2, b2Len, status); in nfs4_prepare()
118 memmove(dest, b3, reqLength); in nfs4_prepare()
128 if(b3!=b3Stack){ in nfs4_prepare()
129 free(b3); in nfs4_prepare()
/external/v8/test/unittests/compiler/
Dcontrol-equivalence-unittest.cc185 Node* b3 = Branch(f2); in TEST_F() local
186 Node* t3 = IfTrue(b3); in TEST_F()
187 Node* f3 = IfFalse(b3); in TEST_F()
197 ASSERT_EQUIVALENCE(f2, b3); in TEST_F()
242 Node* b3 = Branch(m2); in TEST_F() local
243 Node* t3 = IfTrue(b3); in TEST_F()
244 Node* f3 = IfFalse(b3); in TEST_F()
251 ASSERT_EQUIVALENCE(m1, b2, m2, b3); in TEST_F()
/external/libvpx/libvpx/vp8/common/arm/armv6/
Dsimpleloopfilter_v6.asm18 TRANSPOSE_MATRIX $a0, $a1, $a2, $a3, $b0, $b1, $b2, $b3
19 ; input: $a0, $a1, $a2, $a3; output: $b0, $b1, $b2, $b3
24 ; b3 b2 b1 b0
28 uxtb16 $b3, $a3 ; xx 32 xx 30
31 orr $b3, $b2, $b3, lsl #8 ; 32 22 30 20
40 pkhtb $b2, $b3, $b1, asr #16 ; 32 22 12 02 -- p1
41 pkhbt $b0, $b1, $b3, lsl #16 ; 30 20 10 00 -- p3
43 pkhtb $b3, $a2, $a0, asr #16 ; 33 23 13 03 -- p0
/external/llvm/lib/Support/
DConvertUTF.c399 UTF8 b1, b2, b3; in findMaximalSubpartOfIllFormedUTF8Sequence() local
453 b3 = *source; in findMaximalSubpartOfIllFormedUTF8Sequence()
454 return (b3 >= 0x80 && b3 <= 0xBF) ? 3 : 2; in findMaximalSubpartOfIllFormedUTF8Sequence()
463 b3 = *source; in findMaximalSubpartOfIllFormedUTF8Sequence()
464 return (b3 >= 0x80 && b3 <= 0xBF) ? 3 : 2; in findMaximalSubpartOfIllFormedUTF8Sequence()
473 b3 = *source; in findMaximalSubpartOfIllFormedUTF8Sequence()
474 return (b3 >= 0x80 && b3 <= 0xBF) ? 3 : 2; in findMaximalSubpartOfIllFormedUTF8Sequence()
/external/guava/guava/src/com/google/common/io/
DLittleEndianDataInputStream.java118 byte b3 = readAndCheckByte(); in readInt()
121 return Ints.fromBytes( b4, b3, b2, b1); in readInt()
136 byte b3 = readAndCheckByte(); in readLong()
143 return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1); in readLong()
/external/lzma/CPP/Common/
DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ argument
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) \ argument
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_avg_intrin_sse2.c152 __m128i b3 = _mm_sub_epi16(a2, a3); in hadamard_col8_sse2() local
159 a1 = _mm_add_epi16(b1, b3); in hadamard_col8_sse2()
161 a3 = _mm_sub_epi16(b1, b3); in hadamard_col8_sse2()
170 b3 = _mm_add_epi16(a2, a6); in hadamard_col8_sse2()
178 a1 = _mm_unpacklo_epi16(b2, b3); in hadamard_col8_sse2()
180 a3 = _mm_unpackhi_epi16(b2, b3); in hadamard_col8_sse2()
189 b3 = _mm_unpackhi_epi32(a4, a5); in hadamard_col8_sse2()
197 in[2] = _mm_unpacklo_epi64(b2, b3); in hadamard_col8_sse2()
198 in[3] = _mm_unpackhi_epi64(b2, b3); in hadamard_col8_sse2()
265 __m128i b3 = _mm_sub_epi16(coeff2, coeff3); in vp9_hadamard_16x16_sse2() local
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_avg.c39 int16_t b3 = src_diff[2 * src_stride] - src_diff[3 * src_stride]; in hadamard_col8() local
46 int16_t c1 = b1 + b3; in hadamard_col8()
48 int16_t c3 = b1 - b3; in hadamard_col8()
107 int16_t b3 = (a2 - a3) >> 1; in vp9_hadamard_16x16_c() local
110 coeff[64] = b1 + b3; in vp9_hadamard_16x16_c()
112 coeff[192] = b1 - b3; in vp9_hadamard_16x16_c()
/external/guava/guava-tests/test/com/google/common/base/
DCharsetsTest.java68 byte[] b3 = "????".getBytes(Charsets.US_ASCII); in testWhyUsAsciiIsDangerous()
73 assertTrue(Arrays.equals(b2, b3)); in testWhyUsAsciiIsDangerous()
74 assertTrue(Arrays.equals(b3, b4)); in testWhyUsAsciiIsDangerous()
/external/sfntly/cpp/src/test/
Dfile_io_test.cc79 ByteVector b3; in TestFileInputStream() local
80 b3.resize(200); in TestFileInputStream()
81 is.Unread(&b3); in TestFileInputStream()
82 EXPECT_EQ(memcmp(&(b3[0]), &(b2[0]), 200), 0); in TestFileInputStream()
/external/ceres-solver/data/nist/
DRat42.dat32 3 Parameters (b1 to b3)
34 y = b1 / (1+exp[b2-b3*x]) + e
43 b3 = 0.1 0.07 6.7359200066E-02 3.4465663377E-03
DMGH10.dat32 3 Parameters (b1 to b3)
34 y = b1 * exp[b2/(x+b3)] + e
43 b3 = 25000 250 3.4522363462E+02 7.8486103508E-01

12345678910>>...14