Home
last modified time | relevance | path

Searched refs:vec_type (Results 1 - 25 of 63) sorted by relevance

123

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.c138 lp_check_vec_type(struct lp_type type, LLVMTypeRef vec_type) in lp_check_vec_type() argument
140 assert(vec_type); in lp_check_vec_type()
141 if (!vec_type) in lp_check_vec_type()
145 return lp_check_elem_type(type, vec_type); in lp_check_vec_type()
147 if (LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind) { in lp_check_vec_type()
152 if (LLVMGetVectorSize(vec_type) != type.length) { in lp_check_vec_type()
154 LLVMGetVectorSize(vec_type), type.length); in lp_check_vec_type()
158 LLVMTypeRef elem_type = LLVMGetElementType(vec_type); in lp_check_vec_type()
171 LLVMTypeRef vec_type = LLVMTypeOf(val); in lp_check_value()
173 return lp_check_vec_type(type, vec_type); in lp_check_value()
[all...]
H A Dlp_bld_format_float.c99 i32_src = LLVMBuildBitCast(builder, src, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
108 rescale_src = LLVMBuildBitCast(builder, rescale_src, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
121 rescale_src = LLVMBuildBitCast(builder, rescale_src, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
123 rescale_src = LLVMBuildBitCast(builder, rescale_src, f32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
132 magic = LLVMBuildBitCast(builder, magic, f32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
139 small_max = LLVMBuildBitCast(builder, small_max, f32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
141 normal = LLVMBuildBitCast(builder, normal, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
155 src_abs = LLVMBuildBitCast(builder, src_abs, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
188 rescale_src = LLVMBuildBitCast(builder, rescale_src, i32_bld.vec_type, ""); in lp_build_float_to_smallfloat()
328 srcabs = LLVMBuildBitCast(builder, srcabs, f32_bld.vec_type, ""); in lp_build_smallfloat_to_float()
[all...]
H A Dlp_bld_bitarit.c59 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_or()
85 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_xor()
113 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_and()
143 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_andnot()
164 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_not()
251 lp_format_intrinsic(intr_str, sizeof(intr_str), "llvm.ctpop", bld->vec_type); in lp_build_popcount()
252 result = lp_build_intrinsic_unary(builder, intr_str, bld->vec_type, a); in lp_build_popcount()
263 lp_format_intrinsic(intr_str, sizeof(intr_str), "llvm.bitreverse", bld->vec_type); in lp_build_bitfield_reverse()
264 result = lp_build_intrinsic_unary(builder, intr_str, bld->vec_type, a); in lp_build_bitfield_reverse()
275 lp_format_intrinsic(intr_str, sizeof(intr_str), "llvm.cttz", bld->vec_type); in lp_build_cttz()
[all...]
H A Dlp_bld_arit.c433 lp_format_intrinsic(intrin, sizeof intrin, intrinsic, bld->vec_type); in lp_build_add()
434 return lp_build_intrinsic_binary(builder, intrin, bld->vec_type, a, b); in lp_build_add()
759 lp_format_intrinsic(intrin, sizeof intrin, intrinsic, bld->vec_type); in lp_build_sub()
760 return lp_build_intrinsic_binary(builder, intrin, bld->vec_type, a, b); in lp_build_sub()
1109 muleven = LLVMBuildBitCast(builder, muleven, bld->vec_type, ""); in lp_build_mul_32_lohi_cpu()
1110 mulodd = LLVMBuildBitCast(builder, mulodd, bld->vec_type, ""); in lp_build_mul_32_lohi_cpu()
1342 res = lp_build_intrinsic_binary(builder, "llvm.x86.ssse3.pmul.hr.sw.128", bld->vec_type, x, lp_build_shl_imm(bld, delta, 7)); in lp_build_lerp_simple()
1345 res = lp_build_intrinsic_binary(builder, "llvm.x86.avx2.pmul.hr.sw", bld->vec_type, x, lp_build_shl_imm(bld, delta, 7)); in lp_build_lerp_simple()
1379 res = LLVMBuildBitCast(builder, res, narrow_bld.vec_type, ""); in lp_build_lerp_simple()
1380 v0 = LLVMBuildBitCast(builder, v0, narrow_bld.vec_type, ""); in lp_build_lerp_simple()
1694 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_abs() local
1768 LLVMTypeRef vec_type; lp_build_sgn() local
1816 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_set_sign() local
1849 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_int_to_float() local
1905 LLVMTypeRef vec_type; lp_build_iround_nearest_sse2() local
2048 LLVMTypeRef vec_type = bld->vec_type; lp_build_trunc() local
2107 LLVMTypeRef vec_type = bld->vec_type; lp_build_round() local
2158 LLVMTypeRef vec_type = bld->vec_type; lp_build_floor() local
2233 LLVMTypeRef vec_type = bld->vec_type; lp_build_ceil() local
2374 LLVMTypeRef vec_type = bld->vec_type; lp_build_iround() local
2570 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_sqrt() local
3031 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_sin() local
3053 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_cos() local
3236 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_exp2() local
3415 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); lp_build_log2_approx() local
[all...]
H A Dlp_bld_nir.c66 return LLVMBuildBitCast(builder, val, bld_base->half_bld.vec_type, ""); in cast_type()
68 return LLVMBuildBitCast(builder, val, bld_base->base.vec_type, ""); in cast_type()
70 return LLVMBuildBitCast(builder, val, bld_base->dbl_bld.vec_type, ""); in cast_type()
79 return LLVMBuildBitCast(builder, val, bld_base->int8_bld.vec_type, ""); in cast_type()
81 return LLVMBuildBitCast(builder, val, bld_base->int16_bld.vec_type, ""); in cast_type()
83 return LLVMBuildBitCast(builder, val, bld_base->int_bld.vec_type, ""); in cast_type()
85 return LLVMBuildBitCast(builder, val, bld_base->int64_bld.vec_type, ""); in cast_type()
94 return LLVMBuildBitCast(builder, val, bld_base->uint8_bld.vec_type, ""); in cast_type()
96 return LLVMBuildBitCast(builder, val, bld_base->uint16_bld.vec_type, ""); in cast_type()
99 return LLVMBuildBitCast(builder, val, bld_base->uint_bld.vec_type, ""); in cast_type()
2472 LLVMTypeRef vec_type = NULL; visit_tex() local
[all...]
H A Dlp_bld_format_s3tc.c477 bld8->vec_type, intrargs, 2, 0); in lp_build_pavgb()
497 res = LLVMBuildTrunc(builder, res, bld8->vec_type, ""); in lp_build_pavgb()
625 colors0 = LLVMBuildBitCast(builder, color0, bld8.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
626 colors1 = LLVMBuildBitCast(builder, color1, bld8.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
629 color2 = LLVMBuildBitCast(builder, color2, bld32.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
630 color3 = LLVMBuildBitCast(builder, color3, bld32.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
648 color2_2 = LLVMBuildBitCast(builder, color2_2, bld32.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
675 color2_2 = LLVMBuildBitCast(builder, color2_2, bld32.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
731 return LLVMBuildBitCast(builder, rgba, bld8.vec_type, ""); in s3tc_dxt1_full_to_rgba_aos()
790 rgba = LLVMBuildBitCast(builder, rgba, bld.vec_type, ""); in s3tc_dxt3_to_rgba_aos()
[all...]
H A Dlp_bld_const.c224 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); in lp_build_undef() local
225 return LLVMGetUndef(vec_type); in lp_build_undef()
238 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); in lp_build_zero() local
239 return LLVMConstNull(vec_type); in lp_build_zero()
267 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); in lp_build_one() local
268 LLVMValueRef vec = LLVMConstAllOnes(vec_type); in lp_build_one()
H A Dlp_bld_sample_soa.c974 weight = LLVMBuildBitCast(builder, weight, bld->vec_type, ""); in lp_build_masklerp()
975 weight2 = LLVMBuildBitCast(builder, weight2, bld->vec_type, ""); in lp_build_masklerp()
1190 xs[texel_index] = lp_build_alloca(bld->gallivm, ivec_bld->vec_type, "xs"); in lp_build_sample_image_linear()
1191 ys[texel_index] = lp_build_alloca(bld->gallivm, ivec_bld->vec_type, "ys"); in lp_build_sample_image_linear()
1192 zs[texel_index] = lp_build_alloca(bld->gallivm, ivec_bld->vec_type, "zs"); in lp_build_sample_image_linear()
1305 LLVMTypeRef type = ivec_bld->vec_type; in lp_build_sample_image_linear()
1410 colorss[0] = lp_build_alloca(bld->gallivm, coord_bld->vec_type, "cs0"); in lp_build_sample_image_linear()
1411 colorss[1] = lp_build_alloca(bld->gallivm, coord_bld->vec_type, "cs1"); in lp_build_sample_image_linear()
1412 colorss[2] = lp_build_alloca(bld->gallivm, coord_bld->vec_type, "cs2"); in lp_build_sample_image_linear()
1413 colorss[3] = lp_build_alloca(bld->gallivm, coord_bld->vec_type, "cs in lp_build_sample_image_linear()
[all...]
H A Dlp_bld_nir_soa.c134 return LLVMBuildBitCast(builder, res, bld_base->dbl_bld.vec_type, ""); in emit_fetch_64bit()
294 res = LLVMBuildBitCast(builder, res, bld_base->dbl_bld.vec_type, ""); in build_gather()
568 dst = LLVMBuildBitCast(builder, dst, float_bld->vec_type, ""); in emit_store_chan()
629 chan_val = LLVMBuildBitCast(builder, chan_val, bld_base->base.vec_type, ""); in emit_store_tcs_chan()
745 dst[i] = LLVMBuildBitCast(builder, dst[i], reg_bld->vec_type, ""); in emit_store_reg()
754 dst[i] = LLVMBuildBitCast(builder, dst[i], reg_bld->vec_type, ""); in emit_store_reg()
849 LLVMValueRef result = lp_build_alloca(gallivm, res_bld->vec_type, ""); in emit_load_global()
865 temp_res = LLVMBuildLoad2(builder, res_bld->vec_type, result, ""); in emit_load_global()
871 outval[c] = LLVMBuildLoad2(builder, res_bld->vec_type, result, ""); in emit_load_global()
1015 bool is_float = LLVMTypeOf(val) == bld_base->base.vec_type; in emit_atomic_global()
2052 LLVMTypeRef vec_type = bld->bld_base.base.vec_type; emit_prologue() local
[all...]
H A Dlp_bld_swizzle.c49 LLVMTypeRef vec_type, in lp_build_broadcast()
54 if (LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind) { in lp_build_broadcast()
56 assert(vec_type == LLVMTypeOf(scalar)); in lp_build_broadcast()
60 const unsigned length = LLVMGetVectorSize(vec_type); in lp_build_broadcast()
61 LLVMValueRef undef = LLVMGetUndef(vec_type); in lp_build_broadcast()
66 assert(LLVMGetElementType(vec_type) == LLVMTypeOf(scalar)); in lp_build_broadcast()
85 return lp_build_broadcast(bld->gallivm, bld->vec_type, scalar); in lp_build_broadcast_scalar()
48 lp_build_broadcast(struct gallivm_state *gallivm, LLVMTypeRef vec_type, LLVMValueRef scalar) lp_build_broadcast() argument
H A Dlp_bld_tgsi_aos.c209 LLVMTypeRef vec_type = lp_build_vec_type(bld->bld_base.base.gallivm, bld->bld_base.base.type); in emit_fetch_temporary() local
210 LLVMValueRef res = LLVMBuildLoad2(builder, vec_type, temp_ptr, ""); in emit_fetch_temporary()
290 LLVMTypeRef vec_type = lp_build_vec_type(bld->bld_base.base.gallivm, bld->bld_base.base.type); in lp_emit_store_aos() local
291 orig_value = LLVMBuildLoad2(builder, vec_type, ptr, ""); in lp_emit_store_aos()
377 LLVMTypeRef vec_type = lp_build_vec_type(bld->bld_base.base.gallivm, bld->bld_base.base.type); in lp_emit_declaration_aos() local
390 vec_type, array_size, ""); in lp_emit_declaration_aos()
392 bld->temps[idx] = lp_build_alloca(gallivm, vec_type, ""); in lp_emit_declaration_aos()
397 bld->outputs[idx] = lp_build_alloca(gallivm, vec_type, ""); in lp_emit_declaration_aos()
402 bld->addr[idx] = lp_build_alloca(gallivm, vec_type, ""); in lp_emit_declaration_aos()
H A Dlp_bld_tgsi_soa.c609 res = LLVMBuildBitCast(builder, res, bld_base->dbl_bld.vec_type, ""); in build_gather()
703 rel = LLVMBuildBitCast(builder, rel, uint_bld->vec_type, ""); in get_indirect_index()
914 res = LLVMBuildBitCast(builder, res, bld_fetch->vec_type, ""); in emit_fetch_constant()
950 return LLVMBuildBitCast(builder, res, bld_fetch->vec_type, ""); in emit_fetch_64bit()
1028 res = LLVMBuildBitCast(builder, res, bld_fetch->vec_type, ""); in emit_fetch_immediate()
1107 res = LLVMBuildBitCast(builder, res, bld_fetch->vec_type, ""); in emit_fetch_input()
1137 res = LLVMBuildBitCast(builder, res, bld_base->base.vec_type, ""); in emit_fetch_gs_input()
1194 res = LLVMBuildBitCast(builder, res, bld_base->uint_bld.vec_type, ""); in emit_fetch_gs_input()
1196 res = LLVMBuildBitCast(builder, res, bld_base->int_bld.vec_type, ""); in emit_fetch_gs_input()
1225 res = LLVMBuildBitCast(builder, res, bld_base->base.vec_type, ""); in emit_fetch_tcs_input()
2895 LLVMTypeRef vec_type = bld->bld_base.base.vec_type; lp_emit_declaration_soa() local
4305 LLVMTypeRef vec_type = bld_base->base.vec_type; emit_prologue() local
[all...]
H A Dlp_bld_logic.c288 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); in lp_build_select_bitwise() local
289 res = LLVMBuildBitCast(builder, res, vec_type, ""); in lp_build_select_bitwise()
407 if (arg_type != bld->vec_type) { in lp_build_select()
419 if (arg_type != bld->vec_type) { in lp_build_select()
420 res = LLVMBuildBitCast(builder, res, bld->vec_type, ""); in lp_build_select()
H A Dlp_bld_tgsi_action.c110 bld_base->uint_bld.vec_type, ""); in arr_emit()
712 bld_base->base.vec_type, ""); in u2f_emit()
846 bld_base->base.vec_type, ""); in d2f_emit()
885 bld_base->dbl_bld.vec_type, ""); in f2d_emit()
898 bld_base->dbl_bld.vec_type, ""); in u2d_emit()
911 bld_base->dbl_bld.vec_type, ""); in i2d_emit()
1072 bld_base->uint64_bld.vec_type, ""); in f2u64_emit()
1084 bld_base->int64_bld.vec_type, ""); in f2i64_emit()
1096 bld_base->uint64_bld.vec_type, ""); in u2i64_emit()
1108 bld_base->int64_bld.vec_type, ""); in i2i64_emit()
[all...]
H A Dlp_bld_format_soa.c172 input = LLVMBuildUIToFP(builder, input, bld->vec_type, ""); in lp_build_extract_soa_chan()
206 input = LLVMBuildSIToFP(builder, input, bld->vec_type, ""); in lp_build_extract_soa_chan()
246 input = LLVMBuildBitCast(builder, input, bld->vec_type, ""); in lp_build_extract_soa_chan()
259 input = LLVMBuildSIToFP(builder, input, bld->vec_type, ""); in lp_build_extract_soa_chan()
619 packed[i] = LLVMBuildFPTrunc(builder, packed[i], bld.vec_type, ""); in lp_build_fetch_rgba_soa()
909 chan = LLVMBuildFPToSI(builder, rgba, bld->vec_type, ""); in lp_build_insert_soa_chan()
938 lp_format_intrinsic(intrin, sizeof intrin, "llvm.rint", bld->vec_type); in lp_build_insert_soa_chan()
939 rgba = lp_build_intrinsic_unary(builder, intrin, bld->vec_type, rgba); in lp_build_insert_soa_chan()
H A Dlp_bld_type.h154 LLVMTypeRef vec_type; member
356 lp_check_vec_type(struct lp_type type, LLVMTypeRef vec_type);
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dtype_manager.h164 Vector vec_type(GetUIntType(), size); in GetUIntVectorType()
165 return GetRegisteredType(&vec_type); in GetUIntVectorType()
173 Vector vec_type(GetSIntType(), size); in GetSIntVectorType()
174 return GetRegisteredType(&vec_type); in GetSIntVectorType()
182 Vector vec_type(GetFloatType(), size); in GetFloatVectorType()
183 return GetRegisteredType(&vec_type); in GetFloatVectorType()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dtype_manager.h171 Vector vec_type(GetUIntType(), size); in GetUIntVectorType()
172 return GetRegisteredType(&vec_type); in GetUIntVectorType()
180 Vector vec_type(GetSIntType(), size); in GetSIntVectorType()
181 return GetRegisteredType(&vec_type); in GetSIntVectorType()
189 Vector vec_type(GetFloatType(), size); in GetFloatVectorType()
190 return GetRegisteredType(&vec_type); in GetFloatVectorType()
/third_party/spirv-tools/source/opt/
H A Dtype_manager.h175 Vector vec_type(GetUIntType(), size); in GetUIntVectorType()
176 return GetRegisteredType(&vec_type); in GetUIntVectorType()
184 Vector vec_type(GetSIntType(), size); in GetSIntVectorType()
185 return GetRegisteredType(&vec_type); in GetSIntVectorType()
193 Vector vec_type(GetFloatType(), size); in GetFloatVectorType()
194 return GetRegisteredType(&vec_type); in GetFloatVectorType()
H A Dliveness.cpp110 auto vec_type = type->AsVector(); in GetLocSize() local
111 if (vec_type) { in GetLocSize()
112 auto comp_type = vec_type->element_type(); in GetLocSize()
119 auto comp_cnt = vec_type->element_count(); in GetLocSize()
134 auto vec_type = agg_type->AsVector(); in GetComponentType()
135 assert(vec_type && "unexpected non-aggregate type"); in GetComponentType()
136 return vec_type->element_type(); in GetComponentType()
156 auto vec_type = agg_type->AsVector(); in GetLocOffset()
157 assert(vec_type && "unexpected non-aggregate type"); in GetLocOffset()
158 auto comp_type = vec_type in GetLocOffset()
[all...]
/third_party/skia/third_party/externals/tint/src/transform/
H A Dvectorize_scalar_matrix_constructors_test.cc35 std::string vec_type = "vec" + std::to_string(rows) + "<f32>"; in TEST_P() local
43 vector_values += vec_type + "("; in TEST_P()
76 std::string vec_type = "vec" + std::to_string(rows) + "<f32>"; in TEST_P() local
82 columns += vec_type + "()"; in TEST_P()
/third_party/mesa3d/src/compiler/
H A Dglsl_types.cpp2063 const struct glsl_type *vec_type, *array_type; in std140_base_alignment() local
2068 vec_type = get_instance(base_type, c, 1); in std140_base_alignment()
2069 array_type = glsl_type::get_array_instance(vec_type, r); in std140_base_alignment()
2071 vec_type = get_instance(base_type, r, 1); in std140_base_alignment()
2072 array_type = glsl_type::get_array_instance(vec_type, c); in std140_base_alignment()
2153 const struct glsl_type *vec_type; in std140_size() local
2165 vec_type = get_instance(element_type->base_type, in std140_size()
2170 vec_type = get_instance(element_type->base_type, in std140_size()
2174 const glsl_type *array_type = glsl_type::get_array_instance(vec_type, in std140_size()
2261 const glsl_type *vec_type; in get_explicit_std140_type() local
2388 const struct glsl_type *vec_type, *array_type; std430_base_alignment() local
2546 const struct glsl_type *vec_type; std430_size() local
2621 const glsl_type *vec_type; get_explicit_std430_type() local
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_fs_linear_llvm.c110 assert(LLVMTypeOf(texel) == bld->vec_type); in emit_fetch_texel_linear()
156 assert(LLVMTypeOf(inputs[i]) == bld->vec_type); in llvm_fragment_body()
203 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, fs_type); in llvm_fragment_body() local
204 LLVMValueRef broadcast_alpha = lp_build_broadcast(gallivm, vec_type, in llvm_fragment_body()
349 LLVMPointerType(bld.vec_type, 0), ""); in llvmpipe_fs_variant_linear_llvm()
497 buf = LLVMBuildBitCast(builder, buf, bld.vec_type, ""); in llvmpipe_fs_variant_linear_llvm()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dtype_constructor_validation_test.cc1774 auto* vec_type = ty.vec(ty.Of(f32_alias), 2); in TEST_F() local
1776 Construct(Source{{12, 34}}, vec_type, 1.0f, Expr(Source{{12, 40}}, 1u)); in TEST_F()
1790 auto* vec_type = ty.vec(ty.Of(f32_alias), 2); in TEST_F() local
1791 auto* tc = Construct(Source{{12, 34}}, vec_type, 1.0f, 1.0f); in TEST_F()
1802 auto* vec_type = ty.vec(ty.Of(f32_alias), 2); in TEST_F() local
1803 auto* tc = vec3<u32>(Construct(Source{{12, 34}}, vec_type), 1.0f); in TEST_F()
1817 auto* vec_type = ty.vec(ty.Of(f32_alias), 2); in TEST_F() local
1818 auto* tc = vec3<f32>(Construct(Source{{12, 34}}, vec_type), 1.0f); in TEST_F()
1846 auto* vec_type = ty.vec<f32>(param.rows); in TEST_P() local
1847 args.push_back(Construct(Source{{12, i}}, vec_type)); in TEST_P()
1887 auto* vec_type = ty.vec<f32>(param.rows); TEST_P() local
1929 auto* vec_type = ty.vec<u32>(param.rows); TEST_P() local
2042 auto* vec_type = ty.vec<f32>(param.rows); TEST_P() local
2078 auto* vec_type = ty.vec(ty.u32(), param.rows); TEST_P() local
2100 auto* vec_type = ty.vec<f32>(param.rows); TEST_P() local
2132 auto* vec_type = ty.vec<f32>(param.rows); TEST_P() local
2153 auto* vec_type = ty.vec(ty.Of(f32_alias), param.rows); TEST_P() local
2173 auto* vec_type = ty.vec(ty.Of(f32_alias), param.rows); TEST_P() local
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Danon_enum_trait.hpp9 typedef value_type vec_type; typedef in DataType

Completed in 42 milliseconds

123