Home
last modified time | relevance | path

Searched refs:new_word (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/examples/scripting/
Ddictionary.c89 char *new_word = (strdup(word)); in populate_dictionary() local
90 new_word = strip(&new_word); in populate_dictionary()
93 new_node->word = new_word; in populate_dictionary()
98 insert(*dictionary, new_word); in populate_dictionary()
/external/icing/icing/file/
Dfile-backed-bitmap.cc220 Word new_word = bit_value ? (old_word | word_mask) : old_word & ~word_mask; in Set() local
221 if (new_word != old_word) { in Set()
222 ICING_RETURN_IF_ERROR(SetWord(word_index, new_word)); in Set()
302 Word new_word = old_word & word_mask; in TruncateTo() local
303 ICING_RETURN_IF_ERROR(SetWord(word_index, new_word)); in TruncateTo()
/external/icing/icing/legacy/index/
Dicing-flash-bitmap.cc313 Word new_word = value ? old_word | mask : old_word & ~mask; in SetBit() local
314 if (new_word != old_word) { in SetBit()
315 words[word_offset] = new_word; in SetBit()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Ddecompose_resource_ops.cc181 Value new_word = rewriter.create<CastOp>(loc, word_type, new_word_u64); in matchAndRewrite() local
182 pack_args.push_back(new_word); in matchAndRewrite()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dcl_arguments.cc40 void ReplaceAllWords(const std::string& old_word, const std::string& new_word, in ReplaceAllWords() argument
52 str->replace(position, old_word.size(), new_word); in ReplaceAllWords()
53 position = str->find(old_word, position + new_word.size()); in ReplaceAllWords()
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dmetal_arguments.cc35 void ReplaceAllWords(const std::string& old_word, const std::string& new_word, in ReplaceAllWords() argument
47 str->replace(position, old_word.size(), new_word); in ReplaceAllWords()
48 position = str->find(old_word, position + new_word.size()); in ReplaceAllWords()
/external/llvm-project/lldb/docs/use/
Dpython.rst713 char *new_word = (strdup(word));
714 new_word = strip(&new_word);
717 new_node->word = new_word;
722 insert(*dictionary, new_word);