Lines Matching defs:digit
19 * with the exception that the most significant digit may be only
20 * w-1 zeros away from that next non-zero digit.
61 * Modified wNAF may be one digit longer than binary representation
74 int digit = 0;
82 digit = window_val - next_bit; /* -2^w < digit < 0 */
89 * so using a positive digit here will decrease
93 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
97 digit = window_val; /* 0 < digit < 2^w */
100 if (digit <= -bit || digit >= bit || !(digit & 1)) {
105 window_val -= digit;
118 r[j++] = sign * digit;