Home
last modified time | relevance | path

Searched refs:max_bytes_ (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/tools/
Daudio_codec_speed_test.cc33 max_bytes_(0), in AudioCodecSpeedTest()
70 max_bytes_ = input_length_sample_ * channels_ * sizeof(int16_t); in SetUp()
72 bit_stream_.reset(new uint8_t[max_bytes_]); in SetUp()
108 max_bytes_, &encoded_bytes_); in EncodeDecode()
Daudio_codec_speed_test.h73 size_t max_bytes_; variable
/external/webrtc/modules/audio_coding/codecs/opus/
Dopus_fec_test.cc57 size_t max_bytes_; member in webrtc::OpusFecTest
104 max_bytes_ = block_length_sample_ * channels_ * sizeof(int16_t); in SetUp()
107 bit_stream_.reset(new uint8_t[max_bytes_]); in SetUp()
131 max_bytes_(0), in OpusFecTest()
139 block_length_sample_, max_bytes_, &bit_stream_[0]); in EncodeABlock()
/external/tensorflow/tensorflow/core/platform/cloud/
Dram_file_block_cache.h56 max_bytes_(max_bytes), in block_size_()
110 size_t max_bytes() const override { return max_bytes_; } in max_bytes()
119 return block_size_ > 0 && max_bytes_ > 0; in IsCacheEnabled()
127 const size_t max_bytes_; variable
Dram_file_block_cache.cc63 while (!lru_list_.empty() && cache_size_ > max_bytes_) { in Trim()
174 if (!IsCacheEnabled() || (n > max_bytes_)) { in Read()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
Dram_file_block_cache.h57 max_bytes_(max_bytes), in block_size_()
121 size_t max_bytes() const { return max_bytes_; } in max_bytes()
129 bool IsCacheEnabled() const { return block_size_ > 0 && max_bytes_ > 0; } in IsCacheEnabled()
143 const size_t max_bytes_; variable
Dram_file_block_cache.cc63 while (!lru_list_.empty() && cache_size_ > max_bytes_) { in Trim()
174 if (!IsCacheEnabled() || (n > max_bytes_)) { in Read()
/external/libchrome/mojo/public/cpp/system/
Dfile_data_pipe_producer.cc104 max_bytes_ = max_bytes; in StartFromFileOnFileSequence()
163 const size_t max_bytes_remaining = max_bytes_ - bytes_transferred_; in TransferSomeBytes()
190 DCHECK_LE(bytes_transferred_, max_bytes_); in TransferSomeBytes()
199 if (bytes_transferred_ == max_bytes_) { in TransferSomeBytes()
223 size_t max_bytes_ = 0; member in mojo::FileDataPipeProducer::FileSequenceState
/external/webrtc/modules/audio_coding/codecs/isac/fix/test/
Disac_speed_test.cc48 EXPECT_GE(max_bytes_, static_cast<size_t>(STREAM_MAXW16_60MS)); in SetUp()
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h214 static void set_max_bytes(uint32_t max_bytes) { max_bytes_ = max_bytes; } in set_max_bytes()
215 static uint32_t max_bytes() { return max_bytes_; } in max_bytes()
261 static uint32_t max_bytes_; variable
/external/google-breakpad/src/processor/
Dminidump.cc1269 uint32_t MinidumpMemoryRegion::max_bytes_ = 64 * 1024 * 1024; // 64MB member in google_breakpad::MinidumpMemoryRegion
1312 if (descriptor_->memory.data_size > max_bytes_) { in GetMemory()
1315 max_bytes_; in GetMemory()