Searched refs:a_high (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/base/ |
H A D | ubsan.cc | 30 uint64_t a_high = static_cast<uint64_t>(a) >> 32; in __mulodi4() local 36 uint64_t r_mid2 = a_high * b_low; in __mulodi4() 37 uint64_t r_high = a_high * b_high; in __mulodi4()
|
/third_party/node/deps/v8/src/bigint/ |
H A D | div-burnikel.cc | 22 // Compares [a_high, A] with B. 24 // - a value < 0 if [a_high, A] < B 25 // - 0 if [a_high, A] == B 26 // - a value > 0 if [a_high, A] > B. 27 int SpecialCompare(digit_t a_high, Digits A, Digits B) { in SpecialCompare() argument 30 if (a_high == 0) { in SpecialCompare() 39 if (a_high != 0) { in SpecialCompare() 40 if (a_high > B[i]) return 1; in SpecialCompare() 41 if (a_high < B[i]) return -1; in SpecialCompare()
|
H A D | digit-arithmetic.h | 99 digit_t a_high = a >> kHalfDigitBits; in digit_mul() 105 digit_t r_mid2 = a_high * b_low; in digit_mul() 106 digit_t r_high = a_high * b_high; in digit_mul()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | raw-machine-assembler.h | 546 Node* Int32PairAdd(Node* a_low, Node* a_high, Node* b_low, Node* b_high) { in Int32PairAdd() argument 547 return AddNode(machine()->Int32PairAdd(), a_low, a_high, b_low, b_high); in Int32PairAdd() 549 Node* Int32PairSub(Node* a_low, Node* a_high, Node* b_low, Node* b_high) { in Int32PairSub() argument 550 return AddNode(machine()->Int32PairSub(), a_low, a_high, b_low, b_high); in Int32PairSub() 552 Node* Int32PairMul(Node* a_low, Node* a_high, Node* b_low, Node* b_high) { in Int32PairMul() argument 553 return AddNode(machine()->Int32PairMul(), a_low, a_high, b_low, b_high); in Int32PairMul()
|
Completed in 5 milliseconds