Home
last modified time | relevance | path

Searched refs:new_high (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Dint64-lowering.h56 void ReplaceNode(Node* old, Node* new_low, Node* new_high);
Dint64-lowering.cc988 void Int64Lowering::ReplaceNode(Node* old, Node* new_low, Node* new_high) { in ReplaceNode() argument
990 DCHECK(new_low != nullptr || new_high == nullptr); in ReplaceNode()
992 replacements_[old->id()].high = new_high; in ReplaceNode()
/external/v8/src/objects/
Dbigint.cc1398 digit_t new_high = 0; in InternalMultiplyAdd() local
1399 current = digit_mul(current, factor, &new_high); in InternalMultiplyAdd()
1406 high = new_high; in InternalMultiplyAdd()