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

  /external/chromium/net/disk_cache/
bitmap.h 115 return (num_bits + kIntBits - 1) >> kLogIntBits;
120 static const int kLogIntBits = 5; // 2^5 == 32 bits per word.
bitmap.cc 224 int word_index = bit_index >> kLogIntBits;
249 const int last_word_index = (limit - 1) >> kLogIntBits;
252 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);
269 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);

Completed in 388 milliseconds