Lines Matching refs:BUNDLE_SIZE
18 BUNDLE_SIZE = 2 ** BUNDLE_SIZE_POW2 variable
46 for instlen in range(1, BUNDLE_SIZE + 1):
47 for offset in range(0, BUNDLE_SIZE):
50 print(ALIGNTO.format(2 * BUNDLE_SIZE))
57 base_offset = ntest * 2 * BUNDLE_SIZE
70 if offset + instlen == BUNDLE_SIZE:
73 elif offset + instlen < BUNDLE_SIZE:
75 offset_to_end = base_offset + (BUNDLE_SIZE - instlen)
80 offset_to_nearest_bundle = base_offset + BUNDLE_SIZE
81 offset_to_end = base_offset + (BUNDLE_SIZE * 2 - instlen)
86 if offset + instlen > BUNDLE_SIZE:
88 aligned_offset = (inst_orig_offset + instlen) & ~(BUNDLE_SIZE - 1)