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

  /art/runtime/base/
bit_vector-inl.h 51 uint32_t word_index = start_index / kWordBits; local
52 if (UNLIKELY(word_index == storage_size_)) {
55 uint32_t word = bit_storage_[word_index];
59 ++word_index;
60 if (UNLIKELY(word_index == storage_size_)) {
63 word = bit_storage_[word_index];
65 return word_index * 32u + CTZ(word);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
binary.cpp 135 return libspirv::DiagnosticStream({0, 0, _.word_index}, _.diagnostic,
153 << ((_.word_index < _.num_words) ? ": truncated "
156 << _.word_index - inst_offset << ".";
160 uint32_t peek() const { return peekAt(_.word_index); }
189 word_index(0),
196 size_t word_index; // The current position in words.
258 _.word_index = SPV_INDEX_INSTRUCTION;
259 while (_.word_index < _.num_words)
263 assert(_.word_index == _.num_words);
294 assert(_.word_index < _.num_words)
    [all...]
  /art/runtime/gc/accounting/
bitmap-inl.h 34 const size_t word_index = BitIndexToWordIndex(bit_index); local
36 auto* atomic_entry = reinterpret_cast<Atomic<uintptr_t>*>(&bitmap_begin_[word_index]);
135 const size_t word_index = BitIndexToWordIndex(bit_index); local
137 uintptr_t* address = &bitmap_begin_[word_index];
bitmap.h 53 static ALWAYS_INLINE constexpr T WordIndexToBitIndex(T word_index) {
54 return static_cast<T>(word_index * kBitsPerBitmapWord);

Completed in 478 milliseconds