/external/libpcap/ |
D | gencode.c | 474 merge(b0, b1) in merge() argument 475 struct block *b0, *b1; in merge() 484 *p = b1; 526 gen_and(b0, b1) in gen_and() argument 527 struct block *b0, *b1; in gen_and() 529 backpatch(b0, b1->head); 531 b1->sense = !b1->sense; 532 merge(b1, b0); 533 b1->sense = !b1->sense; 534 b1->head = b0->head; [all …]
|
/external/stlport/test/unit/ |
D | bitset_test.cpp | 38 bitset<13U> b1(0xFFFF); in bitset1() local 40 CPPUNIT_ASSERT(b1.size() == 13); in bitset1() 41 CPPUNIT_ASSERT(b1 == 0x1FFF); in bitset1() 46 b1 = b1 ^ (b2 << 2); in bitset1() 47 CPPUNIT_ASSERT(b1 == 0x1BBB); in bitset1() 49 CPPUNIT_ASSERT(b1.count() == 10); in bitset1() 87 bitset<13U> b1; in iostream() local 88 sstr >> b1; in iostream() 89 CPPUNIT_ASSERT( b1.test(0) ); in iostream() 90 CPPUNIT_ASSERT( b1.test(4) ); in iostream() [all …]
|
/external/icu4c/test/intltest/ |
D | idnaref.cpp | 134 uint32_t* b1 = b1Stack; in convertToPuny() local 141 u_strToUTF32((UChar32*)b1,b1Capacity,&b1Len,src,srcLength,&status); in convertToPuny() 145 b1 = (uint32_t*) uprv_malloc(b1Len * sizeof(uint32_t)); in convertToPuny() 146 if(b1==NULL){ in convertToPuny() 153 u_strToUTF32((UChar32*)b1,b1Len,&b1Len,src,srcLength,&status); in convertToPuny() 161 error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny() 174 punycode_status error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny() 188 if(b1Stack != b1){ in convertToPuny() 189 uprv_free(b1); in convertToPuny() 203 char* b1 = b1Stack; in convertFromPuny() local [all …]
|
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
D | idctllm_dspr2.c | 47 int a1, b1, c1, d1; in vp8_short_idct4x4llm_dspr2() local 63 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2() 83 op[4] = b1 + c1; in vp8_short_idct4x4llm_dspr2() 84 op[8] = b1 - c1; in vp8_short_idct4x4llm_dspr2() 87 b1 = ip[1] - ip[9]; in vp8_short_idct4x4llm_dspr2() 91 op[5] = b1 + c2; in vp8_short_idct4x4llm_dspr2() 92 op[9] = b1 - c2; in vp8_short_idct4x4llm_dspr2() 95 b1 = ip[2] - ip[10]; in vp8_short_idct4x4llm_dspr2() 115 op[6] = b1 + c1; in vp8_short_idct4x4llm_dspr2() 116 op[10] = b1 - c1; in vp8_short_idct4x4llm_dspr2() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
D | Base64Encoder.java | 81 int b1, b2, b3; in encode() local 90 b1 = (d1 >>> 2) & 0x3f; in encode() 93 out.write(encodingTable[b1]); in encode() 102 b1 = (d1 >>> 2) & 0x3f; in encode() 106 out.write(encodingTable[b1]); in encode() 135 byte b1, b2, b3, b4; in decode() 157 b1 = decodingTable[data[i++]]; in decode() 171 if ((b1 | b2 | b3 | b4) < 0) in decode() 176 out.write((b1 << 2) | (b2 >> 4)); in decode() 210 byte b1, b2, b3, b4; in decode() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | dct.c | 17 int a1, b1, c1, d1; in vp8_short_fdct4x4_c() local 24 b1 = ((ip[1] + ip[2])<<3); in vp8_short_fdct4x4_c() 28 op[0] = a1 + b1; in vp8_short_fdct4x4_c() 29 op[2] = a1 - b1; in vp8_short_fdct4x4_c() 43 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c() 47 op[0] = ( a1 + b1 + 7)>>4; in vp8_short_fdct4x4_c() 48 op[8] = ( a1 - b1 + 7)>>4; in vp8_short_fdct4x4_c() 67 int a1, b1, c1, d1; in vp8_short_walsh4x4_c() local 78 b1 = ((ip[0] - ip[2])<<2); in vp8_short_walsh4x4_c() 81 op[1] = b1 + c1; in vp8_short_walsh4x4_c() [all …]
|
/external/stressapptest/src/ |
D | adler32memcpy.cc | 78 void AdlerChecksum::Set(uint64 a1, uint64 a2, uint64 b1, uint64 b2) { in Set() argument 81 b1_ = b1; in Set() 99 uint64 b1 = 0; in CalculateAdlerChecksum() local 107 b1 = b1 + a1; in CalculateAdlerChecksum() 109 b1 = b1 + a1; in CalculateAdlerChecksum() 119 checksum->Set(a1, a2, b1, b2); in CalculateAdlerChecksum() 137 uint64 b1 = 0; in AdlerMemcpyC() local 145 b1 = b1 + a1; in AdlerMemcpyC() 147 b1 = b1 + a1; in AdlerMemcpyC() 159 checksum->Set(a1, a2, b1, b2); in AdlerMemcpyC() [all …]
|
/external/icu4c/common/ |
D | uidna.cpp | 205 UChar *b1 = b1Stack, *b2 = b2Stack; in _internal_toASCII() local 231 b1 = (UChar*) uprv_malloc(srcLength * U_SIZEOF_UCHAR); in _internal_toASCII() 232 if(b1==NULL){ in _internal_toASCII() 244 b1[b1Len++] = src[j]; in _internal_toASCII() 251 …b1Len = usprep_prepare(nameprep, src, srcLength, b1, b1Capacity, namePrepOptions, parseError, stat… in _internal_toASCII() 256 if(b1 != b1Stack){ in _internal_toASCII() 257 uprv_free(b1); in _internal_toASCII() 259 b1 = (UChar*) uprv_malloc(b1Len * U_SIZEOF_UCHAR); in _internal_toASCII() 260 if(b1==NULL){ in _internal_toASCII() 267 … b1Len = usprep_prepare(nameprep, src, srcLength, b1, b1Len, namePrepOptions, parseError, status); in _internal_toASCII() [all …]
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Base64.java | 260 byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; in encodeBase64() 271 b1 = binaryData[dataIndex]; in encodeBase64() 278 k = (byte) (b1 & 0x03); in encodeBase64() 281 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64() 322 b1 = binaryData[dataIndex]; in encodeBase64() 323 k = (byte) (b1 & 0x03); in encodeBase64() 327 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64() 334 b1 = binaryData[dataIndex]; in encodeBase64() 337 k = (byte) (b1 & 0x03); in encodeBase64() 340 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64() [all …]
|
/external/guava/guava/src/com/google/common/io/ |
D | LittleEndianDataInputStream.java | 81 int b1 = in.read(); in readUnsignedByte() local 82 if (0 > b1) { in readUnsignedByte() 86 return b1; in readUnsignedByte() 100 byte b1 = readAndCheckByte(); in readUnsignedShort() 103 return Ints.fromBytes((byte) 0, (byte) 0, b2, b1); in readUnsignedShort() 116 byte b1 = readAndCheckByte(); in readInt() 121 return Ints.fromBytes( b4, b3, b2, b1); in readInt() 134 byte b1 = readAndCheckByte(); in readLong() 143 return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1); in readLong() 223 int b1 = in.read(); in readAndCheckByte() local [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | idctllm.c | 34 int a1, b1, c1, d1; in vp8_short_idct4x4llm_c() local 44 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_c() 57 op[shortpitch*1] = b1 + c1; in vp8_short_idct4x4llm_c() 58 op[shortpitch*2] = b1 - c1; in vp8_short_idct4x4llm_c() 70 b1 = ip[0] - ip[2]; in vp8_short_idct4x4llm_c() 84 op[1] = (b1 + c1 + 4) >> 3; in vp8_short_idct4x4llm_c() 85 op[2] = (b1 - c1 + 4) >> 3; in vp8_short_idct4x4llm_c() 144 int a1, b1, c1, d1; in vp8_short_inv_walsh4x4_c() local 152 b1 = ip[4] + ip[8]; in vp8_short_inv_walsh4x4_c() 156 op[0] = a1 + b1; in vp8_short_inv_walsh4x4_c() [all …]
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
D | ARM-E_filter_gnu.s | 45 b1 .req r6 label 76 LDR b1, [pWTFrame, #m_b1] 79 RSB b1, b1, #0 @ b1 = -b1 91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 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) 103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 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/ |
D | ARM-E_filter_gnu.s | 45 b1 .req r6 label 76 LDR b1, [pWTFrame, #m_b1] 79 RSB b1, b1, #0 @ b1 = -b1 91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 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) 103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 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/libffi/testsuite/libffi.call/ |
D | cls_16byte.c | 17 cls_struct_16byte cls_struct_16byte_fn(struct cls_struct_16byte b1, 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 37 b1 = *(struct cls_struct_16byte*)(args[0]); in cls_struct_16byte_gn() 40 *(cls_struct_16byte*)resp = cls_struct_16byte_fn(b1, b2); in cls_struct_16byte_gn()
|
D | cls_12byte.c | 16 cls_struct_12byte cls_struct_12byte_fn(struct cls_struct_12byte b1, 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 36 b1 = *(struct cls_struct_12byte*)(args[0]); in cls_struct_12byte_gn() 39 *(cls_struct_12byte*)resp = cls_struct_12byte_fn(b1, b2); in cls_struct_12byte_gn()
|
D | cls_24byte.c | 19 struct cls_struct_24byte b1, 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() 32 b1.a, b1.b, b1.c, b1.d, in cls_struct_24byte_fn() 44 struct cls_struct_24byte b0, b1, b2, b3; in cls_struct_24byte_gn() local 47 b1 = *(struct cls_struct_24byte*)(args[1]); in cls_struct_24byte_gn() 51 *(cls_struct_24byte*)resp = cls_struct_24byte_fn(b0, b1, b2, b3); in cls_struct_24byte_gn()
|
D | nested_struct2.c | 22 B B_fn(struct A b0, struct B b1) in B_fn() argument 26 result.x.a = b0.a + b1.x.a; in B_fn() 27 result.x.b = b0.b + b1.x.b + b1.y; in B_fn() 28 result.y = b0.b + b1.x.b; in B_fn() 30 printf("%lu %d %lu %d %d: %lu %d %d\n", b0.a, b0.b, b1.x.a, b1.x.b, b1.y, in B_fn() 41 struct B b1; in B_gn() local 44 b1 = *(struct B*)(args[1]); in B_gn() 46 *(B*)resp = B_fn(b0, b1); in B_gn()
|
D | nested_struct3.c | 22 B B_fn(struct A b0, struct B b1) in B_fn() argument 26 result.x.a = b0.a + b1.x.a; in B_fn() 27 result.x.b = b0.b + b1.x.b + b1.y; in B_fn() 28 result.y = b0.b + b1.x.b; in B_fn() 31 (int)b1.x.a, b1.x.b, b1.y, in B_fn() 42 struct B b1; in B_gn() local 45 b1 = *(struct B*)(args[1]); in B_gn() 47 *(B*)resp = B_fn(b0, b1); in B_gn()
|
D | cls_64byte.c | 24 struct cls_struct_64byte b1, 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 …]
|
D | cls_9byte2.c | 18 cls_struct_9byte cls_struct_9byte_fn(struct cls_struct_9byte b1, 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 37 b1 = *(struct cls_struct_9byte*)(args[0]); in cls_struct_9byte_gn() 40 *(cls_struct_9byte*)resp = cls_struct_9byte_fn(b1, b2); in cls_struct_9byte_gn()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | TwofishEngine.java | 392 int b0, b1, b2, b3; in setKey() local 396 b0 = b1 = b2 = b3 = i; in setKey() 401 gSBox[i*2+1] = gMDS1[(P[P_11][b1] & 0xff) ^ b1(k0)]; in setKey() 407 b1 = (P[P_14][b1] & 0xff) ^ b1(k3); in setKey() 413 b1 = (P[P_13][b1] & 0xff) ^ b1(k2); in setKey() 421 [(P[P_12][b1] & 0xff) ^ b1(k1)] & 0xff) ^ b1(k0)]; in setKey() 525 int b1 = b1(x); in F32() local 538 gMDS1[(P[P_11][b1] & 0xff) ^ b1(k0)] ^ in F32() 544 b1 = (P[P_14][b1] & 0xff) ^ b1(k3); in F32() 549 b1 = (P[P_13][b1] & 0xff) ^ b1(k2); in F32() [all …]
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
D | dct_sse2.asm | 88 paddw xmm0, xmm1 ;b1 a1 b1 a1 b1 a1 b1 a1 90 psllw xmm0, 3 ;b1 <<= 3 a1 <<= 3 94 pmaddwd xmm0, XMMWORD PTR[GLOBAL(_mult_add)] ;a1 + b1 95 pmaddwd xmm1, XMMWORD PTR[GLOBAL(_mult_sub)] ;a1 - b1 125 paddw xmm0, xmm2 ;b1 b1 b1 b1 a1 a1 a1 a1 128 pshufd xmm0, xmm0, 0d8h ;b1 b1 a1 a1 b1 b1 a1 a1 131 pshuflw xmm0, xmm0, 0d8h ;b1 b1 a1 a1 b1 a1 b1 a1 133 pshufhw xmm0, xmm0, 0d8h ;b1 a1 b1 a1 b1 a1 b1 a1 136 pmaddwd xmm0, XMMWORD PTR[GLOBAL(_mult_add)] ;a1 + b1 137 pmaddwd xmm1, XMMWORD PTR[GLOBAL(_mult_sub)] ;a1 - b1 [all …]
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
D | iwalsh_v6.asm | 34 qadd16 r11, r4, r6 ; b1 [5+9 | 4+8] 38 qadd16 r2, r10, r11 ; a1 + b1 [1 | 0] 40 qsub16 r6, r10, r11 ; a1 - b1 [9 | 8] 44 qadd16 r11, r5, r7 ; b1 [7+11 | 6+10] 48 qadd16 r3, r10, r11 ; a1 + b1 [3 | 2] 50 qsub16 r7, r10, r11 ; a1 - b1 [11 | 10] 56 qaddsubx r11, r2, r3 ; [b1|d1] [1+2 | 0-3] 58 qaddsubx lr, r4, r5 ; [b1|d1] [5+6 | 4-7] 60 qaddsubx r2, r10, r11 ; [b2|c2] [c1+d1 | a1-b1] 61 qaddsubx r3, r11, r10 ; [a2|d2] [b1+a1 | d1-c1] [all …]
|
/external/chromium/base/win/ |
D | scoped_bstr_unittest.cc | 36 ScopedBstr b1(kTestString1); in BasicBstrTests() local 37 EXPECT_EQ(test1_len, b1.Length()); in BasicBstrTests() 38 EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.ByteLength()); in BasicBstrTests() 41 b1.Swap(b2); in BasicBstrTests() 43 EXPECT_EQ(0, b1.Length()); in BasicBstrTests() 63 EXPECT_TRUE(b1.Allocate(kTestString2) != NULL); in BasicBstrTests() 64 EXPECT_EQ(test2_len, b1.Length()); in BasicBstrTests() 65 b1.SetByteLen((test2_len - 1) * sizeof(kTestString2[0])); in BasicBstrTests() 66 EXPECT_EQ(test2_len - 1, b1.Length()); in BasicBstrTests()
|
/external/qemu/fpu/ |
D | softfloat-macros.h | 355 uint64_t a0, uint64_t a1, uint64_t b0, uint64_t b1, uint64_t *z0Ptr, uint64_t *z1Ptr ) in add128() argument 359 z1 = a1 + b1; in add128() 379 uint64_t b1, in add192() argument 391 z1 = a1 + b1; in add192() 413 uint64_t a0, uint64_t a1, uint64_t b0, uint64_t b1, uint64_t *z0Ptr, uint64_t *z1Ptr ) in sub128() argument 416 *z1Ptr = a1 - b1; in sub128() 417 *z0Ptr = a0 - b0 - ( a1 < b1 ); in sub128() 435 uint64_t b1, in sub192() argument 447 z1 = a1 - b1; in sub192() 448 borrow0 = ( a1 < b1 ); in sub192() [all …]
|