Searched refs:new_word (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/examples/scripting/ |
D | dictionary.c | 89 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/ |
D | file-backed-bitmap.cc | 220 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/ |
D | icing-flash-bitmap.cc | 313 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/ |
D | decompose_resource_ops.cc | 181 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/ |
D | cl_arguments.cc | 40 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/ |
D | metal_arguments.cc | 35 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/ |
D | python.rst | 713 char *new_word = (strdup(word)); 714 new_word = strip(&new_word); 717 new_node->word = new_word; 722 insert(*dictionary, new_word);
|