Lines Matching defs:zeros
314 // Skip leading zeros and compute number of digits in magnitude
374 // Skip leading zeros and compute number of digits in magnitude
1219 * the result into z. There will be no leading zeros in the resultant array.
1477 // shifts a up to len right n bits assumes no leading zeros, 0<n<32
1488 // shifts a up to len left n bits assumes no leading zeros, 0<=n<32
1744 // Pad table[0] with leading zeros so its length is at least modLen
2437 // Count the trailing zeros in the magnitude
2653 // Append remaining digit groups padded with leading zeros
2655 // Prepend (any) leading zeros for this digit group
2658 buf.append(zeros[numLeadingZeros]);
2664 /* zero[i] is a string of i consecutive zeros. */
2665 private static String zeros[] = new String[64];
2667 zeros[63] =
2670 zeros[i] = zeros[63].substring(0, i);