Home
last modified time | relevance | path

Searched refs:get_bit_size (Results 1 - 2 of 2) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
H A Dnir_algebraic.py144 def get_bit_size(self): member in Value
165 """Make self.get_bit_size() return what other.get_bit_size() return
170 self_bit_size = self.get_bit_size()
171 other_bit_size = other if isinstance(other, int) else other.get_bit_size()
184 bit_size = self.get_bit_size()
558 that calling get_bit_size() always gets you the most specialized bitsize.
601 a_bit_size = a.get_bit_size()
602 b_bit_size = b if isinstance(b, int) else b.get_bit_size()
732 bit_size = val.get_bit_size()
[all...]
H A Dnir_opt_load_store_vectorize.c282 get_bit_size(struct entry *entry) in get_bit_size() function
667 unsigned common_bit_size = MIN2(get_bit_size(low), get_bit_size(high)); in new_bitsize_acceptable()
682 unsigned low_size = low->intrin->num_components * get_bit_size(low); in new_bitsize_acceptable()
683 unsigned high_size = high->intrin->num_components * get_bit_size(high); in new_bitsize_acceptable()
691 if (!nir_component_mask_can_reinterpret(write_mask, get_bit_size(low), new_bit_size)) in new_bitsize_acceptable()
695 if (!nir_component_mask_can_reinterpret(write_mask, get_bit_size(high), new_bit_size)) in new_bitsize_acceptable()
737 unsigned low_bit_size = get_bit_size(low); in vectorize_loads()
738 unsigned high_bit_size = get_bit_size(high); in vectorize_loads()
828 ASSERTED unsigned low_size = low->intrin->num_components * get_bit_size(lo in vectorize_stores()
[all...]

Completed in 4 milliseconds