Searched refs:ValueNode (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | copy_insertion.cc | 459 struct ValueNode { struct in xla::__anon49efd3e50111::CopyRemover 460 explicit ValueNode(const HloValue* v) : value(v) {} in ValueNode() argument 471 ValueNode* prev = nullptr; argument 472 ValueNode* next = nullptr; argument 481 absl::flat_hash_map<const HloValue*, ValueNode*> value_to_node; in CopyRemover() 528 absl::flat_hash_map<const HloValue*, ValueNode*>* value_to_node) { in AddValueList() 529 ValueNode* tail = nullptr; in AddValueList() 530 ValueNode* head = nullptr; in AddValueList() 532 auto new_node = new ValueNode(value); in AddValueList() 564 const absl::flat_hash_map<const HloValue*, ValueNode*>& value_to_node) { in CreateCopyMap() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | StringTrieBuilder.java | 164 private final ValueNode registerFinalValue(int value) { in registerFinalValue() 170 return (ValueNode)oldNode; in registerFinalValue() 172 ValueNode newNode=new ValueNode(value); in registerFinalValue() 264 private static class ValueNode extends Node { class in StringTrieBuilder 265 public ValueNode() {} in ValueNode() method in StringTrieBuilder.ValueNode 266 public ValueNode(int v) { in ValueNode() method in StringTrieBuilder.ValueNode 295 ValueNode o=(ValueNode)other; in equals() 304 ValueNode node=builder.createSuffixNode(s, start, sValue); in add() 317 private static final class IntermediateValueNode extends ValueNode { 353 private static final class LinearMatchNode extends ValueNode { [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | StringTrieBuilder.java | 163 private final ValueNode registerFinalValue(int value) { in registerFinalValue() 169 return (ValueNode)oldNode; in registerFinalValue() 171 ValueNode newNode=new ValueNode(value); in registerFinalValue() 263 private static class ValueNode extends Node { class in StringTrieBuilder 264 public ValueNode() {} in ValueNode() method in StringTrieBuilder.ValueNode 265 public ValueNode(int v) { in ValueNode() method in StringTrieBuilder.ValueNode 294 ValueNode o=(ValueNode)other; in equals() 303 ValueNode node=builder.createSuffixNode(s, start, sValue); in add() 316 private static final class IntermediateValueNode extends ValueNode { 352 private static final class LinearMatchNode extends ValueNode { [all …]
|
/external/icu/icu4c/source/common/unicode/ |
D | stringtriebuilder.h | 277 class ValueNode : public Node { 279 ValueNode(int32_t initialHash) : Node(initialHash), hasValue(FALSE), value(0) {} in ValueNode() function 295 class IntermediateValueNode : public ValueNode { 298 : ValueNode(0x222222u*37u+hashCode(nextNode)), next(nextNode) { setValue(v); } in IntermediateValueNode() 312 class LinearMatchNode : public ValueNode { 315 : ValueNode((0x333333u*37u+len)*37u+hashCode(nextNode)), in LinearMatchNode() 387 class BranchHeadNode : public ValueNode { 390 : ValueNode((0x666666u*37u+len)*37u+hashCode(subNode)), in BranchHeadNode()
|
/external/icu/icu4c/source/common/ |
D | stringtriebuilder.cpp | 249 ((ValueNode *)node)->setValue(value); in makeNode() 417 StringTrieBuilder::ValueNode::operator==(const Node &other) const { in operator ==() 424 const ValueNode &o=(const ValueNode &)other; in operator ==() 433 if(!ValueNode::operator==(other)) { in operator ==() 459 if(!ValueNode::operator==(other)) { in operator ==() 592 if(!ValueNode::operator==(other)) { in operator ==()
|