/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_composites.cpp | 37 uint32_t* member_type) { in GetExtractInsertValueType() argument 53 *member_type = _.GetTypeId(inst->word(composite_id_index)); in GetExtractInsertValueType() 54 if (*member_type == 0) { in GetExtractInsertValueType() 61 const Instruction* const type_inst = _.FindDef(*member_type); in GetExtractInsertValueType() 65 *member_type = type_inst->word(2); in GetExtractInsertValueType() 75 *member_type = type_inst->word(2); in GetExtractInsertValueType() 87 *member_type = type_inst->word(2); in GetExtractInsertValueType() 104 *member_type = type_inst->word(2); in GetExtractInsertValueType() 118 *member_type = type_inst->word(component_index + 2); in GetExtractInsertValueType() 308 const uint32_t member_type = struct_inst->word(operand_index); in ValidateCompositeConstruct() local [all …]
|
D | validate_type.cpp | 194 auto member_type = _.FindDef(member_type_id); in ValidateTypeStruct() local 195 if (!member_type || !spvOpcodeGeneratesType(member_type->opcode())) { in ValidateTypeStruct() 200 if (member_type->opcode() == SpvOpTypeVoid) { in ValidateTypeStruct() 204 if (SpvOpTypeStruct == member_type->opcode() && in ValidateTypeStruct() 219 auto type_pointing_to = _.FindDef(member_type->words()[3]); in ValidateTypeStruct() 234 member_type->opcode() == SpvOpTypeRuntimeArray) { in ValidateTypeStruct()
|
D | validate_constants.cpp | 240 const auto member_type = _.FindDef(member_type_id); in ValidateConstantComposite() local 241 if (!member_type || member_type->id() != constituent_type->id()) { in ValidateConstantComposite()
|
D | validate_memory.cpp | 191 auto member_type = _.FindDef(member_type_id); in ContainsInvalidBool() local 192 if (ContainsInvalidBool(_, member_type, skip_builtin)) return true; in ContainsInvalidBool() 283 const auto member_type = _.FindDef(member_id); in DoesStructContainRTA() local 284 if (member_type->opcode() == SpvOpTypeRuntimeArray) return true; in DoesStructContainRTA()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_composites.cpp | 37 uint32_t* member_type) { in GetExtractInsertValueType() argument 53 *member_type = _.GetTypeId(inst->word(composite_id_index)); in GetExtractInsertValueType() 54 if (*member_type == 0) { in GetExtractInsertValueType() 61 const Instruction* const type_inst = _.FindDef(*member_type); in GetExtractInsertValueType() 65 *member_type = type_inst->word(2); in GetExtractInsertValueType() 75 *member_type = type_inst->word(2); in GetExtractInsertValueType() 87 *member_type = type_inst->word(2); in GetExtractInsertValueType() 104 *member_type = type_inst->word(2); in GetExtractInsertValueType() 118 *member_type = type_inst->word(component_index + 2); in GetExtractInsertValueType() 308 const uint32_t member_type = struct_inst->word(operand_index); in ValidateCompositeConstruct() local [all …]
|
D | validate_type.cpp | 172 auto member_type = _.FindDef(member_type_id); in ValidateTypeStruct() local 173 if (!member_type || !spvOpcodeGeneratesType(member_type->opcode())) { in ValidateTypeStruct() 178 if (member_type->opcode() == SpvOpTypeVoid) { in ValidateTypeStruct() 182 if (SpvOpTypeStruct == member_type->opcode() && in ValidateTypeStruct() 197 auto type_pointing_to = _.FindDef(member_type->words()[3]); in ValidateTypeStruct()
|
D | validate_constants.cpp | 240 const auto member_type = _.FindDef(member_type_id); in ValidateConstantComposite() local 241 if (!member_type || member_type->id() != constituent_type->id()) { in ValidateConstantComposite()
|
D | validate_memory.cpp | 191 auto member_type = _.FindDef(member_type_id); in ContainsInvalidBool() local 192 if (ContainsInvalidBool(_, member_type, skip_builtin)) return true; in ContainsInvalidBool()
|
/external/python/cpython3/Lib/ |
D | enum.py | 130 member_type, first_enum = metacls._get_mixins_(bases) 146 member_type, first_enum = metacls._get_mixins_(bases) 147 __new__, save_new, use_args = metacls._find_new_(classdict, member_type, 173 enum_class._member_type_ = member_type 195 if member_type is not object: 198 if not any(m in member_type.__dict__ for m in methods): 211 if member_type is tuple: # special case for tuple enums 220 if member_type is object: 223 enum_member._value_ = member_type(*args) 255 obj_method = getattr(member_type, name, None) [all …]
|
/external/libunwind/src/coredump/ |
D | _UCD_internal.h | 103 #define STRUCT_MEMBER(member_type, struct_p, struct_offset) (*(member_type*) STRUCT_MEMBER_P ((stru… argument
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | type_manager.cpp | 843 for (auto& member_type : member_types) { in ReplaceForwardPointers() local 844 if (member_type->AsForwardPointer()) { in ReplaceForwardPointers() 845 member_type = member_type->AsForwardPointer()->target_pointer(); in ReplaceForwardPointers() 846 assert(member_type); in ReplaceForwardPointers() 901 for (auto& member_type : member_types) { in ReplaceType() local 902 if (member_type == original_type) { in ReplaceType() 903 member_type = new_type; in ReplaceType()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | type_manager.cpp | 840 for (auto& member_type : member_types) { in ReplaceForwardPointers() local 841 if (member_type->AsForwardPointer()) { in ReplaceForwardPointers() 842 member_type = member_type->AsForwardPointer()->target_pointer(); in ReplaceForwardPointers() 843 assert(member_type); in ReplaceForwardPointers() 898 for (auto& member_type : member_types) { in ReplaceType() local 899 if (member_type == original_type) { in ReplaceType() 900 member_type = new_type; in ReplaceType()
|
/external/mesa3d/src/compiler/glsl/ |
D | link_varyings.cpp | 164 const glsl_type *type, *member_type; in process_xfb_layout_qualifiers() local 171 member_type = in process_xfb_layout_qualifiers() 176 member_type = NULL; in process_xfb_layout_qualifiers() 180 var->name, member_type, varying_names); in process_xfb_layout_qualifiers()
|
/external/jemalloc_new/m4/ |
D | ax_cxx_compile_stdcxx.m4 | 420 using member = typename T::member_type;
|
/external/harfbuzz_ng/m4/ |
D | ax_cxx_compile_stdcxx.m4 | 434 using member = typename T::member_type;
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 5981 const char *member_name, *member_type, *member_size_string; in DumpBitcodeSection() local 5992 member_type = NULL; in DumpBitcodeSection() 6003 member_type = val; in DumpBitcodeSection() 6011 if (member_name != NULL && member_type != NULL && in DumpBitcodeSection() 6012 strcmp(member_type, "file") == 0 && in DumpBitcodeSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 6368 const char *member_name, *member_type, *member_size_string; in DumpBitcodeSection() local 6378 member_type = NULL; in DumpBitcodeSection() 6389 member_type = val; in DumpBitcodeSection() 6397 if (member_name != NULL && member_type != NULL && in DumpBitcodeSection() 6398 strcmp(member_type, "file") == 0 && in DumpBitcodeSection()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi.cpp | 2733 const glsl_type *member_type = struct_type->fields.structure[i].type; in visit() local 2734 offset += st_glsl_storage_type_size(member_type, var->data.bindless); in visit()
|
/external/jemalloc_new/ |
D | configure | 5264 using member = typename T::member_type; 5698 using member = typename T::member_type;
|