Searched refs:pad_length (Results 1 – 3 of 3) sorted by relevance
208 pad_length = _BLOCK_SIZE - self.__position % _BLOCK_SIZE209 if pad_length and pad_length != _BLOCK_SIZE:210 self.__writer.write('\x00' * pad_length)211 self.__position += pad_length269 pad_length = _BLOCK_SIZE - self.__reader.tell() % _BLOCK_SIZE270 if pad_length and pad_length != _BLOCK_SIZE:271 data = self.__reader.read(pad_length)272 if len(data) != pad_length:274 (len(data), pad_length))
328 const size_t pad_length = expand_->overlap_length() - 1; in CorrelateAndPeakSearch() local329 const size_t correlation_buffer_size = 2 * pad_length + kMaxCorrelationLength; in CorrelateAndPeakSearch()333 int16_t* correlation_ptr = &correlation16[pad_length]; in CorrelateAndPeakSearch()355 kMaxCorrelationLength + pad_length - start_index_downsamp); in CorrelateAndPeakSearch()
265 pad_length = ntb_ndp_alignment - (ntb_curr_offset & ndp_align_mask)266 raw_ntb_frame_payload += array.array('B', [0] * pad_length)267 ntb_curr_offset += pad_length