Lines Matching refs:result
261 // bounadaries of precision, the result can be off by one.
310 * lost if the result is greater than 2^52.
322 * if the result is greater than 2^52.
338 var result = jspb.utils.joinUint64(bitsLow, bitsHigh);
339 return sign ? -result : result;
344 * zig-zag encoding. Invokes the provided function to produce final result.
349 * the result value, takes parameters (lowBits, highBits).
372 * decoding. Precision will be lost if the result is greater than 2^52.
384 * complement encoding. Invokes the provided function to produce final result.
389 * the result value, takes parameters (lowBits, highBits).
584 var result = jspb.utils.joinUnsignedDecimalString(bitsLow, bitsHigh);
585 return negative ? '-' + result : result;
616 var result = new Array(hashes.length);
618 result[i] = jspb.utils.hash64ToDecimalString(hashes[i], signed);
620 return result;
640 // Store result as a byte array.
643 // Set result to m*result + c.
652 // Negate the result bits.
659 // For each decimal digit, set result to 10*result + digit.
722 var result = temp.join('');
723 return result;
738 var result = '';
742 result = String.fromCharCode(hi * 16 + lo) + result;
745 return result;
751 * 64-bit integer into a Javascript number. Will lose accuracy if the result is