Home
last modified time | relevance | path

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

/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/spirv-tools/source/opt/
Deliminate_dead_input_components_pass.cpp58 const analysis::Array* arr_type = ptr_type->pointee_type()->AsArray(); in Process() local
59 if (arr_type != nullptr) { in Process()
60 unsigned arr_len_id = arr_type->LengthId(); in Process()
/third_party/mesa3d/src/compiler/nir/
Dnir_deref.c258 const struct glsl_type *arr_type = nir_deref_instr_parent(deref)->type; in nir_deref_instr_array_stride() local
259 unsigned stride = glsl_get_explicit_stride(arr_type); in nir_deref_instr_array_stride()
261 if ((glsl_type_is_matrix(arr_type) && in nir_deref_instr_array_stride()
262 glsl_matrix_type_is_row_major(arr_type)) || in nir_deref_instr_array_stride()
263 (glsl_type_is_vector(arr_type) && stride == 0)) in nir_deref_instr_array_stride()
264 stride = type_scalar_size_bytes(arr_type); in nir_deref_instr_array_stride()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_nir.h327 LLVMTypeRef arr_type = LLVMArrayType(LLVMTypeOf(values[0]), value_count); in lp_nir_array_build_gather_values() local
328 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.h647 char **arr_type; member