Home
last modified time | relevance | path

Searched refs:arr_type (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/stl_interfaces/test/
Darray.cpp62 using arr_type = array<int, 5>; typedef
67 arr_type sm; in test_comparisons()
73 arr_type md; in test_comparisons()
79 arr_type lg; in test_comparisons()
157 arr_type v1; in test_swap()
163 arr_type v2; in test_swap()
170 arr_type const v1_copy = v1; in test_swap()
171 arr_type const v2_copy = v2; in test_swap()
183 arr_type v1; in test_swap()
189 arr_type v2; in test_swap()
[all …]
/third_party/boost/libs/lexical_cast/test/
Dlexical_cast_arrays_test.cpp49 typedef ArrayT<char, 300> arr_type; in testing_template_array_output_on_spec_value() typedef
60 arr_type res1 = lexical_cast<arr_type>(val); in testing_template_array_output_on_spec_value()
62 const arr_type res2 = lexical_cast<arr_type>(val); in testing_template_array_output_on_spec_value()
143 typedef ArrayT<char, 300> arr_type; in testing_template_array_output_on_char_value() typedef
155 arr_type res1 = lexical_cast<arr_type>(val); in testing_template_array_output_on_char_value()
157 const arr_type res2 = lexical_cast<arr_type>(val); in testing_template_array_output_on_char_value()
/third_party/toybox/toys/pending/
Dfsck.c41 char **arr_type;
127 TT.arr_type = xzalloc((n + 1) * sizeof(char *)); in fix_tlist()
144 TT.arr_type[n++] = p; in fix_tlist()
169 if (TT.arr_type) { in to_be_ignored()
170 for (i = 0; TT.arr_type[i]; i++) { in to_be_ignored()
173 if (!strcmp(TT.arr_type[i], finfo->type)) ret = 0; in to_be_ignored()
176 if (hasmntopt((const struct mntent *)finfo, TT.arr_type[i])) return 1; in to_be_ignored()
178 if (!hasmntopt((const struct mntent *)finfo, TT.arr_type[i])) return 1; in to_be_ignored()
183 if (TT.arr_type && type_present != 2) return 0; in to_be_ignored()
199 && !TT.arr_type[1]) type = TT.t_list; //one file sys at cmdline in do_fsck()
[all …]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_impl_convert_type_test.cc370 auto* arr_type = type->UnwrapAll()->As<Array>(); in TEST_F() local
371 ASSERT_NE(arr_type, nullptr); in TEST_F()
372 EXPECT_EQ(arr_type->size, 0u); in TEST_F()
373 EXPECT_EQ(arr_type->stride, 0u); in TEST_F()
374 auto* elem_type = arr_type->type; in TEST_F()
403 auto* arr_type = type->UnwrapAll()->As<Array>(); in TEST_F() local
404 EXPECT_EQ(arr_type->size, 0u); in TEST_F()
405 ASSERT_NE(arr_type, nullptr); in TEST_F()
406 EXPECT_EQ(arr_type->stride, 64u); in TEST_F()
448 auto* arr_type = type->As<Array>(); in TEST_F() local
[all …]
/third_party/boost/libs/test/test/test-organization-ts/datasets-test/
Darray-test.cpp33 typedef bool (arr_type)[3]; in BOOST_AUTO_TEST_CASE() typedef
34 arr_type const& arr3_ref = arr3; in BOOST_AUTO_TEST_CASE()
/third_party/mesa3d/src/compiler/nir/
Dnir_deref.c248 const struct glsl_type *arr_type = nir_deref_instr_parent(deref)->type; in nir_deref_instr_array_stride() local
249 unsigned stride = glsl_get_explicit_stride(arr_type); in nir_deref_instr_array_stride()
251 if ((glsl_type_is_matrix(arr_type) && in nir_deref_instr_array_stride()
252 glsl_matrix_type_is_row_major(arr_type)) || in nir_deref_instr_array_stride()
253 (glsl_type_is_vector(arr_type) && stride == 0)) in nir_deref_instr_array_stride()
254 stride = type_scalar_size_bytes(arr_type); in nir_deref_instr_array_stride()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_nir.h277 LLVMTypeRef arr_type = LLVMArrayType(LLVMTypeOf(values[0]), value_count); in lp_nir_array_build_gather_values() local
278 LLVMValueRef arr = LLVMGetUndef(arr_type); in lp_nir_array_build_gather_values()
/third_party/skia/third_party/externals/tint/src/resolver/
Dresolver.h287 const sem::Array* arr_type);
Dresolver.cc1409 } else if (auto* arr_type = target->As<sem::Array>()) { in TypeConversion() local
1410 ok = ValidateArrayConstructorOrCast(expr, arr_type); in TypeConversion()
1465 } else if (auto* arr_type = ty->As<sem::Array>()) { in TypeConstructor() local
1466 ok = ValidateArrayConstructorOrCast(expr, arr_type); in TypeConstructor()
/third_party/toybox/generated/
Dglobals.h624 char **arr_type; member