Home
last modified time | relevance | path

Searched refs:i2 (Results 1 – 25 of 2371) sorted by relevance

12345678910>>...95

/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/engines/
DAESFastEngine.java603 int i0 = x, i1 = x >>> 8, i2 = x >>> 16, i3 = x >>> 24; in subWord() local
604 … i0 = S[i0 & 255] & 255; i1 = S[i1 & 255] & 255; i2 = S[i2 & 255] & 255; i3 = S[i3 & 255] & 255; in subWord()
605 return i0 | i1 << 8 | i2 << 16 | i3 << 24; in subWord()
861 int i0, i1, i2, i3; in encryptBlock() local
865 i0 = t0; i1 = t1 >>> 8; i2 = t2 >>> 16; i3 = r3 >>> 24; in encryptBlock()
866 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
867 r0 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][0]; in encryptBlock()
869 i0 = t1; i1 = t2 >>> 8; i2 = r3 >>> 16; i3 = t0 >>> 24; in encryptBlock()
870 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
871 r1 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][1]; in encryptBlock()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/engines/
DAESFastEngine.java603 int i0 = x, i1 = x >>> 8, i2 = x >>> 16, i3 = x >>> 24; in subWord() local
604 … i0 = S[i0 & 255] & 255; i1 = S[i1 & 255] & 255; i2 = S[i2 & 255] & 255; i3 = S[i3 & 255] & 255; in subWord()
605 return i0 | i1 << 8 | i2 << 16 | i3 << 24; in subWord()
861 int i0, i1, i2, i3; in encryptBlock() local
865 i0 = t0; i1 = t1 >>> 8; i2 = t2 >>> 16; i3 = r3 >>> 24; in encryptBlock()
866 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
867 r0 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][0]; in encryptBlock()
869 i0 = t1; i1 = t2 >>> 8; i2 = r3 >>> 16; i3 = t0 >>> 24; in encryptBlock()
870 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
871 r1 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][1]; in encryptBlock()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DAESFastEngine.java601 int i0 = x, i1 = x >>> 8, i2 = x >>> 16, i3 = x >>> 24; in subWord() local
602 … i0 = S[i0 & 255] & 255; i1 = S[i1 & 255] & 255; i2 = S[i2 & 255] & 255; i3 = S[i3 & 255] & 255; in subWord()
603 return i0 | i1 << 8 | i2 << 16 | i3 << 24; in subWord()
859 int i0, i1, i2, i3; in encryptBlock() local
863 i0 = t0; i1 = t1 >>> 8; i2 = t2 >>> 16; i3 = r3 >>> 24; in encryptBlock()
864 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
865 r0 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][0]; in encryptBlock()
867 i0 = t1; i1 = t2 >>> 8; i2 = r3 >>> 16; i3 = t0 >>> 24; in encryptBlock()
868 i0 &= 255; i1 &= 255; i2 &= 255; i3 &= 255; in encryptBlock()
869 r1 = T[i0] ^ T[256 + i1] ^ T[512 + i2] ^ T[768 + i3] ^ KW[r][1]; in encryptBlock()
[all …]
/external/llvm/test/Transforms/LoadStoreVectorizer/AMDGPU/
Dweird-type-accesses.ll9 declare void @use_i2(i2)
12 declare void @use_v2i2(<2 x i2>)
13 declare void @use_v4i2(<4 x i2>)
27 ; CHECK: store i2 1
28 ; CHECK: store i2 -1
29 define void @merge_store_2_constants_i2(i2 addrspace(1)* %out) #0 {
30 %out.gep.1 = getelementptr i2, i2 addrspace(1)* %out, i32 1
31 store i2 1, i2 addrspace(1)* %out.gep.1
32 store i2 -1, i2 addrspace(1)* %out
70 ; CHECK: store <2 x i2>
[all …]
/external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.incr/
Dpost.pass.cpp26 std::cregex_iterator i2 = i; in main() local
28 assert(i2!= std::cregex_iterator()); in main()
32 assert((*i2).size() == 1); in main()
33 assert((*i2).position() == 0); in main()
34 assert((*i2).str() == "555-1234"); in main()
37 assert(i2!= std::cregex_iterator()); in main()
41 assert((*i2).size() == 1); in main()
42 assert((*i2).position() == 0); in main()
43 assert((*i2).str() == "555-1234"); in main()
46 assert(i2!= std::cregex_iterator()); in main()
[all …]
/external/llvm/test/MC/Sparc/
Dsparc-v9-traps.s5 ! CHECK: ta %icc, %g1 + %i2 ! encoding: [0x91,0xd0,0x40,0x1a]
9 ta %icc, %g1 + %i2
14 ! CHECK: tn %icc, %g1 + %i2 ! encoding: [0x81,0xd0,0x40,0x1a]
18 tn %icc, %g1 + %i2
25 ! CHECK: tne %icc, %g1 + %i2 ! encoding: [0x93,0xd0,0x40,0x1a]
30 tne %icc, %g1 + %i2
37 ! CHECK: te %icc, %g1 + %i2 ! encoding: [0x83,0xd0,0x40,0x1a]
42 te %icc, %g1 + %i2
47 ! CHECK: tg %icc, %g1 + %i2 ! encoding: [0x95,0xd0,0x40,0x1a]
51 tg %icc, %g1 + %i2
[all …]
Dsparc-traps.s5 ! CHECK: ta %g1 + %i2 ! encoding: [0x91,0xd0,0x40,0x1a]
9 ta %g1 + %i2
14 ! CHECK: tn %g1 + %i2 ! encoding: [0x81,0xd0,0x40,0x1a]
18 tn %g1 + %i2
25 ! CHECK: tne %g1 + %i2 ! encoding: [0x93,0xd0,0x40,0x1a]
30 tne %g1 + %i2
37 ! CHECK: te %g1 + %i2 ! encoding: [0x83,0xd0,0x40,0x1a]
42 te %g1 + %i2
47 ! CHECK: tg %g1 + %i2 ! encoding: [0x95,0xd0,0x40,0x1a]
51 tg %g1 + %i2
[all …]
Dsparc64-alu-instructions.s3 ! CHECK: sllx %g1, %i2, %i0 ! encoding: [0xb1,0x28,0x50,0x1a]
4 sllx %g1, %i2, %i0
9 ! CHECK: srlx %g1, %i2, %i0 ! encoding: [0xb1,0x30,0x50,0x1a]
10 srlx %g1, %i2, %i0
15 ! CHECK: srax %g1, %i2, %i0 ! encoding: [0xb1,0x38,0x50,0x1a]
16 srax %g1, %i2, %i0
21 ! CHECK: mulx %g1, %i2, %i0 ! encoding: [0xb0,0x48,0x40,0x1a]
22 mulx %g1, %i2, %i0
27 ! CHECK: sdivx %g1, %i2, %i0 ! encoding: [0xb1,0x68,0x40,0x1a]
28 sdivx %g1, %i2, %i0
[all …]
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op==/
Dequal.pass.cpp28 std::istreambuf_iterator<char> i2(inf2); in main() local
34 assert( (i1 == i2)); in main()
39 assert( (i2 == i1)); in main()
40 assert( (i2 == i2)); in main()
41 assert(!(i2 == i3)); in main()
42 assert(!(i2 == i4)); in main()
43 assert(!(i2 == i5)); in main()
46 assert(!(i3 == i2)); in main()
52 assert(!(i4 == i2)); in main()
58 assert(!(i5 == i2)); in main()
[all …]
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op!=/
Dnot_equal.pass.cpp28 std::istreambuf_iterator<char> i2(inf2); in main() local
34 assert(!(i1 != i2)); in main()
39 assert(!(i2 != i1)); in main()
40 assert(!(i2 != i2)); in main()
41 assert( (i2 != i3)); in main()
42 assert( (i2 != i4)); in main()
43 assert( (i2 != i5)); in main()
46 assert( (i3 != i2)); in main()
52 assert( (i4 != i2)); in main()
58 assert( (i5 != i2)); in main()
[all …]
/external/clang/test/Sema/
Dwarn-logical-not-compare.c6 int test1(int i1, int i2) { in test1() argument
9 ret = !i1 == i2; in test1()
21 ret = !i1 != i2; in test1()
33 ret = !i1 < i2; in test1()
45 ret = !i1 > i2; in test1()
57 ret = !i1 <= i2; in test1()
69 ret = !i1 >= i2; in test1()
81 ret = i1 == i2; in test1()
82 ret = i1 != i2; in test1()
83 ret = i1 < i2; in test1()
[all …]
Dunused-expr-system-header.c3 void f(int i1, int i2) { in f() argument
6 COMMA_MACRO_1(i1 == i2, f(i1, i2)); // expected-warning {{comparison result unused}} \ in f()
8 COMMA_MACRO_2(i1 == i2, f(i1, i2)); in f()
9 COMMA_MACRO_3(i1 == i2, f(i1, i2)); // expected-warning {{comparison result unused}} \ in f()
11 COMMA_MACRO_4(i1 == i2, f(i1, i2)); in f()
/external/clang/test/SemaCXX/
Dwarn-logical-not-compare.cpp7 bool test1(int i1, int i2, bool b1, bool b2) { in test1() argument
10 ret = !i1 == i2; in test1()
22 ret = !i1 != i2; in test1()
34 ret = !i1 < i2; in test1()
46 ret = !i1 > i2; in test1()
58 ret = !i1 <= i2; in test1()
70 ret = !i1 >= i2; in test1()
82 ret = i1 == i2; in test1()
83 ret = i1 != i2; in test1()
84 ret = i1 < i2; in test1()
[all …]
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/
Dequal.pass.cpp26 std::istreambuf_iterator<char> i2(inf2); in main() local
32 assert( i1.equal(i2)); in main()
37 assert( i2.equal(i1)); in main()
38 assert( i2.equal(i2)); in main()
39 assert(!i2.equal(i3)); in main()
40 assert(!i2.equal(i4)); in main()
41 assert(!i2.equal(i5)); in main()
44 assert(!i3.equal(i2)); in main()
50 assert(!i4.equal(i2)); in main()
56 assert(!i5.equal(i2)); in main()
[all …]
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/
DGeneratedJavaParserTokenManager.java2221 int i2 = (curChar & 0xff) >> 6; in jjMoveNfa_0() local
2229 if (!jjCanMove_3(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2236 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2241 if (jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2249 if (jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2253 if (jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2257 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2264 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2271 if (jjCanMove_1(hiByte, i1, i2, l1, l2) && kind > 6) in jjMoveNfa_0()
2274 default : if (i1 == 0 || l1 == 0 || i2 == 0 || l2 == 0) break; else break; in jjMoveNfa_0()
[all …]
/external/tensorflow/tensorflow/python/keras/layers/
Dmerge_test.py37 i2 = keras.layers.Input(shape=(4, 5))
41 o = add_layer([i1, i2, i3])
43 model = keras.models.Model([i1, i2, i3], o)
54 add_layer.compute_mask([i1, i2, i3], [None, None, None]), None)
59 [i1, i2], [backend.variable(x1), backend.variable(x2)]))))
62 add_layer.compute_mask([i1, i2, i3], x1)
66 add_layer.compute_mask([i1, i2, i3], [None, None])
70 i2 = keras.layers.Input(shape=(4, 5))
74 o = subtract_layer([i1, i2])
76 model = keras.models.Model([i1, i2], o)
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
DASTParserTokenManager.java1902 int i2 = (curChar & 0xff) >> 6; in jjMoveNfa_0() local
1909 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1916 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1920 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1924 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1931 if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1938 if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 7) in jjMoveNfa_0()
2026 private static final boolean jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) in jjCanMove_0() argument
2031 return ((jjbitVec2[i2] & l2) != 0L); in jjCanMove_0()
2038 private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, long l2) in jjCanMove_1() argument
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.rw.atomics.frag39 uniform int2 i2;
82 InterlockedAdd(g_tTex2di1[i2], i1b);
83 InterlockedAdd(g_tTex2di1[i2], i1, out_i1);
84 InterlockedAnd(g_tTex2di1[i2], i1b);
85 InterlockedAnd(g_tTex2di1[i2], i1, out_i1);
86 InterlockedCompareExchange(g_tTex2di1[i2], i1b, i1c, out_i1);
87 InterlockedExchange(g_tTex2di1[i2], i1, out_i1);
88 InterlockedMax(g_tTex2di1[i2], i1b);
89 InterlockedMax(g_tTex2di1[i2], i1, out_i1);
90 InterlockedMin(g_tTex2di1[i2], i1b);
[all …]
/external/deqp-deps/glslang/Test/
Dhlsl.rw.atomics.frag39 uniform int2 i2;
82 InterlockedAdd(g_tTex2di1[i2], i1b);
83 InterlockedAdd(g_tTex2di1[i2], i1, out_i1);
84 InterlockedAnd(g_tTex2di1[i2], i1b);
85 InterlockedAnd(g_tTex2di1[i2], i1, out_i1);
86 InterlockedCompareExchange(g_tTex2di1[i2], i1b, i1c, out_i1);
87 InterlockedExchange(g_tTex2di1[i2], i1, out_i1);
88 InterlockedMax(g_tTex2di1[i2], i1b);
89 InterlockedMax(g_tTex2di1[i2], i1, out_i1);
90 InterlockedMin(g_tTex2di1[i2], i1b);
[all …]
/external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.incr/
Dpost.pass.cpp27 std::cregex_token_iterator i2 = i; in main() local
30 assert(i2 != std::cregex_token_iterator()); in main()
32 assert(i2->str() == "start "); in main()
35 assert(i2 != std::cregex_token_iterator()); in main()
38 assert(i2->str() == "start "); in main()
42 assert(i2 != std::cregex_token_iterator()); in main()
45 assert(i2->str() == "start "); in main()
49 assert(i2 != std::cregex_token_iterator()); in main()
52 assert(i2->str() == "start "); in main()
56 assert(i2 != std::cregex_token_iterator()); in main()
[all …]
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dbad_types.ll54 ; CHECK-NOT: <4 x i2>
57 %a = bitcast i8* %addr to i2*
58 %a0 = getelementptr inbounds i2, i2* %a, i64 0
59 %a1 = getelementptr inbounds i2, i2* %a, i64 1
60 %a2 = getelementptr inbounds i2, i2* %a, i64 2
61 %a3 = getelementptr inbounds i2, i2* %a, i64 3
62 %l0 = load i2, i2* %a0, align 1
63 %l1 = load i2, i2* %a1, align 1
64 %l2 = load i2, i2* %a2, align 1
65 %l3 = load i2, i2* %a3, align 1
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_uint128.cpp43 for (uint64_t i2 = 1; i2 < 100 * incr; i2 += incr) { in test_add() local
44 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_add()
45 uint128_t a = (static_cast<uint128_t>(i1) << 64) + static_cast<uint128_t>(i2); in test_add()
62 for (uint64_t i2 = 1; i2 < 100 * incr; i2 += incr) { in test_sub() local
63 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_sub()
64 uint128_t a = (static_cast<uint128_t>(i1) << 64) + static_cast<uint128_t>(i2); in test_sub()
81 for (uint64_t i2 = 1; i2 < 100 * incr; i2 += incr) { in test_mul() local
82 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_mul()
83 uint128_t a = (static_cast<uint128_t>(i1) << 64) + static_cast<uint128_t>(i2); in test_mul()
100 for (uint64_t i2 = 1; i2 < 100 * incr; i2 += incr) { in test_div() local
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
DASTParserTokenManager.java1978 int i2 = (curChar & 0xff) >> 6; in jjMoveNfa_0() local
1985 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1992 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
1996 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2000 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2007 if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0()
2014 if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 32) in jjMoveNfa_0()
2017 default : if (i1 == 0 || l1 == 0 || i2 == 0 || l2 == 0) break; else break; in jjMoveNfa_0()
2098 private static final boolean jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) in jjCanMove_0() argument
2103 return ((jjbitVec2[i2] & l2) != 0L); in jjCanMove_0()
[all …]
/external/libffi/src/sparc/
Dv8.S84 mov %i2, %o2 ! copy rvalue
120 st %o0, [%i2]
136 7: st %o0, [%i2]
140 sth %o0, [%i2+2]
144 st %o0, [%i2]
145 st %o1, [%i2+4]
149 std %o0, [%i2]
150 std %o2, [%i2+8]
154 st %f7, [%i2+7*4]
156 st %f6, [%i2+6*4]
[all …]
/external/llvm/test/Transforms/MergeFunc/
Dphi-check-blocks.ll6 ; CHECK-LABEL: define linkonce_odr hidden i1 @first(i2)
7 define linkonce_odr hidden i1 @first(i2) {
9 ; CHECK: switch i2
10 switch i2 %0, label %default [
11 i2 0, label %L1
12 i2 1, label %L2
13 i2 -2, label %L3
29 ; CHECK-LABEL: define linkonce_odr hidden i1 @second(i2)
30 define linkonce_odr hidden i1 @second(i2) {
32 ; CHECK: switch i2
[all …]

12345678910>>...95