Searched refs:align_with (Results 1 – 1 of 1) sorted by relevance
284 def _get_aligned_size(size, align_with=4): # type: (int, int) -> int argument285 if size % align_with:286 return align_with * (size // align_with + 1)