Home
last modified time | relevance | path

Searched refs:S1 (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/tint/test/struct/
Dtype_constructor.wgsl.expected.glsl4 struct S1 {
12 S1 f;
16 S1 h;
26 S1 empty = S1(0, 0, 0, 0);
27 S1 nonempty = S1(1, 2, 3, 4);
28 S1 nonempty_with_expr = S1(1, x, (x + 1), nonempty.d);
29 S3 nested_empty = S3(0, S1(0, 0, 0, 0), S2(0, S1(0, 0, 0, 0)));
30 S1 tint_symbol_1 = S1(2, 3, 4, 5);
31 S1 tint_symbol_2 = S1(7, 8, 9, 10);
34 S1 tint_symbol_4 = S1(2, x, (x + 1), nested_nonempty.i.f.d);
[all …]
Dtype_constructor.wgsl.expected.wgsl1 struct S1 {
10 f : S1;
15 h : S1;
26 let empty : S1 = S1();
27 let nonempty : S1 = S1(1, 2, 3, 4);
28 let nonempty_with_expr : S1 = S1(1, x, (x + 1), nonempty.d);
30 let nested_nonempty : S3 = S3(1, S1(2, 3, 4, 5), S2(6, S1(7, 8, 9, 10)));
31 …let nested_nonempty_with_expr : S3 = S3(1, S1(2, x, (x + 1), nested_nonempty.i.f.d), S2(6, nonempt…
32 let subexpr_empty : i32 = S1().a;
33 let subexpr_nonempty : i32 = S1(1, 2, 3, 4).b;
[all …]
Dtype_constructor.wgsl.expected.spvasm11 OpName %S1 "S1"
12 OpMemberName %S1 0 "a"
13 OpMemberName %S1 1 "b"
14 OpMemberName %S1 2 "c"
15 OpMemberName %S1 3 "d"
25 OpMemberDecorate %S1 0 Offset 0
26 OpMemberDecorate %S1 1 Offset 4
27 OpMemberDecorate %S1 2 Offset 8
28 OpMemberDecorate %S1 3 Offset 12
41 %S1 = OpTypeStruct %int %int %int %int
[all …]
Dtype_constructor.wgsl1 struct S1 {
10 f : S1;
15 h : S1;
28 let empty : S1 = S1();
29 let nonempty : S1 = S1(1, 2, 3, 4);
30 let nonempty_with_expr : S1 = S1(1, x, x + 1, nonempty.d);
34 let nested_nonempty : S3 = S3(1, S1(2, 3, 4, 5), S2(6, S1(7, 8, 9, 10)));
36 S3(1, S1(2, x, x + 1, nested_nonempty.i.f.d), S2(6, nonempty));
39 let subexpr_empty : i32 = S1().a;
40 let subexpr_nonempty : i32 = S1(1, 2, 3, 4).b;
[all …]
Dtype_constructor.wgsl.expected.hlsl1 struct S1 {
9 S1 f;
13 S1 h;
23 const S1 empty = (S1)0;
24 const S1 nonempty = {1, 2, 3, 4};
25 const S1 nonempty_with_expr = {1, x, (x + 1), nonempty.d};
27 const S1 tint_symbol = {2, 3, 4, 5};
28 const S1 tint_symbol_1 = {7, 8, 9, 10};
31 const S1 tint_symbol_3 = {2, x, (x + 1), nested_nonempty.i.f.d};
34 const S1 tint_symbol_5 = (S1)0;
[all …]
Dtype_constructor.wgsl.expected.msl4 struct S1 {
12 S1 f;
16 S1 h;
31 S1 const empty = {};
32 S1 const nonempty = {.a=1, .b=2, .c=3, .d=4};
33S1 const nonempty_with_expr = {.a=1, .b=x, .c=as_type<int>((as_type<uint>(x) + as_type<uint>(1))),…
35 S1 const tint_symbol_1 = {.a=2, .b=3, .c=4, .d=5};
36 S1 const tint_symbol_2 = {.a=7, .b=8, .c=9, .d=10};
39S1 const tint_symbol_4 = {.a=2, .b=x, .c=as_type<int>((as_type<uint>(x) + as_type<uint>(1))), .d=n…
42 S1 const tint_symbol_6 = {};
[all …]
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeSPARC_32.c30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate()
33 …return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst… in load_immediate()
47 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op()
55 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst)); in emit_single_op()
56 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op()
57 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op()
66 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op()
67 …return push_inst(compiler, (op == SLJIT_MOV_S16 ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst)… in emit_single_op()
74 …return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DRF(dst, flags)… in emit_single_op()
78 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS)); in emit_single_op()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringSwitch.h88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument
89 return Case(S0, Value).Case(S1, Value); in Cases()
92 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
94 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
97 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
102 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
107 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
[all …]
DSetOperations.h22 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument
27 if (S1.insert(*SI).second) in set_union()
39 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument
40 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { in set_intersect()
43 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect()
50 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument
52 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end(); in set_difference()
62 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument
65 S1.erase(*SI); in set_subtract()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h107 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
109 return Case(S0, Value).Case(S1, Value); in Cases()
114 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
116 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
121 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
124 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
129 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
138 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases()
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
[all …]
/third_party/openssl/crypto/sha/asm/
Dsha256-c64xplus.pl36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15)
127 || ROTL $E,26,$S1
141 || XOR $t0e,$S1,$S1
143 || XOR $t1e,$S1,$S1 ; Sigma1(e)
146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e)
164 || ROTL $E,26,$S1
180 || XOR $t0e,$S1,$S1
182 || XOR $t1e,$S1,$S1 ; Sigma1(e)
185 ADD $S1,$T1,$T1 ; T1 += Sigma1(e)
218 || ROTL $E,26,$S1
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DMergedLoadStoreMotion.cpp119 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
122 bool canSinkStoresAndGEPs(StoreInst *S0, StoreInst *S1) const;
211 StoreInst *S1) { in getPHIOperand() argument
214 Value *Opd2 = S1->getValueOperand(); in getPHIOperand()
220 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc()); in getPHIOperand()
222 NewPN->addIncoming(Opd2, S1->getParent()); in getPHIOperand()
230 StoreInst *S1) const { in canSinkStoresAndGEPs()
232 auto *A1 = dyn_cast<Instruction>(S1->getPointerOperand()); in canSinkStoresAndGEPs()
235 (A1->getParent() == S1->getParent()) && isa<GetElementPtrInst>(A0); in canSinkStoresAndGEPs()
244 StoreInst *S1) { in sinkStoresAndGEPs() argument
[all …]
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/
Darm_cfft_radix4_q15.c567 q15_t R0, R1, S0, S1, T0, T1, U0, U1; in arm_radix4_butterfly_q15()
612 S1 = pSrc16[(i2 * 2U) + 1U] >> 2U; in arm_radix4_butterfly_q15()
617 R1 = __SSAT(T1 + S1, 16U); in arm_radix4_butterfly_q15()
622 S1 = __SSAT(T1 - S1, 16); in arm_radix4_butterfly_q15()
683 R1 = (q15_t) __SSAT((q31_t) (S1 + T0), 16); in arm_radix4_butterfly_q15()
687 S1 = (q15_t) __SSAT(((q31_t) S1 - T0), 16U); in arm_radix4_butterfly_q15()
694 out1 = (q15_t) ((Si1 * S1 + Co1 * S0) >> 16); in arm_radix4_butterfly_q15()
696 out2 = (q15_t) ((-Si1 * S0 + Co1 * S1) >> 16); in arm_radix4_butterfly_q15()
768 S1 = pSrc16[(i2 * 2U) + 1U]; in arm_radix4_butterfly_q15()
772 R1 = __SSAT(T1 + S1, 16); in arm_radix4_butterfly_q15()
[all …]
/third_party/libabigail/tests/data/test-abicompat/
Dtest0-fn-changed-libapp-v0.cc19 struct S1 struct
23 S1() in S1() function
54 S1*
56 {return new S1;} in create_s1()
59 destroy(S1* s) in destroy()
67 fun1(S1*) in fun1() argument
Dtest0-fn-changed-libapp-v1.cc21 struct S1 struct
27 S1() in S1() function
68 S1*
70 {return new S1;} in create_s1()
73 destroy(S1* s) in destroy()
77 fun1(S1*) in fun1() argument
Dtest0-fn-changed-libapp.h5 struct S1;
17 S1*
21 destroy(S1*);
27 fun1(S1*);
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10SwizzlePattern.h3762 …{S0, S1, X0, Y0, X1, Y1, X2, …
3763 …{0, S0, S1, X0, Y0, X1, Y1, …
3764 …{0, 0, S0, S1, X0, Y0, X1, …
3765 …{0, 0, 0, S0, S1, X0, Y0, …
3766 …{0, 0, 0, 0, S0, S1, X0, …
3767 …{S0, S1, S2, X0, Y0, X1, Y1, …
3768 …{0, S0, S1, S2, X0, Y0, X1, …
3769 …{0, 0, S0, S1, S2, X0, Y0, …
3770 …{0, 0, 0, S0, S1, S2, X0, …
3771 …{0, 0, 0, 0, S0, S1, S2, …
[all …]
/third_party/libabigail/tests/data/test-diff-filter/
Dtest27-redundant-and-filtered-children-nodes-report-2.txt6 [C] 'function S0* bar(S1*, S2*)' has some indirect sub-type changes:
12 parameter 1 of type 'S1*' changed:
13 in pointed to type 'struct S1':
14 entity changed from 'struct S1' to compatible type 'typedef S1Renamed'
26 type of 'S1* m1' changed:
27 in pointed to type 'struct S1':
28 entity changed from 'struct S1' to compatible type 'typedef S1Renamed'
Dtest0-v0.cc46 class S1 : public B0S1 class
54 S1::member0() in member0()
58 foo(S0&, S1*) in foo() argument
62 bar(S1&) in bar() argument
/third_party/glslang/Test/baseResults/
Dspv.1.4.OpSelect.frag.out23 Name 75 "S1"
24 MemberName 75(S1) 0 "a"
25 MemberName 75(S1) 1 "b"
69 75(S1): TypeStruct 10(float) 18(int)
70 76: TypePointer Function 75(S1)
72 81: TypePointer Input 75(S1)
123 83: 75(S1) Load 82(in1)
124 85: 75(S1) Load 84(in2)
125 86: 75(S1) Select 80 83 85
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/comp/
Dtype-alias.comp9 struct S1
21 S1 s1s[];
34 vec4 overload(S1 s1)
43 S1 s1;
46 S1 param_1 = s1;
/third_party/openssl/crypto/poly1305/asm/
Dpoly1305-armv4.pl443 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("d$_",(0..9));
477 vdup.32 $S1,r2
503 vmlal.u32 $D0,$R4,${S1}[1]
622 vshl.u32 $S1,$R1,#2
625 vadd.i32 $S1,$S1,$R1
629 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]!
630 vst4.32 {${R0}[1],${R1}[1],${S1}[1],${R2}[1]},[$tbl1]!
644 vshl.u32 $S1,$D1#lo,#2 @ *5
652 vadd.i32 $S1,$S1,$D1#lo
657 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]!
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dissue-1076-unnamed-bitfield-alignment.rs96 pub struct S1 { struct
103 ::std::mem::size_of::<S1>(), in bindgen_test_layout_S1() argument
105 concat!("Size of: ", stringify!(S1)) in bindgen_test_layout_S1()
108 ::std::mem::align_of::<S1>(), in bindgen_test_layout_S1()
110 concat!("Alignment of ", stringify!(S1)) in bindgen_test_layout_S1()
113 impl S1 { implementation
/third_party/typescript/tests/baselines/reference/
DsuperAccess.errors.txt1 …(9,24): error TS2576: Property 'S1' does not exist on type 'MyBase'. Did you mean to access the st…
8 static S1: number = 5;
15 …var l3 = super.S1; // Expected => Error: Only public instance methods of the base class are acc…
17 !!! error TS2576: Property 'S1' does not exist on type 'MyBase'. Did you mean to access the static …
DsuperAccess.types5 static S1: number = 5;
6 >S1 : number
26 …var l3 = super.S1; // Expected => Error: Only public instance methods of the base class are acc…
28 >super.S1 : any
30 >S1 : any

12345678910>>...13