Home
last modified time | relevance | path

Searched refs:S5 (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/external/boringssl/src/decrepit/cast/
Dcast.c252 #define S5 CAST_S_table5 macro
289 l = X[0] ^ S4[x[13]] ^ S5[x[15]] ^ S6[x[12]] ^ S7[x[14]] ^ S6[x[8]]; in CAST_set_key()
291 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]]; in CAST_set_key()
293 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]]; in CAST_set_key()
295 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]]; in CAST_set_key()
298 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]]; in CAST_set_key()
299 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]]; in CAST_set_key()
300 K[2] = S4[z[12]] ^ S5[z[13]] ^ S6[z[3]] ^ S7[z[2]] ^ S6[z[9]]; in CAST_set_key()
301 K[3] = S4[z[14]] ^ S5[z[15]] ^ S6[z[1]] ^ S7[z[0]] ^ S7[z[12]]; in CAST_set_key()
303 l = Z[2] ^ S4[z[5]] ^ S5[z[7]] ^ S6[z[4]] ^ S7[z[6]] ^ S6[z[0]]; in CAST_set_key()
[all …]
/external/clang/test/SemaCUDA/
Dmethod-target.cu53 struct S5 { struct
54 S5() {} in S5() argument
55 S5& operator=(const S5&) {return *this;} // expected-note {{candidate function not viable}} in operator =() argument
58 __device__ void foo5(S5& s, S5& t) { in foo5()
/external/clang/test/CodeGen/
Dmalign-double.cpp82 union S5 { union
88 unsigned S5_align = __alignof(union S5);
89 unsigned S5_size = sizeof(union S5);
93 unsigned S5_c_offset = (unsigned) &((union S5*) 0)->c;
94 unsigned S5_s_offset = (unsigned) &((union S5*) 0)->s;
95 unsigned S5_j_offset = (unsigned) &((union S5*) 0)->j;
/external/clang/test/OpenMP/
Dparallel_copyin_messages.cpp30 class S5 { class
32 S5():a(0) {} in S5() function in S5
33S5 &operator =(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here… in operator =()
35 S5(int v):a(v) { } in S5() function in S5
54 S5 m(4);
Dthreadprivate_codegen.cpp100 struct S5 { struct
102 S5() in S5() argument
105 S5(int a) in S5() argument
108 S5(const S5 &s) { in S5() argument
111 ~S5() { in ~S5() argument
297 extern S5 gs3;
Dparallel_sections_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} in S5() function in S5
36S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} in operator =()
39 S5(int v) : a(v) {} in S5() function in S5
50 S5 m(4);
Dparallel_for_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} in S5() function in S5
36S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} in operator =()
39 S5(int v) : a(v) {} in S5() function in S5
50 S5 m(4);
Dparallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
59 S5 g(5); in main()
Dparallel_for_simd_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} in S5() function in S5
36S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}} in operator =()
39 S5(int v) : a(v) {} in S5() function in S5
50 S5 m(4);
Dparallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} in S5() function in S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} in S5() function in S5
44 S5(int v):a(v) { } in S5() function in S5
62 S5 g(5); in main()
Dtask_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} in S5() function in S5
42 S5(const S5 &s5) : a(s5.a) {} in S5() function in S5
45 S5(int v) : a(v) {} in S5() function in S5
63 S5 g(5); in main()
Dparallel_sections_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} in S5() function in S5
42 S5(const S5 &s5) : a(s5.a) {} in S5() function in S5
45 S5(int v) : a(v) {} in S5() function in S5
63 S5 g(5); in main()
Dtarget_parallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
59 S5 g(5); in main()
Dtask_firstprivate_messages.cpp53 class S5 { class
55 S5() : a(0) {} in S5() function in S5
56 S5(const S5 &s5) : a(s5.a) {} // expected-note 2 {{implicitly declared private here}} in S5() function in S5
59 S5(int v) : a(v) {} in S5() function in S5
82 S5 g(5); in main()
Dtarget_parallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} in S5() function in S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} in S5() function in S5
44 S5(int v):a(v) { } in S5() function in S5
62 S5 g(5); in main()
Dteams_firstprivate_messages.cpp41 class S5 { class
43 S5() : a(0) {} in S5() function in S5
44 S5(const S5 &s5) : a(s5.a) {} // expected-note {{implicitly declared private here}} in S5() function in S5
46 S5(int v) : a(v) {} in S5() function in S5
64 S5 g(5); in main()
Dteams_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
59 S5 g(5); in main()
Dtarget_data_use_device_ptr_ast_print.cpp87 class S5 { class
89 S5():a(0) {} in S5() function in S5
90 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
92 S5(int v):a(v) { } in S5() function in S5
Dtarget_is_device_ptr_messages.cpp116 class S5 { class
118 S5():a(0) {} in S5() function in S5
119 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
121 S5(int v):a(v) { } in S5() function in S5
136 S5 g(5); in tmain()
188 S5 g(5); in main()
/external/clang/test/SemaCXX/
Dwarn-dangling-field.cpp39 struct S5 { struct
42 S5 s5 = { 0 }; // ok, lifetime-extended argument
45 S5 s5; // expected-note {{here}}
49 struct S7 : S5 {
50 S7() : S5 { 0 } {} // expected-warning {{binding reference member 'x' to a temporary}} in S7()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DStringSwitch.h118 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
120 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
125 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
127 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
132 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
134 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
139 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, S8, Value); in Cases()
147 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases() argument
150 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, S8, S9, Value); in Cases()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Dmapped_intrinsics.ll67 ; CHECK: ISEL: Starting selection on{{.*}}llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax
71 %v0 = tail call i32 @llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax(i64 %a0, i32 0)
76 declare i32 @llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax(i64, i32) #1
79 ; CHECK: ISEL: Starting selection on{{.*}}llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax
83 %v0 = tail call i32 @llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax(i64 %a0, i32 9)
89 ; CHECK: ISEL: Starting selection on{{.*}}llvm.hexagon.S5.vasrhrnd.goodsyntax
94 %v1 = tail call i64 @llvm.hexagon.S5.vasrhrnd.goodsyntax(i64 %a0, i32 0)
99 declare i64 @llvm.hexagon.S5.vasrhrnd.goodsyntax(i64, i32) #1
102 ; CHECK: ISEL: Starting selection on{{.*}}llvm.hexagon.S5.vasrhrnd.goodsyntax
107 %v1 = tail call i64 @llvm.hexagon.S5.vasrhrnd.goodsyntax(i64 %a0, i32 9)
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h140 const char (&S4)[N4], const char (&S5)[N5], in Cases()
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
150 const char (&S4)[N4], const char (&S5)[N5], in Cases()
152 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
160 const char (&S4)[N4], const char (&S5)[N5], in Cases()
163 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
171 const char (&S4)[N4], const char (&S5)[N5], in Cases()
174 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, S8, Value); in Cases()
182 const char (&S4)[N4], const char (&S5)[N5], in Cases()
186 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, S8, S9, Value); in Cases()
/external/fec/
Dsumsq_sse2_assist.s24 movaps (%esi),%xmm0 # S0 S1 S2 S3 S4 S5 S6 S7
25 pmaddwd %xmm0,%xmm0 # (S0*S0+S1*S1) (S2*S2+S3*S3) (S4*S4+S5*S5) (S6*S6+S7*S7)
27 pand %xmm3,%xmm1 # (S0*S0+S1*S1) 0 (S4*S4+S5*S5) 0
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/
Dtest64.ll2 …opt < %s -asan -asan-module -asan-mapping-scale=5 -S | FileCheck --check-prefixes=CHECK,CHECK-S5 %s
13 ; CHECK-S5: lshr {{.*}} 5
16 ; CHECK-S5-NEXT: add{{.*}}2147352576
27 ; CHECK-S5: lshr {{.*}} 5
41 ; CHECK-S5: lshr {{.*}} 5

12345678910>>...17