HomeSort by relevance Sort by last modified time
    Searched defs:byte_size (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/browser/safe_browsing/
bloom_filter.cc 140 int byte_size = static_cast<int>(remaining64); local
141 scoped_array<char> data(new char[byte_size]);
142 bytes_read = filter.Read(data.get(), byte_size, NULL);
143 if (bytes_read < byte_size) {
146 } else if (bytes_read != byte_size) {
152 return new BloomFilter(data.release(), byte_size, hash_keys);
  /external/protobuf/src/google/protobuf/
message_lite.cc 279 int byte_size = ByteSize(); local
280 STLStringResizeUninitialized(output, old_size + byte_size);
283 if (end - start != byte_size) {
284 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
305 int byte_size = ByteSize(); local
306 if (size < byte_size) return false;
309 if (end - start != byte_size) {
310 ByteSizeConsistencyError(byte_size, ByteSize(), end - start);
  /external/libxml2/
parserInternals.c 1943 unsigned int byte_size; local
    [all...]

Completed in 186 milliseconds