Lines Matching refs:index
404 for index in range(self.length // 4):
406 if not index in words:
407 print(" cl[%2d] = 0;" % index)
410 word = words[index]
412 word_start = index * 32
415 prefix = " cl[%2d] =" % index
471 # Given a field (start, end) contained in word `index`, generate the 32-bit
473 def mask_for_word(self, index, start, end):
474 field_word_start = index * 32
488 for index in range(self.length // 4):
489 base = index * 32
490 word = words.get(index, self.Word())
491 masks = [self.mask_for_word(index, c.start, c.end) for c in word.contributors]
498 print(TMPL.format(index, hex(mask ^ ALL_ONES), self.label, index, index, index, hex(mask ^ ALL_ONES)))