Lines Matching refs:highBits
285 * the result value, takes parameters (lowBits, highBits).
292 var highBits = 0;
305 highBits |= (temp & 0x7F) >> 4;
312 highBits |= (temp & 0x7F) << (i * 7 + 3);
317 return convert(lowBits >>> 0, highBits >>> 0);
341 * the result value, takes parameters (lowBits, highBits).
358 * the result value, takes parameters (lowBits, highBits).
367 var highBits = 0;
370 highBits = (highBits << 8) | bytes[i + 4];
372 return convert(lowBits, highBits);