Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 25 of 1855) sorted by relevance

12345678910>>...75

/external/python/cpython3/Modules/_blake2/impl/
Dblake2b-load-sse41.h19 #define LOAD_MSG_0_1(b0, b1) \ argument
23 b1 = _mm_unpacklo_epi64(m2, m3); \
27 #define LOAD_MSG_0_2(b0, b1) \ argument
31 b1 = _mm_unpackhi_epi64(m2, m3); \
35 #define LOAD_MSG_0_3(b0, b1) \ argument
39 b1 = _mm_unpacklo_epi64(m6, m7); \
43 #define LOAD_MSG_0_4(b0, b1) \ argument
47 b1 = _mm_unpackhi_epi64(m6, m7); \
51 #define LOAD_MSG_1_1(b0, b1) \ argument
55 b1 = _mm_unpackhi_epi64(m4, m6); \
[all …]
Dblake2b-load-sse2.h19 #define LOAD_MSG_0_1(b0, b1) b0 = _mm_set_epi64x(m2, m0); b1 = _mm_set_epi64x(m6, m4) argument
20 #define LOAD_MSG_0_2(b0, b1) b0 = _mm_set_epi64x(m3, m1); b1 = _mm_set_epi64x(m7, m5) argument
21 #define LOAD_MSG_0_3(b0, b1) b0 = _mm_set_epi64x(m10, m8); b1 = _mm_set_epi64x(m14, m12) argument
22 #define LOAD_MSG_0_4(b0, b1) b0 = _mm_set_epi64x(m11, m9); b1 = _mm_set_epi64x(m15, m13) argument
23 #define LOAD_MSG_1_1(b0, b1) b0 = _mm_set_epi64x(m4, m14); b1 = _mm_set_epi64x(m13, m9) argument
24 #define LOAD_MSG_1_2(b0, b1) b0 = _mm_set_epi64x(m8, m10); b1 = _mm_set_epi64x(m6, m15) argument
25 #define LOAD_MSG_1_3(b0, b1) b0 = _mm_set_epi64x(m0, m1); b1 = _mm_set_epi64x(m5, m11) argument
26 #define LOAD_MSG_1_4(b0, b1) b0 = _mm_set_epi64x(m2, m12); b1 = _mm_set_epi64x(m3, m7) argument
27 #define LOAD_MSG_2_1(b0, b1) b0 = _mm_set_epi64x(m12, m11); b1 = _mm_set_epi64x(m15, m5) argument
28 #define LOAD_MSG_2_2(b0, b1) b0 = _mm_set_epi64x(m0, m8); b1 = _mm_set_epi64x(m13, m2) argument
[all …]
/external/clang/test/SemaCXX/
Dwarn-memsize-comparison.cpp18 char b1[80], b2[80]; in f() local
19 if (memset(b1, 0, sizeof(b1) != 0)) {} // \ in f()
23 if (memset(b1, 0, sizeof(b1)) != 0) {} in f()
25 if (memmove(b1, b2, sizeof(b1) == 0)) {} // \ in f()
29 if (memmove(b1, b2, sizeof(b1)) == 0) {} in f()
31 if (memcpy(b1, b2, sizeof(b1) < 0)) {} // \ in f()
35 if (memcpy(b1, b2, sizeof(b1)) < 0) {} in f()
37 if (memcmp(b1, b2, sizeof(b1) <= 0)) {} // \ in f()
41 if (memcmp(b1, b2, sizeof(b1)) <= 0) {} in f()
43 if (strncmp(b1, b2, sizeof(b1) > 0)) {} // \ in f()
[all …]
Dwarn-redundant-move.cpp20 A test1(B b1) { in test1() argument
22 return b1; in test1()
24 return std::move(b1); in test1()
33 C test2(A a1, B b1) { in test2() argument
39 return b1; in test2()
44 return std::move(b1); in test2()
49 A test3(B& b1) { in test3() argument
50 B& b2 = b1; in test3()
51 return b1; in test3()
53 return std::move(b1); in test3()
[all …]
/external/okhttp/okio/okio/src/test/java/okio/
DTestUtil.java53 public static void assertEquivalent(ByteString b1, ByteString b2) { in assertEquivalent() argument
55 assertTrue(b1.equals(b2)); in assertEquivalent()
56 assertTrue(b1.equals(b1)); in assertEquivalent()
57 assertTrue(b2.equals(b1)); in assertEquivalent()
60 assertEquals(b1.hashCode(), b2.hashCode()); in assertEquivalent()
61 assertEquals(b1.hashCode(), b1.hashCode()); in assertEquivalent()
62 assertEquals(b1.toString(), b2.toString()); in assertEquivalent()
65 assertEquals(b1.size(), b2.size()); in assertEquivalent()
69 assertEquals(b, b1.getByte(i)); in assertEquivalent()
71 assertByteArraysEquals(b1.toByteArray(), b2Bytes); in assertEquivalent()
[all …]
/external/libpcap/
Dgencode.c842 merge(struct block *b0, struct block *b1) in merge() argument
851 *p = b1; in merge()
904 gen_and(struct block *b0, struct block *b1) in gen_and() argument
906 backpatch(b0, b1->head); in gen_and()
908 b1->sense = !b1->sense; in gen_and()
909 merge(b1, b0); in gen_and()
910 b1->sense = !b1->sense; in gen_and()
911 b1->head = b0->head; in gen_and()
915 gen_or(struct block *b0, struct block *b1) in gen_or() argument
918 backpatch(b0, b1->head); in gen_or()
[all …]
/external/icu/icu4c/source/test/intltest/
Didnaref.cpp136 uint32_t* b1 = b1Stack; in convertToPuny() local
143 u_strToUTF32((UChar32*)b1,b1Capacity,&b1Len,src,srcLength,&status); in convertToPuny()
147 b1 = (uint32_t*) uprv_malloc(b1Len * sizeof(uint32_t)); in convertToPuny()
148 if(b1==NULL){ in convertToPuny()
155 u_strToUTF32((UChar32*)b1,b1Len,&b1Len,src,srcLength,&status); in convertToPuny()
163 error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny()
176 punycode_status error = punycode_encode(b1Len,b1,caseFlags, (uint32_t*)&b2Len, b2); in convertToPuny()
190 if(b1Stack != b1){ in convertToPuny()
191 uprv_free(b1); in convertToPuny()
205 char* b1 = b1Stack; in convertFromPuny() local
[all …]
/external/clang/test/CodeGenCXX/
Dinline-hint.cpp46 B b1; in foo() local
48 B b2(b1); in foo()
50 b2 = b1; in foo()
52 b1.implicitFunction(1); in foo()
54 b1.explicitFunction(2); in foo()
55 b1.noHintFunction(3); in foo()
57 b1.optNoneFunction(4); in foo()
60 b1.implicitTplFunction<0>(6); in foo()
62 b1.implicitTplFunction<1>(7); in foo()
64 b1.implicitTplFunction<2>(8); in foo()
[all …]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c41 int a1, b1, c1, d1; in vp8_short_idct4x4llm_dspr2() local
57 b1 = ip[0] - ip[8]; in vp8_short_idct4x4llm_dspr2()
77 op[4] = b1 + c1; in vp8_short_idct4x4llm_dspr2()
78 op[8] = b1 - c1; in vp8_short_idct4x4llm_dspr2()
81 b1 = ip[1] - ip[9]; in vp8_short_idct4x4llm_dspr2()
85 op[5] = b1 + c2; in vp8_short_idct4x4llm_dspr2()
86 op[9] = b1 - c2; in vp8_short_idct4x4llm_dspr2()
89 b1 = ip[2] - ip[10]; in vp8_short_idct4x4llm_dspr2()
109 op[6] = b1 + c1; in vp8_short_idct4x4llm_dspr2()
110 op[10] = b1 - c1; in vp8_short_idct4x4llm_dspr2()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Dhwloop-long.ll11 br label %b1
12 b1: ; preds = %b1, %b0
13 %v0 = phi i32 [ 0, %b0 ], [ %v5, %b1 ]
14 %v1 = phi i64 [ 0, %b0 ], [ %v6, %b1 ]
21 br i1 %v7, label %b1, label %b2
23 b2: ; preds = %b1
32 br label %b1
33 b1: ; preds = %b1, %b0
34 %v0 = phi i32 [ 0, %b0 ], [ %v5, %b1 ]
35 %v1 = phi i64 [ 0, %b0 ], [ %v6, %b1 ]
[all …]
Dloop_correctness.ll8 br label %b1
10 b1: ; preds = %b0
13 b2: ; preds = %b2, %b1
14 %v0 = phi i32 [ 0, %b1 ], [ %v1, %b2 ]
28 br label %b1
30 b1: ; preds = %b0
33 b2: ; preds = %b2, %b1
34 %v0 = phi i32 [ 0, %b1 ], [ %v1, %b2 ]
48 br label %b1
50 b1: ; preds = %b0
[all …]
Dswp-phi.ll45 br label %b1
47 b1: ; preds = %b1, %b0
48 %v34 = phi float [ undef, %b0 ], [ %v103, %b1 ]
49 %v35 = phi float [ undef, %b0 ], [ %v34, %b1 ]
50 %v36 = phi float [ undef, %b0 ], [ %v35, %b1 ]
51 %v37 = phi float [ undef, %b0 ], [ %v36, %b1 ]
52 %v38 = phi float [ undef, %b0 ], [ %v37, %b1 ]
53 %v39 = phi float [ undef, %b0 ], [ %v38, %b1 ]
54 %v40 = phi float [ undef, %b0 ], [ %v39, %b1 ]
55 %v41 = phi float [ undef, %b0 ], [ %v40, %b1 ]
[all …]
/external/icu/icu4c/source/common/
Dutf_impl.cpp240 uint8_t b1=s[--i]; in utf8_prevCharSafeBody() local
241 if(U8_IS_LEAD(b1)) { in utf8_prevCharSafeBody()
242 if(b1<0xe0) { in utf8_prevCharSafeBody()
244 return ((b1-0xc0)<<6)|(c&0x3f); in utf8_prevCharSafeBody()
245 } else if(b1<0xf0 ? U8_IS_VALID_LEAD3_AND_T1(b1, c) : U8_IS_VALID_LEAD4_AND_T1(b1, c)) { in utf8_prevCharSafeBody()
250 } else if(U8_IS_TRAIL(b1) && i>start) { in utf8_prevCharSafeBody()
258 if(U8_IS_VALID_LEAD3_AND_T1(b2, b1)) { in utf8_prevCharSafeBody()
260 c=(b2<<12)|((b1&0x3f)<<6)|c; in utf8_prevCharSafeBody()
270 b1-=0x80; in utf8_prevCharSafeBody()
271 if((b2>0 || b1>=0x20)) { in utf8_prevCharSafeBody()
[all …]
Duidna.cpp207 UChar *b1 = b1Stack, *b2 = b2Stack; in _internal_toASCII() local
233 b1 = (UChar*) uprv_malloc(srcLength * U_SIZEOF_UCHAR); in _internal_toASCII()
234 if(b1==NULL){ in _internal_toASCII()
246 b1[b1Len++] = src[j]; in _internal_toASCII()
253 …b1Len = usprep_prepare(nameprep, src, srcLength, b1, b1Capacity, namePrepOptions, parseError, stat… in _internal_toASCII()
258 if(b1 != b1Stack){ in _internal_toASCII()
259 uprv_free(b1); in _internal_toASCII()
261 b1 = (UChar*) uprv_malloc(b1Len * U_SIZEOF_UCHAR); in _internal_toASCII()
262 if(b1==NULL){ in _internal_toASCII()
269 … b1Len = usprep_prepare(nameprep, src, srcLength, b1, b1Len, namePrepOptions, parseError, status); in _internal_toASCII()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/
DByteStringTest.cs44 ByteString b1 = ByteString.CopyFrom(1, 2, 3); in Equality()
48 EqualityTester.AssertEquality(b1, b1); in Equality()
49 EqualityTester.AssertEquality(b1, b2); in Equality()
50 EqualityTester.AssertInequality(b1, b3); in Equality()
51 EqualityTester.AssertInequality(b1, b4); in Equality()
52 EqualityTester.AssertInequality(b1, null); in Equality()
54 Assert.IsTrue(b1 == b1); in Equality()
55 Assert.IsTrue(b1 == b2); in Equality()
56 Assert.IsFalse(b1 == b3); in Equality()
57 Assert.IsFalse(b1 == b4); in Equality()
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/SystemZ/
D08-DivRemMemOp.ll11 %b1 = load i64* %b
12 %div = sdiv i64 %a, %b1
18 %b1 = load i64* %b
19 %div = udiv i64 %a, %b1
25 %b1 = load i64* %b
26 %div = srem i64 %a, %b1
32 %b1 = load i64* %b
33 %div = urem i64 %a, %b1
39 %b1 = load i32* %b
40 %div = sdiv i32 %a, %b1
[all …]
/external/libvpx/libvpx/vp8/encoder/
Ddct.c17 int a1, b1, c1, d1; in vp8_short_fdct4x4_c() local
23 b1 = ((ip[1] + ip[2]) * 8); in vp8_short_fdct4x4_c()
27 op[0] = a1 + b1; in vp8_short_fdct4x4_c()
28 op[2] = a1 - b1; in vp8_short_fdct4x4_c()
40 b1 = ip[4] + ip[8]; in vp8_short_fdct4x4_c()
44 op[0] = (a1 + b1 + 7) >> 4; in vp8_short_fdct4x4_c()
45 op[8] = (a1 - b1 + 7) >> 4; in vp8_short_fdct4x4_c()
62 int a1, b1, c1, d1; in vp8_short_walsh4x4_c() local
71 b1 = ((ip[0] - ip[2]) * 4); in vp8_short_walsh4x4_c()
74 op[1] = b1 + c1; in vp8_short_walsh4x4_c()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/encoders/
DBase64Encoder.java86 int b1, b2, b3; in encode() local
95 b1 = (d1 >>> 2) & 0x3f; in encode()
98 out.write(encodingTable[b1]); in encode()
107 b1 = (d1 >>> 2) & 0x3f; in encode()
111 out.write(encodingTable[b1]); in encode()
140 byte b1, b2, b3, b4; in decode()
178 b1 = decodingTable[data[i++]]; in decode()
192 if ((b1 | b2 | b3 | b4) < 0) in decode()
197 out.write((b1 << 2) | (b2 >> 4)); in decode()
236 byte b1, b2, b3, b4; in decode()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DBase64Encoder.java84 int b1, b2, b3; in encode() local
93 b1 = (d1 >>> 2) & 0x3f; in encode()
96 out.write(encodingTable[b1]); in encode()
105 b1 = (d1 >>> 2) & 0x3f; in encode()
109 out.write(encodingTable[b1]); in encode()
138 byte b1, b2, b3, b4; in decode()
176 b1 = decodingTable[data[i++]]; in decode()
190 if ((b1 | b2 | b3 | b4) < 0) in decode()
195 out.write((b1 << 2) | (b2 >> 4)); in decode()
234 byte b1, b2, b3, b4; in decode()
[all …]
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java265 byte k = 0, l = 0, b1 = 0, b2 = 0, b3 = 0; in encodeBase64()
276 b1 = binaryData[dataIndex]; in encodeBase64()
283 k = (byte) (b1 & 0x03); in encodeBase64()
286 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64()
327 b1 = binaryData[dataIndex]; in encodeBase64()
328 k = (byte) (b1 & 0x03); in encodeBase64()
332 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64()
339 b1 = binaryData[dataIndex]; in encodeBase64()
342 k = (byte) (b1 & 0x03); in encodeBase64()
345 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0); in encodeBase64()
[all …]
/external/libyuv/files/unit_test/
Dcolor_test.cc351 int r0, g0, b0, r1, g1, b1; in TEST_F() local
359 YUVToRGB(240, 255, 0, &r1, &g1, &b1); in TEST_F()
362 EXPECT_EQ(255, b1); in TEST_F()
370 YUVToRGB(240, 0, 0, &r1, &g1, &b1); in TEST_F()
373 EXPECT_EQ(5, b1); in TEST_F()
377 YUVToRGB(i, 128, 128, &r1, &g1, &b1); in TEST_F()
380 EXPECT_NEAR(b0, b1, ERROR_B); in TEST_F()
383 YUVToRGB(i, 0, 0, &r1, &g1, &b1); in TEST_F()
386 EXPECT_NEAR(b0, b1, ERROR_B); in TEST_F()
389 YUVToRGB(i, 0, 255, &r1, &g1, &b1); in TEST_F()
[all …]
/external/stressapptest/src/
Dadler32memcpy.cc78 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/deqp-deps/glslang/Test/baseResults/
D460.vert.out8 0:10 'b1' ( temp bool)
10 0:10 'b1' ( temp bool)
12 0:11 'b1' ( temp bool)
14 0:11 'b1' ( temp bool)
16 0:12 'b1' ( temp bool)
18 0:12 'b1' ( temp bool)
35 0:10 'b1' ( temp bool)
37 0:10 'b1' ( temp bool)
39 0:11 'b1' ( temp bool)
41 0:11 'b1' ( temp bool)
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
Dstret_large2.c35 struct_116byte b1, in cls_struct_116byte_fn() argument
41 result.a = b0.a + b1.a + b2.a + b3.a; in cls_struct_116byte_fn()
42 result.b = b0.b + b1.b + b2.b + b3.b; in cls_struct_116byte_fn()
43 result.c = b0.c + b1.c + b2.c + b3.c; in cls_struct_116byte_fn()
44 result.d = b0.d + b1.d + b2.d + b3.d; in cls_struct_116byte_fn()
45 result.e = b0.e + b1.e + b2.e + b3.e; in cls_struct_116byte_fn()
46 result.f = b0.f + b1.f + b2.f + b3.f; in cls_struct_116byte_fn()
47 result.g = b0.g + b1.g + b2.g + b3.g; in cls_struct_116byte_fn()
48 result.h = b0.h + b1.h + b2.h + b3.h; in cls_struct_116byte_fn()
49 result.i = b0.i + b1.i + b2.i + b3.i; in cls_struct_116byte_fn()
[all …]
/external/libffi/testsuite/libffi.call/
Dstret_large2.c35 struct_116byte b1, in cls_struct_116byte_fn() argument
41 result.a = b0.a + b1.a + b2.a + b3.a; in cls_struct_116byte_fn()
42 result.b = b0.b + b1.b + b2.b + b3.b; in cls_struct_116byte_fn()
43 result.c = b0.c + b1.c + b2.c + b3.c; in cls_struct_116byte_fn()
44 result.d = b0.d + b1.d + b2.d + b3.d; in cls_struct_116byte_fn()
45 result.e = b0.e + b1.e + b2.e + b3.e; in cls_struct_116byte_fn()
46 result.f = b0.f + b1.f + b2.f + b3.f; in cls_struct_116byte_fn()
47 result.g = b0.g + b1.g + b2.g + b3.g; in cls_struct_116byte_fn()
48 result.h = b0.h + b1.h + b2.h + b3.h; in cls_struct_116byte_fn()
49 result.i = b0.i + b1.i + b2.i + b3.i; in cls_struct_116byte_fn()
[all …]

12345678910>>...75