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

  /external/chromium_org/chrome/browser/ui/webui/options/
language_dictionary_overlay_handler.cc 120 std::string old_word; local
121 if (!args->GetString(0, &old_word) || old_word.empty() || !dictionary_) {
125 dictionary_->RemoveWord(old_word);
  /art/runtime/gc/accounting/
space_bitmap-inl.h 41 uword old_word; local
43 old_word = atomic_entry->LoadRelaxed();
45 if ((old_word & mask) != 0) {
49 } while (!atomic_entry->CompareExchangeWeakSequentiallyConsistent(old_word, old_word | mask));
167 uword old_word = *address; local
169 *address = old_word | mask;
171 *address = old_word & ~mask;
174 return (old_word & mask) != 0;
card_table-inl.h 45 const uintptr_t old_word = cur_word | (static_cast<uintptr_t>(old_value) << shift_in_bits);
47 return word_atomic->CompareExchangeWeakRelaxed(old_word, new_word);

Completed in 114 milliseconds