Searched refs:temp_len (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file_posix.cc21 size_t temp_len = size ? size : 4096;
34 scoped_ptr<char[]> temp(new char[temp_len]);
35 if (!Read(temp.get(), temp_len, 0))
H A Dmapped_file_win.cc31 size_t temp_len = size ? size : 4096; local
32 scoped_ptr<char[]> temp(new char[temp_len]);
33 if (!Read(temp.get(), temp_len, 0))
/external/qemu/android/utils/
H A Dfilelock.c399 int temp_len = lock_len + 1 + sizeof(PIDFILE_NAME); local
401 int temp_len = file_len + sizeof(TEMP_NAME); local
403 int total_len = sizeof(FileLock) + file_len + lock_len + temp_len + 3;
416 snprintf( (char*)lock->temp, temp_len, "%s\\" PIDFILE_NAME, lock->lock );
418 snprintf((char*)lock->temp, temp_len, "%s%s", lock->file, TEMP_NAME);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dmerge.cc274 int16_t temp_len = input_length - signal_offset; local
276 // errors? I.e., (temp_len + decimation_factor - 1) / decimation_factor?
277 int16_t downsamp_temp_len = temp_len / decimation_factor;
278 WebRtcSpl_DownsampleFast(&input[signal_offset], temp_len,

Completed in 1215 milliseconds