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

  /external/chromium/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/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/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/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/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 786 milliseconds