Home
last modified time | relevance | path

Searched refs:kLogIntBits (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
Dbitmap.h115 return (num_bits + kIntBits - 1) >> kLogIntBits; in RequiredArraySize()
120 static const int kLogIntBits = 5; // 2^5 == 32 bits per word. variable
Dbitmap.cc224 int word_index = bit_index >> kLogIntBits; in FindNextBit()
249 const int last_word_index = (limit - 1) >> kLogIntBits; in FindNextBit()
252 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value); in FindNextBit()
269 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value); in FindNextBit()