Lines Matching refs:size
37 Match = _namedtuple('Match', 'a b size')
326 Match(a=0, b=4, size=5)
342 Match(a=1, b=0, size=4)
348 Match(a=0, b=0, size=0)
437 [Match(a=0, b=0, size=2), Match(a=3, b=2, size=2), Match(a=5, b=4, size=0)]
525 for ai, bj, size in self.get_matching_blocks():
528 # a[ai:ai+size] == b[bj:bj+size]. So we need to pump
540 i, j = ai+size, bj+size
542 # sentinel with size 0
543 if size:
1770 size = len(text)
1772 if (size <= max) or ((size -(text.count('\0')*3)) <= max):
1781 while n < max and i < size: