Searched refs:chips (Results 1 - 5 of 5) sorted by relevance
/third_party/mesa3d/src/amd/registers/ |
H A D | makeregheader.py | 62 def get_disambiguation_suffix(chips): 65 is supported in the given set of chips. 67 oldest_chip_index = min([get_chip_index(chip) for chip in chips]) 70 def get_chips_comment(chips, parent=None): 72 Generate a user-friendly comment describing the given set of chips. 76 parent is an optional set of chips supporting a parent structure, e.g. 77 where chips may be the set of chips supporting a specific enum value, 78 parent would be the set of chips supporting the field containing the enum, 79 the idea being that no comment is necessary if all chips tha [all...] |
H A D | regdb.py | 215 - the chips field of register mappings is sorted 217 Lazily computes the set of all chips mentioned by register mappings. 239 chips = set(getattr(regmap, 'chips', ['undef'])) 242 self.__chips.update(chips) 250 other_chips = getattr(other, 'chips', ['undef']) 255 other.chips = sorted(list(chips.union(other_chips))) 268 other_chips = getattr(other, 'chips', ['undef']) 270 type_ref != other_type_ref and chips 537 def chips(self): global() member in RegisterDatabase [all...] |
H A D | canonicalize.py | 69 def json_canonicalize(filp, chips = None): 72 if chips is not None: 74 assert not hasattr(regmap, 'chips') 75 regmap.chips = [chips]
|
H A D | parseheader.py | 49 self.chips = ['gfx6', 'gfx7', 'gfx8', 'fiji', 'stoney', 'gfx9'] 82 chips = ['gfx6', 'gfx7', 'gfx8', 'fiji', 'stoney', 'gfx9'] 174 chips=self.chips,
|
/third_party/mesa3d/src/amd/common/ |
H A D | sid_tables.py | 291 for chip in regmap.chips: 296 # Sorted iteration over chips for deterministic builds
|
Completed in 3 milliseconds