Lines Matching refs:narrows
29 def _reorderItem(lst, narrows, zeroes): argument
33 if i not in narrows:
36 if i in narrows and i not in zeroes:
43 narrows = set(range(count))
46 wides = [i for i in narrows if not (-128 <= item[i] <= 127)]
47 narrows.difference_update(wides)
50 if not narrows and not zeroes:
54 self.VarRegionIndex = _reorderItem(self.VarRegionIndex, narrows, zeroes)
57 items[i] = _reorderItem(items[i], narrows, zeroes)
58 self.NumShorts = count - len(narrows)
60 wides = set(range(count)) - narrows