Searched refs:type_ref (Results 1 – 7 of 7) sorted by relevance
/third_party/mesa3d/src/amd/registers/ |
D | regdb.py | 240 type_ref = getattr(regmap, 'type_ref', None) 254 (type_ref is None or other_type_ref is None or type_ref == other_type_ref): 256 if type_ref is not None: 257 other.type_ref = type_ref 269 if type_ref is not None and other_type_ref is not None and \ 270 type_ref != other_type_ref and chips.intersection(other_chips): 288 if hasattr(regmap, 'type_ref') and regmap.type_ref not in self.__register_types: 289 regtype = old_register_types[regmap.type_ref] 290 self.__register_types[regmap.type_ref] = regtype 303 if hasattr(regmap, 'type_ref') and regmap.type_ref not in self.__register_types: [all …]
|
D | makeregheader.py | 122 for type_ref in type_refs: 123 for field in regdb.register_type(type_ref).fields: 145 type_ref = getattr(regmap, 'type_ref', None) 151 type_refs=set([type_ref]) if type_ref else set(), 156 if type_ref is not None and regtype_emit[key].isdisjoint(regmap.chips): 159 regtype = regdb.register_type(type_ref) 171 type_refs=set([type_ref]) if type_ref else set(),
|
D | canonicalize.py | 59 regmap.type_ref for regmap in bucket if hasattr(regmap, 'type_ref') 66 regmap.type_ref = regtypename
|
D | parseheader.py | 74 self.__regmap.type_ref = self.__regmap.name
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_printf.c | 89 LLVMTypeRef type_ref; in lp_build_print_value() local 96 type_ref = LLVMTypeOf(value); in lp_build_print_value() 97 type_kind = LLVMGetTypeKind(type_ref); in lp_build_print_value() 100 length = LLVMGetVectorSize(type_ref); in lp_build_print_value() 102 type_ref = LLVMGetElementType(type_ref); in lp_build_print_value() 103 type_kind = LLVMGetTypeKind(type_ref); in lp_build_print_value() 114 if (LLVMGetIntTypeWidth(type_ref) == 64) { in lp_build_print_value() 116 } else if (LLVMGetIntTypeWidth(type_ref) == 8) { in lp_build_print_value() 141 LLVMGetIntTypeWidth(type_ref) < sizeof(int) * 8) { in lp_build_print_value() 143 if (LLVMGetIntTypeWidth(type_ref) == 8) { in lp_build_print_value()
|
D | lp_bld_arit_overflow.c | 67 LLVMTypeRef type_ref; in build_binary_int_overflow() local 75 type_ref = LLVMTypeOf(a); in build_binary_int_overflow() 76 type_kind = LLVMGetTypeKind(type_ref); in build_binary_int_overflow() 79 type_width = LLVMGetIntTypeWidth(type_ref); in build_binary_int_overflow() 86 oelems[0] = type_ref; in build_binary_int_overflow()
|
/third_party/mesa3d/src/amd/common/ |
D | sid_tables.py | 305 if not regmap.type_ref in regtypes: 306 regtype = regdb.register_type(regmap.type_ref) 318 regtypes[regmap.type_ref] = (num_fields, fields_offset) 320 num_fields, fields_offset = regtypes[regmap.type_ref]
|