Lines Matching refs:lowBits
285 * the result value, takes parameters (lowBits, highBits).
291 var lowBits = 0;
298 lowBits |= (temp & 0x7F) << (i * 7);
304 lowBits |= (temp & 0x7F) << 28;
317 return convert(lowBits >>> 0, highBits >>> 0);
341 * the result value, takes parameters (lowBits, highBits).
358 * the result value, takes parameters (lowBits, highBits).
366 var lowBits = 0;
369 lowBits = (lowBits << 8) | bytes[i];
372 return convert(lowBits, highBits);