Lines Matching refs:size
35 size = os.path.getsize(inputfile)
37 if size % blocksize != 0:
38 fill_cnt = blocksize - size % blocksize
46 def get_gap_blocksize(length: int, size: int) -> int:
47 if length < size:
49 elif length < (size * 2):
57 size = os.path.getsize(inputfile)
59 totalblocks = size / blocksize
62 if (size % blocksize) != 0:
63 print("len is not eq n * blocksize: ", size, totalblocks)
117 def is_empty_block(buff: list, size: int) -> bool:
119 while (ind < size):