• Home
  • Raw
  • Download

Lines Matching full:number

56  * @type {number}
64 * @type {number}
72 * @param {number} value The number to split.
88 * @param {number} value The number to split.
121 * @param {number} value The number to split.
154 * Converts a floating-point number into 32-bit IEEE representation and stores
156 * @param {number} value
194 // Number is a denormal.
211 * Converts a floating-point number into 64-bit IEEE representation and stores
213 * @param {number} value
249 // Number is a denormal.
293 * @param {number} bitsLow
294 * @param {number} bitsHigh
295 * @return {number}
305 * @param {number} bitsLow
306 * @param {number} bitsHigh
307 * @return {number}
328 * @param {number} bitsLow
329 * @param {number} bitsHigh
330 * @return {number}
352 * Joins two 32-bit values into a 32-bit IEEE floating point number and
353 * converts it back into a Javascript number.
354 * @param {number} bitsLow The low 32 bits of the binary number;
355 * @param {number} bitsHigh The high 32 bits of the binary number.
356 * @return {number}
382 * Joins two 32-bit values into a 64-bit IEEE floating point number and
383 * converts it back into a Javascript number.
384 * @param {number} bitsLow The low 32 bits of the binary number;
385 * @param {number} bitsHigh The high 32 bits of the binary number.
386 * @return {number}
413 * @param {number} bitsLow
414 * @param {number} bitsHigh
432 * Individual digits for number->string conversion.
433 * @const {!Array.<number>}
444 * @param {number} bitsLow The low 32 bits of the binary number;
445 * @param {number} bitsHigh The high 32 bits of the binary number.
446 * @return {string} The binary number represented as a string.
449 // Skip the expensive conversion if the number is small enough to use the
455 // What this code is doing is essentially converting the input number from
472 // can be stored in a 64-bit floating point number.
516 * @param {number} bitsLow The low 32 bits of the binary number;
517 * @param {number} bitsHigh The high 32 bits of the binary number.
518 * @return {string} The binary number represented as a string.
665 * 64-bit integer into a Javascript number. Will lose accuracy if the result is
669 * number.
670 * @return {number}
682 * Convert a Javascript number into an 8-character hash string. Will lose
684 * @param {number} value The integer to convert.
695 * Counts the number of contiguous varints in a buffer.
697 * @param {number} start The starting point in the buffer to scan.
698 * @param {number} end The end point in the buffer to scan.
699 * @return {number} The number of varints in the buffer.
708 // The number of varints in the buffer equals the size of the buffer minus
709 // the number of non-terminal bytes in the buffer (those with the high bit
716 * Counts the number of contiguous varint fields with the given field number in
719 * @param {number} start The starting point in the buffer to scan.
720 * @param {number} end The end point in the buffer to scan.
721 * @param {number} field The field number to count.
722 * @return {number} The number of matching fields in the buffer.
770 * Counts the number of contiguous fixed32 fields with the given tag in the
773 * @param {number} start The starting point in the buffer to scan.
774 * @param {number} end The end point in the buffer to scan.
775 * @param {number} tag The tag value to count.
776 * @param {number} stride The number of bytes to skip per field.
777 * @return {number} The number of fields with a matching tag in the buffer.
819 * Counts the number of contiguous fixed32 fields with the given field number
822 * @param {number} start The starting point in the buffer to scan.
823 * @param {number} end The end point in the buffer to scan.
824 * @param {number} field The field number to count.
825 * @return {number} The number of matching fields in the buffer.
834 * Counts the number of contiguous fixed64 fields with the given field number
837 * @param {number} start The starting point in the buffer to scan.
838 * @param {number} end The end point in the buffer to scan.
839 * @param {number} field The field number to count
840 * @return {number} The number of matching fields in the buffer.
849 * Counts the number of contiguous delimited fields with the given field number
852 * @param {number} start The starting point in the buffer to scan.
853 * @param {number} end The end point in the buffer to scan.
854 * @param {number} field The field number to count.
855 * @return {number} The number of matching fields in the buffer.
914 * @param {string|number|boolean} scalar The scalar to stringify.
964 data = /** @type {!Array.<number>} */(data);