Lines Matching refs:kIntBits
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),
155 ((end / kIntBits) - (begin / kIntBits)) * sizeof(*map_));
173 int word = begin / kIntBits;
174 int offset = begin & (kIntBits - 1);
175 int last_word = (end - 1) / kIntBits;
176 int last_offset = (end - 1) & (kIntBits - 1);
233 const int first_bit_offset = bit_index & (kIntBits - 1);
261 const int last_bit_offset = (limit - 1) & (kIntBits - 1);
294 DCHECK_LT(len, kIntBits);
299 int word = start / kIntBits;
300 int offset = start % kIntBits;