HomeSort by relevance Sort by last modified time
    Searched refs:digit (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /netvirt/usr/src/lib/libresolv2/common/inet/
inet_network.c 78 int digit; local
81 val = 0; base = 10; digit = 0;
83 digit = 1, base = 8, cp++;
92 digit = 1;
99 digit = 1;
104 if (!digit)
  /netvirt/usr/src/cmd/genmsg/
genmsg.y 58 %token <id> SETID, MSGID, DIGIT
61 %type <id> cast_setid, setid, cast_msgid, msgid, cast_digit, digit
166 cast_digit: '(' INT ')' digit { $$ = $4; }
167 | '(' CONST INT ')' digit { $$ = $5; }
168 | digit
171 digit: digit '+' digit { $$ = $1 + $3; } label
172 | digit '-' digit { $$ = $1 - $3;
    [all...]
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/
numeric.c 203 "Illegal binary digit '%c' ignored", *s);
234 The scan stops at the end of the string, or the first non-hex-digit character.
318 "Illegal hexadecimal digit '%c' ignored", *s);
363 int digit = *s - '0'; local
364 if (digit >= 0 && digit <= 7) {
371 value = (value << 3) | digit;
388 value_nv += (NV)digit;
391 if (digit == ('_' - '0') && len && allow_underscores
392 && (digit = s[1] - '0') && (digit >= 0 && digit <= 7)
566 int digit = *s - '0'; local
829 I32 digit = 0; local
    [all...]
  /netvirt/usr/src/lib/libbc/libc/gen/sys5/
assert.c 50 int div, digit; local
61 if ((digit = line_num/div) != 0 || p != &linestr[7] || div == 1)
62 *p++ = digit + '0';
  /netvirt/usr/src/common/bignum/
mont_mulf.c 251 double digit, m2j, a, b; local
263 digit = mod(lower32(a, Zero) * dn0, TwoToMinus16, TwoTo16);
268 a = pdtj[0] + pdn[0] * digit;
274 pdtj[2 * i] += pdm1[i] * m2j + pdn[i] * digit;
281 digit = mod(lower32(b, Zero) * dn0,
304 digit = mod(lower32(a, Zero) * dn0, TwoToMinus16, TwoTo16);
310 a = pdtj[0] + pdn_0 * digit;
314 pdtj[2] += pdm1[1] *m2j + pdn[1] * digit;
315 pdtj[4] += pdm1[2] *m2j + pdn[2] * digit;
316 pdtj[6] += pdm1[3] *m2j + pdn[3] * digit;
    [all...]
bignum.h 109 #define BIG_MUL_SET_VEC(r, a, len, digit) \
110 (*big_mul_set_vec_impl)(r, a, len, digit)
111 #define BIG_MUL_ADD_VEC(r, a, len, digit) \
112 (*big_mul_add_vec_impl)(r, a, len, digit)
119 (uint32_t *r, uint32_t *a, int len, uint32_t digit);
121 (uint32_t *r, uint32_t *a, int len, uint32_t digit);
129 #define BIG_MUL_SET_VEC(r, a, len, digit) big_mul_set_vec(r, a, len, digit)
130 #define BIG_MUL_ADD_VEC(r, a, len, digit) big_mul_add_vec(r, a, len, digit)
    [all...]
  /netvirt/usr/src/common/bignum/amd64/
bignum_amd64.c 108 big_mul_set_vec(uint32_t *r, uint32_t *a, int alen, uint32_t digit)
111 return (big_mul_set_vec32(r, a, alen, digit));
113 return (big_mul_set_vec64(P64(r), P64(a), alen / 2, digit));
116 big_mul_add_vec(uint32_t *r, uint32_t *a, int alen, uint32_t digit)
119 return (big_mul_add_vec32(r, a, alen, digit));
121 return (big_mul_add_vec64(P64(r), P64(a), alen / 2, digit));
153 big_mul_set_vec32(uint32_t *r, uint32_t *a, int alen, uint32_t digit)
157 d = (uint64_t)digit;
171 big_mul_add_vec32(uint32_t *r, uint32_t *a, int alen, uint32_t digit)
175 d = (uint64_t)digit;
    [all...]
bignum_amd64_asm.s 37 big_mul_set_vec64(uint64_t *r, uint64_t *a, int len, uint64_t digit)
42 big_mul_add_vec64(uint64_t *r, uint64_t *a, int len, uint64_t digit)
66 / r = a * digit, r and a are vectors of length len
67 / returns the carry digit
71 / big_mul_set_vec64(uint64_t *r, uint64_t *a, int len, uint64_t digit)
86 mulq %rcx / p = a[0] * digit
94 mulq %rcx / p = a[1] * digit
102 mulq %rcx / p = a[2] * digit
110 mulq %rcx / p = a[3] * digit
118 mulq %rcx / p = a[4] * digit
    [all...]
  /netvirt/usr/src/cmd/tbl/
tm.c 36 (str>p && digit(*(str-1)) ||
37 digit(*(str+1))))
43 if (digit( * (str-1) ) && !ineqn(str, p))
ts.c 59 digit(int x) function
  /netvirt/usr/src/cmd/time/
time.c 146 char digit[9]; local
157 digit[i] = a % quant[i];
163 c = (digit[i] != 0) ? digit[i]+'0' : (nonzero ? '0': pad[i]);
166 nonzero |= digit[i];
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/t/
is.t 34 '0' => [ qw(print graph alnum digit xdigit) ],
35 '9' => [ qw(print graph alnum digit xdigit) ],
57 '' => [ qw(print graph alnum alpha lower upper digit xdigit
  /netvirt/usr/src/common/bignum/i386/
bignum_i386.c 77 (*big_mul_set_vec_impl)(uint32_t *r, uint32_t *a, int len, uint32_t digit)
81 (*big_mul_add_vec_impl)(uint32_t *r, uint32_t *a, int len, uint32_t digit)
92 big_mul_set_vec_init(uint32_t *r, uint32_t *a, int len, uint32_t digit)
95 return ((*big_mul_set_vec_impl)(r, a, len, digit));
99 big_mul_add_vec_init(uint32_t *r, uint32_t *a, int len, uint32_t digit)
102 return ((*big_mul_add_vec_impl)(r, a, len, digit));
  /netvirt/usr/src/common/mpi/
mplogic.c 179 integer a, as long as bit lsbNum is in the high order digit of a.
185 mp_digit * digit = MP_DIGITS(a) + lsWndx; local
193 mask &= (digit[0] >> rshift);
195 mask &= ((digit[0] >> rshift) | (digit[1] << (MP_DIGIT_BIT - rshift)));
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
asn1_encode.c 45 int digit; local
49 digit = (int) (valcopy&0xFF);
50 retval = asn1buf_insert_octet(buf,(asn1_octet) digit);
56 if((val > 0) && ((digit&0x80) == 0x80)) { /* make sure the high bit is */
60 }else if((val < 0) && ((digit&0x80) != 0x80)){
115 int digit; local
119 digit = (int) (valcopy&0xFF);
120 retval = asn1buf_insert_octet(buf,(asn1_octet) digit);
126 if(digit&0x80) { /* make sure the high bit is */
  /netvirt/usr/src/lib/libc/port/fp/
qdivrem.c 47 #define B (1 << HALF_BITS) /* digit base */
49 /* Combine two `digits' to make a single two-digit number. */
54 typedef unsigned short digit; typedef
56 typedef ulong_t digit; typedef
65 shl(digit *p, int len, int sh)
86 digit *u, *v, *q;
87 digit v1, v2;
90 digit uspace[5], vspace[5], qspace[5];
140 digit q1, q2, q3, q4;
168 * there is a complete four-digit quotient at &qspace[1] whe
    [all...]
  /netvirt/usr/src/lib/libbc/libc/stdio/common/
doscan.c 356 int digit; local
357 digit = c - '0';
360 if (digit >= 8)
363 lcval = (lcval<<3) + digit;
370 lcval = (((lcval<<2) + lcval)<<1) + digit;
372 lcval = (lcval<<4) + digit;
382 int digit; local
383 digit = c - (isupper(c) ? 'A' - 10 : 'a' - 10);
385 lcval = (lcval<<4) + digit;
  /netvirt/usr/src/lib/libc/port/gen/
ecvt.c 116 int digit = value/pow10; local
117 *p++ = digit + '0';
118 value -= digit * pow10;
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/t/lib/Math/BigInt/
BareCalc.pm 26 acmp len digit zeros
  /netvirt/usr/src/common/openssl/crypto/ec/
ec_mult.c 185 * with the exception that the most significant digit may be only
186 * w-1 zeros away from that next non-zero digit.
212 r = OPENSSL_malloc(len + 1); /* modified wNAF may be one digit longer than binary representation
226 int digit = 0; local
236 digit = window_val - next_bit; /* -2^w < digit < 0 */
243 * so using a positive digit here will decrease
246 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
252 digit = window_val; /* 0 < digit < 2^w *
636 int digit = wNAF[i][k]; local
    [all...]
  /netvirt/usr/src/lib/libmp/common/
util.c 153 * Convert hex digit to binary value
176 short digit; local
183 digit = xtoi(*key);
184 if (digit < 0) {
187 d = mp_itom(digit);
  /netvirt/usr/src/cmd/man/src/util/nsgmls.src/lib/
TokenMessageArg.cxx 63 case Syntax::digit:
64 fragment = &ParserMessages::digit;
  /netvirt/usr/src/lib/libast/common/tm/
tmdata.c 162 static char digit[] = "0123456789"; variable
276 Tm_data_t _tm_data_ = { format, lex, digit, days, sum, leap, zone };
  /netvirt/usr/src/lib/libshell/common/features/
math.sh 152 * first byte is two-digit octal number. Last digit is number of args
153 * first digit is 0 if return value is double, 1 for integer
  /netvirt/usr/src/cmd/sgs/lex/common/
sub1.c 86 digit(int c) function
218 if (!digit(*s) && *s != '-')
225 if (!digit(*s))
291 if (digit((dd = *++*ss)) ||
295 while (digit(dd) ||
298 if (digit(dd))
403 if (digit((dd = gch())) ||
407 while (digit(dd) ||
410 if (digit(dd))
416 if (!digit(peek) &
    [all...]

Completed in 5759 milliseconds

1 2 3 4 5