Home
last modified time | relevance | path

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

12345678910>>...98

/external/python/cpython3/Modules/_blake2/impl/
Dblake2b-load-sse2.h17 #define LOAD_MSG_0_1(b0, b1) b0 = _mm_set_epi64x(m2, m0); b1 = _mm_set_epi64x(m6, m4) argument
18 #define LOAD_MSG_0_2(b0, b1) b0 = _mm_set_epi64x(m3, m1); b1 = _mm_set_epi64x(m7, m5) argument
19 #define LOAD_MSG_0_3(b0, b1) b0 = _mm_set_epi64x(m10, m8); b1 = _mm_set_epi64x(m14, m12) argument
20 #define LOAD_MSG_0_4(b0, b1) b0 = _mm_set_epi64x(m11, m9); b1 = _mm_set_epi64x(m15, m13) argument
21 #define LOAD_MSG_1_1(b0, b1) b0 = _mm_set_epi64x(m4, m14); b1 = _mm_set_epi64x(m13, m9) argument
22 #define LOAD_MSG_1_2(b0, b1) b0 = _mm_set_epi64x(m8, m10); b1 = _mm_set_epi64x(m6, m15) argument
23 #define LOAD_MSG_1_3(b0, b1) b0 = _mm_set_epi64x(m0, m1); b1 = _mm_set_epi64x(m5, m11) argument
24 #define LOAD_MSG_1_4(b0, b1) b0 = _mm_set_epi64x(m2, m12); b1 = _mm_set_epi64x(m3, m7) argument
25 #define LOAD_MSG_2_1(b0, b1) b0 = _mm_set_epi64x(m12, m11); b1 = _mm_set_epi64x(m15, m5) argument
26 #define LOAD_MSG_2_2(b0, b1) b0 = _mm_set_epi64x(m0, m8); b1 = _mm_set_epi64x(m13, m2) argument
[all …]
Dblake2b-load-sse41.h17 #define LOAD_MSG_0_1(b0, b1) \ argument
21 b1 = _mm_unpacklo_epi64(m2, m3); \
25 #define LOAD_MSG_0_2(b0, b1) \ argument
29 b1 = _mm_unpackhi_epi64(m2, m3); \
33 #define LOAD_MSG_0_3(b0, b1) \ argument
37 b1 = _mm_unpacklo_epi64(m6, m7); \
41 #define LOAD_MSG_0_4(b0, b1) \ argument
45 b1 = _mm_unpackhi_epi64(m6, m7); \
49 #define LOAD_MSG_1_1(b0, b1) \ argument
53 b1 = _mm_unpackhi_epi64(m4, m6); \
[all …]
/external/llvm-project/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()
32 if (memcpy(b1, b2, sizeof(b1) < 0)) {} // \ in f()
36 …if (memcpy(b1, b2, sizeof(b1)) < 0) {} // expected-error {{ordered comparison between pointer and … in f()
38 if (memcmp(b1, b2, sizeof(b1) <= 0)) {} // \ in f()
42 if (memcmp(b1, b2, sizeof(b1)) <= 0) {} in f()
44 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/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/llvm-project/llvm/test/Analysis/ScalarEvolution/
Dsolve-quadratic-i1.ll8 ; CHECK-NEXT: %v0 = phi i16 [ 2, %b0 ], [ %v2, %b1 ]
9 …CHECK-NEXT: --> {2,+,1}<nuw><nsw><%b1> U: [2,4) S: [2,4) Exits: 3 LoopDi…
10 ; CHECK-NEXT: %v1 = phi i16 [ 1, %b0 ], [ %v3, %b1 ]
11 ; CHECK-NEXT: --> {1,+,2,+,1}<%b1> U: full-set S: full-set Exits: 3 LoopD…
13 …CHECK-NEXT: --> {3,+,1}<nuw><nsw><%b1> U: [3,5) S: [3,5) Exits: 4 LoopDi…
15 ; CHECK-NEXT: --> {3,+,3,+,1}<%b1> U: full-set S: full-set Exits: 6 LoopD…
17 … (zext i1 {true,+,true,+,true}<%b1> to i16) U: [0,2) S: [0,2) Exits: 0 …
19 ; CHECK-NEXT: Loop %b1: backedge-taken count is 1
20 ; CHECK-NEXT: Loop %b1: max backedge-taken count is 1
21 ; CHECK-NEXT: Loop %b1: Predicated backedge-taken count is 1
[all …]
Dsolve-quadratic-overflow.ll9 ; CHECK-NEXT: %v1 = phi i16 [ 0, %b0 ], [ %v2, %b1 ]
10 ; CHECK-NEXT: --> {0,+,-1}<%b1> U: [-255,1) S: [-255,1) Exits: -255 LoopDi…
12 ; CHECK-NEXT: --> {-1,+,-1}<%b1> U: [-256,0) S: [-256,0) Exits: -256 LoopDi…
14 ; CHECK-NEXT: --> {1,+,3,+,2}<%b1> U: full-set S: full-set Exits: 0 LoopDi…
15 ; CHECK-NEXT: %v5 = phi i16 [ %v2, %b1 ]
17 ; CHECK-NEXT: %v6 = phi i16 [ %v3, %b1 ]
22 ; CHECK-NEXT: Loop %b1: backedge-taken count is 255
23 ; CHECK-NEXT: Loop %b1: max backedge-taken count is 255
24 ; CHECK-NEXT: Loop %b1: Predicated backedge-taken count is 255
27 ; CHECK-NEXT: Loop %b1: Trip multiple is 256
[all …]
/external/llvm-project/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/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/adhd/cras/src/tests/
Dbiquad_unittest.cc25 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
33 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
41 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
50 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
59 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
68 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
77 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
86 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
95 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
104 EXPECT_EQ(bq.b1, test_bq.b1); in TEST()
[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()
216 char* b1 = b1Stack; in convertFromPuny() local
[all …]
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/cloog/
Dmxm-shared.st1b1, g0, g1, g2, g3, g4, t0, t1] -> { S1[g0 + t1, i1] : (exists (e0 = floor((g1)/128), e1 = floor((…
3b1, g0, g1, g2, g3, g4, t0, t1] -> { [] : exists (e0 = floor((g0)/8), e1 = floor((-128b1 + g1)/409…
5 …schedule: "[N, b0, b1, g0, g1, g2, g3, g4, t0, t1] -> [{ S1[i0, i1] -> [(-g1 + i1)] }, { S1[i0, i1…
6 options: "[N, b0, b1, g0, g1, g2, g3, g4, t0, t1] -> { separate[i0] }"
/external/libpcap/
Dgencode.c930 merge(struct block *b0, struct block *b1) in merge() argument
939 *p = b1; in merge()
1000 gen_and(struct block *b0, struct block *b1) in gen_and() argument
1002 backpatch(b0, b1->head); in gen_and()
1004 b1->sense = !b1->sense; in gen_and()
1005 merge(b1, b0); in gen_and()
1006 b1->sense = !b1->sense; in gen_and()
1007 b1->head = b0->head; in gen_and()
1011 gen_or(struct block *b0, struct block *b1) in gen_or() argument
1014 backpatch(b0, b1->head); in gen_or()
[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/llvm-project/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 …]
Dhwloop-cleanup.ll15 br i1 %v0, label %b1, label %b4
17 b1: ; preds = %b0
20 b2: ; preds = %b2, %b1
21 %v1 = phi i32 [ %v5, %b2 ], [ 0, %b1 ]
22 %v2 = phi i32* [ %v8, %b2 ], [ %a0, %b1 ]
23 %v3 = phi i32 [ %v6, %b2 ], [ 0, %b1 ]
49 br label %b1
51 b1: ; preds = %b1, %b0
52 %v0 = phi i32 [ 0, %b0 ], [ %v4, %b1 ]
53 %v1 = phi i32* [ %a0, %b0 ], [ %v7, %b1 ]
[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/okio/okio/src/jvmTest/kotlin/okio/
DTestUtil.kt104 fun assertEquivalent(b1: ByteString, b2: ByteString) { in assertEquivalent()
106 assertTrue(b1 == b2) in assertEquivalent()
107 assertTrue(b1 == b1) in assertEquivalent()
108 assertTrue(b2 == b1) in assertEquivalent()
111 assertEquals(b1.hashCode().toLong(), b2.hashCode().toLong()) in assertEquivalent()
112 assertEquals(b1.hashCode().toLong(), b1.hashCode().toLong()) in assertEquivalent()
113 assertEquals(b1.toString(), b2.toString()) in assertEquivalent()
116 assertEquals(b1.size.toLong(), b2.size.toLong()) in assertEquivalent()
120 assertEquals(b.toLong(), b1[i].toLong()) in assertEquivalent()
122 assertByteArraysEquals(b1.toByteArray(), b2Bytes) in assertEquivalent()
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/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/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.cpp205 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/protobuf/csharp/src/Google.Protobuf.Test/
DByteStringTest.cs48 ByteString b1 = ByteString.CopyFrom(1, 2, 3); in Equality()
52 EqualityTester.AssertEquality(b1, b1); in Equality()
53 EqualityTester.AssertEquality(b1, b2); in Equality()
54 EqualityTester.AssertInequality(b1, b3); in Equality()
55 EqualityTester.AssertInequality(b1, b4); in Equality()
56 EqualityTester.AssertInequality(b1, null); in Equality()
58 Assert.IsTrue(b1 == b1); in Equality()
59 Assert.IsTrue(b1 == b2); in Equality()
60 Assert.IsFalse(b1 == b3); in Equality()
61 Assert.IsFalse(b1 == b4); in Equality()
[all …]

12345678910>>...98