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

  /external/chromium/net/disk_cache/
bitmap.cc 95 const int i = index & (kIntBits - 1);
96 const int j = index / kIntBits;
106 const int i = index & (kIntBits-1);
107 const int j = index / kIntBits;
114 const int i = index & (kIntBits - 1);
115 const int j = index / kIntBits;
137 int start_offset = begin & (kIntBits - 1);
140 int len = std::min(end - begin, kIntBits - start_offset);
149 int end_offset = end & (kIntBits - 1);
154 memset(map_ + (begin / kIntBits), (value ? 0xFF : 0x00)
    [all...]
bitmap.h 112 if (num_bits <= kIntBits)
115 return (num_bits + kIntBits - 1) >> kLogIntBits;
119 static const int kIntBits = sizeof(uint32) * 8;
123 // stored in the same word, and len < kIntBits.

Completed in 566 milliseconds