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

  /external/chromium_org/sdch/open-vcdiff/src/
varint_bigendian.h 48 // VarintBE<SignedIntegerType>::kMaxBytes is treated
56 static const int kMaxBytes = 5;
62 static const int kMaxBytes = 9;
84 static const int kMaxBytes = VarintMaxBytes<SignedIntegerType>::kMaxBytes;
117 // of size kMaxBytes) and returns the length of the encoding.
118 // The result will be stored in buf[(kMaxBytes - length) : (kMaxBytes - 1)],
varint_bigendian.cc 70 char* buf_ptr = &varint_buf[kMaxBytes - 1];
85 char varint_buf[kMaxBytes];
87 memcpy(ptr, &varint_buf[kMaxBytes - length], length);
94 char varint_buf[kMaxBytes];
96 s->append(&varint_buf[kMaxBytes - length], length);
103 char varint_buf[kMaxBytes];
105 output_string->append(&varint_buf[kMaxBytes - length], length);
varint_bigendian_test.cc 32 : varint_buf_(VarintBE<int64_t>::kMaxBytes),
218 VarintType::Parse(parse_data_ptr_ + VarintType::kMaxBytes,
312 char encode_buffer[VarintType::kMaxBytes];
vcdecoder_test.cc 80 char varint_buf[VarintBE<int32_t>::kMaxBytes];
decodetable_test.cc 168 (1 + (VarintBE<VCDAddress>::kMaxBytes));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
isac_unittest.cc 23 const size_t kMaxBytes = 1000;
34 int16_t bitstream_[kMaxBytes / 2];
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
opus_unittest.cc 24 const size_t kMaxBytes = 1000;
40 uint8_t bitstream_[kMaxBytes];
121 kMaxBytes, bitstream_);
162 kMaxBytes, bitstream_);
242 kMaxBytes, bitstream_);
351 kMaxBytes, bitstream_);
399 kMaxBytes, bitstream_);
445 kMaxBytes, bitstream_);
451 kMaxBytes, bitstream_);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_x86-inl.h 74 // kMaxBytes tells how many instruction bytes of __kernel_vsyscall
75 // to analyze before giving up. Up to kMaxBytes+1 bytes of
98 static const int kMaxBytes = 10;
105 for (int i = 0; i < kMaxBytes; ++i) {
131 // [__kernel_vsyscall, __kernel_vsyscall + kMaxBytes) interval.
195 reg_eip - kernel_vsyscall_address < kMaxBytes) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
opus_test.cc 271 const int kMaxBytes = 1000; // Maximum number of bytes for one packet.
273 uint8_t bitstream[kMaxBytes];
278 frame_length, kMaxBytes, bitstream);
283 frame_length, kMaxBytes, bitstream);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_x86-inl.h 77 // kMaxBytes tells how many instruction bytes of __kernel_vsyscall
78 // to analyze before giving up. Up to kMaxBytes+1 bytes of
101 static const int kMaxBytes = 10;
108 for (int i = 0; i < kMaxBytes; ++i) {
134 // [__kernel_vsyscall, __kernel_vsyscall + kMaxBytes) interval.
198 reg_eip - kernel_vsyscall_address < kMaxBytes) {
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 288 if (size < kMaxBytes &&
297 static const size_t kMaxBytes = 32;
299 uint8_t buffer_[kMaxBytes];
    [all...]

Completed in 7215 milliseconds