HomeSort by relevance Sort by last modified time
    Searched refs:kMaxBytes (Results 1 - 5 of 5) 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));

Completed in 59 milliseconds