Home
last modified time | relevance | path

Searched refs:highPart (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Ddata-view.tq244 const highPart: intptr = Signed(Convert<uintptr>(highWord));
246 let rawValue: intptr = (highPart << 32) + lowPart;
278 let highPart: int32 = Signed(highWord);
285 // If highPart < 0, the number is always negative.
286 if (highPart < 0) {
292 highPart = 0 - highPart;
294 highPart = highPart - 1;
298 // Here, highPart could be 0 again so we might have 1 or 2 digits.
299 if (highPart != 0) {
326 bigint::StoreBigIntDigit(result, 1, Unsigned(Convert<intptr>(highPart)));
/third_party/lzma/C/
D7zArcIn.c221 UInt64 highPart = (unsigned)firstByte & (unsigned)(mask - 1); in ReadNumber() local
222 *value |= (highPart << (8 * i)); in ReadNumber()