/third_party/skia/third_party/externals/tint/test/unittest/reader/spirv/ |
D | SpvParserFunctionVarTest_EmitFunctionVariables_MemberDecorate_RelaxedPrecision.spvasm | 12 OpName %strct "strct" 13 OpMemberDecorate %strct 0 RelaxedPrecision 15 %strct = OpTypeStruct %float 16 %_ptr_Function_strct = OpTypePointer Function %strct
|
/third_party/mesa3d/src/intel/common/ |
D | intel_batch_decoder.c | 277 struct intel_group *strct = in dump_binding_table() local 279 if (strct == NULL) { in dump_binding_table() 316 uint32_t size = strct->dw_length * 4; in dump_binding_table() 325 ctx_print_group(ctx, strct, addr, bo.map + (addr - bo.addr)); in dump_binding_table() 332 struct intel_group *strct = intel_spec_find_struct(ctx->spec, "SAMPLER_STATE"); in dump_samplers() local 350 const unsigned sampler_state_size = strct->dw_length * 4; in dump_samplers() 360 ctx_print_group(ctx, strct, state_addr, state_map); in dump_samplers() 1085 struct intel_group *strct = in decode_vs_state() local 1087 if (strct == NULL) { in decode_vs_state() 1100 ctx_print_group(ctx, strct, offset, bind_bo.map); in decode_vs_state() [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_lower_vars_to_ssa.c | 170 assert(deref->strct.index < glsl_get_length(parent->type)); in get_deref_node_recur() 172 if (parent->children[deref->strct.index] == NULL) { in get_deref_node_recur() 173 parent->children[deref->strct.index] = in get_deref_node_recur() 178 return parent->children[deref->strct.index]; in get_deref_node_recur() 264 if (node->children[(*path)->strct.index]) { in foreach_deref_node_worker() 265 foreach_deref_node_worker(node->children[(*path)->strct.index], in foreach_deref_node_worker() 327 if (node->children[(*path)->strct.index]) { in path_may_be_aliased_node() 328 return path_may_be_aliased_node(node->children[(*path)->strct.index], in path_may_be_aliased_node()
|
D | nir_lower_locals_to_regs.c | 60 hash = XXH32(&deref->strct.index, sizeof(deref->strct.index), hash); in hash_deref() 87 if (a->strct.index != b->strct.index) in derefs_equal()
|
D | nir_deref.c | 311 (*p)->strct.index); in nir_deref_instr_get_const_offset() 349 (*p)->strct.index); in nir_build_deref_offset() 456 glsl_get_struct_field_data(struct_type, (*p)->strct.index); in deref_path_contains_coherent_decoration() 609 if (a_tail->strct.index != b_tail->strct.index) in nir_compare_deref_paths() 733 new_deref->strct.index = deref->strct.index; in rematerialize_deref_in_block() 841 child->strct.index); in nir_deref_instr_fixup_child_types()
|
D | nir_opt_find_array_copies.c | 131 idx = instr->strct.index; in node_for_deref() 217 struct match_node *child = node->children[(*deref)->strct.index]; in _foreach_aliasing() 379 if (b->strct.index != d->strct.index) in try_match_deref()
|
D | nir_opt_constant_folding.c | 162 if (p->strct.index >= c->num_elements) in const_value_for_deref() 164 c = c->elements[p->strct.index]; in const_value_for_deref()
|
D | nir_lower_io_to_temporaries.c | 152 (*old_interp_deref)->strct.index); in emit_interp() 155 (*old_interp_deref)->strct.index); in emit_interp()
|
D | nir_split_per_member_structs.c | 140 nir_variable *member = find_var_member(base->var, deref->strct.index, in rewrite_deref_instr()
|
D | nir_instr_set.c | 165 hash = HASH(hash, instr->strct.index); in hash_deref() 617 if (deref1->strct.index != deref2->strct.index) in nir_instrs_equal()
|
D | nir_clone.c | 326 nderef->strct.index = deref->strct.index; in clone_deref_instr()
|
D | nir_lower_io.c | 229 for (unsigned i = 0; i < (*p)->strct.index; i++) { in get_io_offset() 1111 base += glsl_get_struct_field_offset(parent->type, deref->strct.index); in nir_get_explicit_deref_range() 1742 deref->strct.index); in nir_explicit_io_address_from_deref() 1937 deref->strct.index); in nir_get_explicit_deref_align()
|
D | nir_serialize.c | 1010 blob_write_uint32(ctx->blob, deref->strct.index); in write_deref() 1069 deref->strct.index = blob_read_uint32(ctx->blob); in read_deref() 1070 deref->type = glsl_get_struct_field(parent->type, deref->strct.index); in read_deref()
|
D | nir_validate.c | 477 instr->strct.index < glsl_get_length(parent->type)); in validate_deref_instr() 479 glsl_get_struct_field(parent->type, instr->strct.index)); in validate_deref_instr()
|
D | nir_gather_info.c | 220 for (unsigned i = 0; i < d->strct.index; i++) { in get_io_offset()
|
D | nir_builder.h | 1385 deref->strct.index = index; in nir_build_deref_struct() 1485 return nir_build_deref_struct(b, parent, leader->strct.index); in nir_build_deref_follower()
|
D | nir_linking_helpers.c | 1186 return nir_build_deref_struct(b, parent, deref->strct.index); in clone_deref_instr()
|
D | nir_split_vars.c | 263 tail_field = &tail_field->fields[path.path[i]->strct.index]; in split_struct_derefs_impl()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_nir_lower_builtin.c | 94 assert(path->path[idx]->strct.index < desc->num_elements); in get_element() 96 return &desc->elements[path->path[idx]->strct.index ]; in get_element()
|
/third_party/mesa3d/src/intel/tools/ |
D | aubinator_viewer_decoder.cpp | 200 struct intel_group *strct = in dump_binding_table() local 202 if (strct == NULL) { in dump_binding_table() 232 uint32_t size = strct->dw_length * 4; in dump_binding_table() 244 aub_viewer_print_group(ctx, strct, addr, state); in dump_binding_table() 253 struct intel_group *strct = intel_spec_find_struct(ctx->spec, "SAMPLER_STATE"); in dump_samplers() local 270 const unsigned sampler_state_size = strct->dw_length * 4; in dump_samplers() 280 aub_viewer_print_group(ctx, strct, state_addr, state_map); in dump_samplers()
|
/third_party/mesa3d/src/compiler/ |
D | glsl_types.cpp | 2946 } strct; member 3056 encoded.strct.length = MIN2(type->length, 0xfffff); in encode_type_to_blob() 3057 encoded.strct.explicit_alignment = in encode_type_to_blob() 3060 encoded.strct.interface_packing_or_packed = type->interface_packing; in encode_type_to_blob() 3061 encoded.strct.interface_row_major = type->interface_row_major; in encode_type_to_blob() 3063 encoded.strct.interface_packing_or_packed = type->packed; in encode_type_to_blob() 3069 if (encoded.strct.length == 0xfffff) in encode_type_to_blob() 3071 if (encoded.strct.explicit_alignment == 0xf) in encode_type_to_blob() 3159 unsigned num_fields = encoded.strct.length; in decode_type_from_blob() 3162 unsigned explicit_alignment = encoded.strct.explicit_alignment; in decode_type_from_blob() [all …]
|
/third_party/mesa3d/src/compiler/glsl/ |
D | gl_nir_lower_samplers_as_deref.c | 107 *location += glsl_get_struct_location_offset(cur->type, next->strct.index); in remove_struct_derefs_prep() 109 glsl_get_struct_elem_name(cur->type, next->strct.index)); in remove_struct_derefs_prep()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | id3v2.4.0-frames.txt | 93 [ID3v2-strct]. A frame is a block of information in the tag. The tag 577 structure document [ID3v2-strct]. 582 format is described in the ID3v2 structure document [ID3v2-strct]. 587 structure document [ID3v2-strct]. 592 structure document [ID3v2-strct]. 597 structure document [ID3v2-strct]. 1412 structure document [ID3v2-strct] for more information. 1437 in the ID3v2 structure document [ID3v2-strct] for more information. 1569 [ID3v2-strct] Martin Nilsson,
|
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
D | nir_to_tgsi_info.c | 90 unsigned index = deref->strct.index; in gather_usage_helper()
|
/third_party/mesa3d/src/compiler/nir/tests/ |
D | load_store_vectorizer_tests.cpp | 1336 ASSERT_EQ(deref->strct.index, 0); in TEST_F() 1497 ASSERT_EQ(deref->strct.index, 0); in TEST_F()
|