HomeSort by relevance Sort by last modified time
    Searched refs:max_bytes_ (Results 1 - 11 of 11) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.cc 33 max_bytes_(0),
71 max_bytes_ = input_length_sample_ * channels_ * sizeof(int16_t);
73 bit_stream_.reset(new uint8_t[max_bytes_]);
109 max_bytes_, &encoded_bytes_);
audio_codec_speed_test.h 71 size_t max_bytes_; member in class:webrtc::AudioCodecSpeedTest
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_response_cache.h 67 : max_bytes_(max_bytes), expire_time_seconds_(expire_time_seconds) {}
81 const int64 max_bytes_; member in class:tensorflow::GrpcResponseCache
grpc_response_cache.cc 133 if (current_bytes_ < max_bytes_) {
137 VLOG(1) << "Cleanup: " << current_bytes_ << " -> " << max_bytes_; local
162 // Keep unexpired, finished requests up to half of max_bytes_. This reduces
166 if (pair.second->expires_seconds < now || bytes_used >= max_bytes_ / 2) {
  /external/tensorflow/tensorflow/core/platform/cloud/
ram_file_block_cache.h 55 max_bytes_(max_bytes),
109 size_t max_bytes() const override { return max_bytes_; }
118 return block_size_ > 0 && max_bytes_ > 0;
126 const size_t max_bytes_; member in class:tensorflow::RamFileBlockCache
ram_file_block_cache.cc 60 while (!lru_list_.empty() && cache_size_ > max_bytes_) {
  /external/libchrome/mojo/public/cpp/system/
file_data_pipe_producer.cc 104 max_bytes_ = max_bytes;
163 const size_t max_bytes_remaining = max_bytes_ - bytes_transferred_;
190 DCHECK_LE(bytes_transferred_, max_bytes_);
199 if (bytes_transferred_ == max_bytes_) {
223 size_t max_bytes_ = 0; member in class:mojo::FileDataPipeProducer::FileSequenceState
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_fec_test.cc 56 size_t max_bytes_; member in class:webrtc::OpusFecTest
102 max_bytes_ = block_length_sample_ * channels_ * sizeof(int16_t);
105 bit_stream_.reset(new uint8_t[max_bytes_]);
129 max_bytes_(0),
139 max_bytes_, &bit_stream_[0]);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
isac_speed_test.cc 46 EXPECT_GE(max_bytes_, static_cast<size_t>(STREAM_MAXW16_60MS));
  /external/google-breakpad/src/google_breakpad/processor/
minidump.h 206 static void set_max_bytes(uint32_t max_bytes) { max_bytes_ = max_bytes; }
207 static uint32_t max_bytes() { return max_bytes_; }
249 static uint32_t max_bytes_; member in class:google_breakpad::MinidumpMemoryRegion
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 1188 uint32_t MinidumpMemoryRegion::max_bytes_ = 1024 * 1024; \/\/ 1MB member in class:google_breakpad::MinidumpMemoryRegion
    [all...]

Completed in 5198 milliseconds