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

  /art/compiler/dex/
arena_bit_vector.h 49 uint32_t word_index = bit_index_ / 32;
50 uint32_t word = bit_storage_[word_index];
56 word_index++;
57 if ((word_index * 32) >= bit_size_) {
61 word = bit_storage_[word_index];
  /external/chromium/net/disk_cache/
bitmap.cc 224 int word_index = bit_index >> kLogIntBits; local
225 uint32 one_word = map_[word_index];
250 while (word_index < last_word_index) {
252 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);
255 one_word = map_[++word_index];
269 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);
  /external/chromium_org/net/disk_cache/
bitmap.cc 224 int word_index = bit_index >> kLogIntBits; local
225 uint32 one_word = map_[word_index];
250 while (word_index < last_word_index) {
252 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);
255 one_word = map_[++word_index];
269 *index = (word_index << kLogIntBits) + FindLSBNonEmpty(one_word, value);

Completed in 41 milliseconds