Searched refs:MyStruct (Results 1 – 5 of 5) sorted by relevance
/frameworks/compile/slang/tests/P_reduce_general_struct/ |
D | reduce_general_struct.rs | 5 typedef struct MyStruct { int f; } MyStruct; argument 9 static void inStructAccum(int *accum, MyStruct val) { } 15 static void outStructOut(MyStruct *out, const int *accum) { }
|
/frameworks/compile/slang/tests/P_reduce_general_inputs/ |
D | reduce_general_inputs.rs | 12 typedef struct MyStruct { float f; double d; } MyStruct; argument 138 static void my_half_MyStruct_0_accum(int *accum, half a, MyStruct b) { } 141 static void my_half_MyStruct_1_accum(int *accum, half a, MyStruct b, rs_kernel_context context) { } 264 static void my_half2_MyStruct_0_accum(int *accum, half2 a, MyStruct b) { } 267 static void my_half2_MyStruct_1_accum(int *accum, half2 a, MyStruct b, rs_kernel_context context) {… 390 static void my_half4_MyStruct_0_accum(int *accum, half4 a, MyStruct b) { } 393 static void my_half4_MyStruct_1_accum(int *accum, half4 a, MyStruct b, rs_kernel_context context) {… 516 static void my_float_MyStruct_0_accum(int *accum, float a, MyStruct b) { } 519 static void my_float_MyStruct_1_accum(int *accum, float a, MyStruct b, rs_kernel_context context) {… 642 static void my_float2_MyStruct_0_accum(int *accum, float2 a, MyStruct b) { } [all …]
|
/frameworks/compile/slang/tests/P_reduce_general_result/ |
D | reduce_general_result.rs | 11 typedef struct MyStruct { float f; double d; } MyStruct; struct 320 static void my_MyStruct_accum(MyStruct *accum, MyStruct val) { } 321 static void my_MyStruct_comb(MyStruct *accum, const MyStruct *other) { } constant 324 typedef MyStruct array_MyStruct[7]; 325 static void my_array_MyStruct_accum(array_MyStruct *accum, MyStruct val) { }
|
/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
D | reduce_general_accumulator.rs | 21 typedef struct { float f; double d; char *c; } MyStruct; 27 typedef struct { MyEnum e1, e2; MyPtrIncomplete p; MyStruct s; MyUnion u; } MyBlob; 547 static void my_MyStruct_accum(MyStruct *accum, int val) { } 548 static void my_MyStruct_comb(MyStruct *accum, const MyStruct *other) { } constant 549 static void my_MyStruct_out(int *out, const MyStruct *accum) { } constant 552 typedef MyStruct array_MyStruct[7];
|
/frameworks/compile/slang/tests/P_reduce_general_input/ |
D | reduce_general_input.rs | 12 typedef struct MyStruct { float f; double d; } MyStruct; struct 1794 static void my_MyStruct_0_accum(int *accum, MyStruct in) { } 1797 static void my_MyStruct_1_accum(int *accum, MyStruct in, rs_kernel_context context) { } 1800 static void my_MyStruct_2_accum(int *accum, MyStruct in, uint x) { } 1803 static void my_MyStruct_3_accum(int *accum, MyStruct in, rs_kernel_context context, uint x) { } 1806 static void my_MyStruct_4_accum(int *accum, MyStruct in, uint y) { } 1809 static void my_MyStruct_5_accum(int *accum, MyStruct in, rs_kernel_context context, uint y) { } 1812 static void my_MyStruct_6_accum(int *accum, MyStruct in, uint x, uint y) { } 1815 static void my_MyStruct_7_accum(int *accum, MyStruct in, rs_kernel_context context, uint x, uint y)… 1818 static void my_MyStruct_8_accum(int *accum, MyStruct in, uint z) { } [all …]
|