Lines Matching refs:big
325 big = self
328 big = vc
336 if big.__sat_set & small.__sat_set:
337 intersect = VariantCombinations(big.__template, False)
338 intersect.__sat_set = big.__sat_set & small.__sat_set
341 if big.__sat_set - small.__sat_set:
342 only_big = VariantCombinations(big.__template, False)
343 only_big.__sat_set = big.__sat_set - small.__sat_set
346 if small.__sat_set - big.__sat_set:
347 only_small = VariantCombinations(big.__template, False)
348 only_small.__sat_set = small.__sat_set - big.__sat_set
351 if big == self: