Lines Matching refs:CHIPS
45 CHIPS = [ variable
61 return next(idx for idx, obj in enumerate(CHIPS) if obj.name == chip)
69 return CHIPS[oldest_chip_index].disambiguation
83 chipflags = [chip.name in chips for chip in CHIPS]
88 parentflags = [chip.name in parent for chip in CHIPS]
93 for idx, chip, flag in zip(itertools.count(), CHIPS, chipflags):
98 suffix = len(CHIPS)
99 for idx, chip, flag in zip(itertools.count(), reversed(CHIPS), reversed(chipflags)):
102 suffix = len(CHIPS) - idx - 1
106 comment.append('<= {0}'.format(CHIPS[prefix - 1].name))
107 for chip, flag in zip(CHIPS[prefix:suffix], chipflags[prefix:suffix]):
110 if suffix < len(CHIPS):
111 comment.append('>= {0}'.format(CHIPS[suffix].name))