Lines Matching refs:value
273 * function with the value in two signed 32 bit integers to produce the result.
274 * Since this does not convert the value to a number, no precision is lost.
285 * the result value, takes parameters (lowBits, highBits).
328 * the conversion function with the value in two signed 32 bit integers to
329 * produce the result. Since this does not convert the value to a number, no
341 * the result value, takes parameters (lowBits, highBits).
353 * Reads a 64-bit fixed-width value from the stream and invokes the conversion
354 * function with the value in two signed 32 bit integers to produce the result.
355 * Since this does not convert the value to a number, no precision is lost.
358 * the result value, takes parameters (lowBits, highBits).
389 * to know the value we're skipping backwards over or things are ambiguous.
390 * @param {number} value The varint value to unskip.
392 jspb.BinaryDecoder.prototype.unskipVarint = function(value) {
393 while (value > 128) {
395 value = value >>> 7;
493 * Reads a 32-bit unsigned variant and returns its value as a string.
501 var value = this.readUnsignedVarint32();
502 return value.toString();
507 * Reads a 32-bit signed variant and returns its value as a string.
515 var value = this.readSignedVarint32();
516 return value.toString();
538 * precision lost if the absolute value of the varint is larger than 2^53.
549 * Reads an unsigned 64-bit varint from the binary stream and returns the value
562 * precision lost if the absolute value of the varint is larger than 2^53.
573 * Reads an signed 64-bit varint from the binary stream and returns the value
586 * there will be precision lost if the absolute value of the varint is larger
619 * returns its value as a string.
679 * precision lost if the absolute value of the integer is larger than 2^53.
694 * precision lost if the absolute value of the integer is larger than 2^53.
751 * precision lost if the absolute value of the integer is larger than 2^53.
804 * Reads a boolean value from the binary stream.
813 * Reads an enum value from the binary stream, which are always encoded as
815 * @return {number} The enum value read from the binary stream.
863 // 2. Split this into the high 10-bit value and the low 10-bit value
864 // 3. Add 0xD800 to the high value to form the high surrogate
865 // 4. Add 0xDC00 to the low value to form the low surrogate:
921 * @return {string} The hash value.
929 * Reads a 64-bit fixed-width value from the stream and returns it as an
932 * @return {string} The hash value.