Searched refs:max_bytes_ (Results 1 - 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/tools/
H A Daudio_codec_speed_test.cc33 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_);
H A Daudio_codec_speed_test.h71 size_t max_bytes_; member in class:webrtc::AudioCodecSpeedTest
/external/opencv3/3rdparty/libwebp/utils/
H A Dbit_writer.c209 if (bw->max_bytes_ > 0 && size_required <= bw->max_bytes_) return 1;
210 allocated_size = (3 * bw->max_bytes_) >> 1;
222 bw->max_bytes_ = allocated_size;
272 if ((bw->bit_pos_ >> 3) > (bw->max_bytes_ - 8)) {
273 const uint64_t extra_size = 32768ULL + bw->max_bytes_;
H A Dbit_writer.h78 size_t max_bytes_; member in struct:__anon14966
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
H A Dopus_fec_test.cc56 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/
H A Disac_speed_test.cc46 EXPECT_GE(max_bytes_, static_cast<size_t>(STREAM_MAXW16_60MS));
/external/google-breakpad/src/google_breakpad/processor/
H A Dminidump.h206 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
/external/google-breakpad/src/processor/
H A Dminidump.cc1188 uint32_t MinidumpMemoryRegion::max_bytes_ = 1024 * 1024; // 1MB member in class:google_breakpad::MinidumpMemoryRegion
1229 if (descriptor_->memory.data_size > max_bytes_) {
1232 max_bytes_;

Completed in 310 milliseconds