/src/usr.bin/pr/ |
pr.c | 114 static const char digs[] = "0123456789"; /* page number translation map */ variable in typeref:typename:const char[] 1439 *--pt = digs[line % 10];
|
pr.c | 114 static const char digs[] = "0123456789"; /* page number translation map */ variable in typeref:typename:const char[] 1439 *--pt = digs[line % 10];
|
/src/sbin/nvmectl/ |
bignum.c | 2248 fast_col_array_multiply(mp_int * a, mp_int * b, mp_int * c, int digs) 2256 if (c->alloc < digs) { 2257 if ((res = mp_grow(c, digs)) != MP_OKAY) { 2263 pa = MIN(digs, a->used + b->used); 2337 /* multiplies |a| * |b| and only computes upto digs digits of result 2342 basic_multiply_partial_lower(mp_int * a, mp_int * b, mp_int * c, int digs) 2351 if (can_use_fast_column_array(digs, MIN(a->used, b->used))) { 2352 return fast_col_array_multiply(a, b, c, digs); 2355 if ((res = mp_init_size(&t, digs)) != MP_OKAY) { 2358 t.used = digs; 2424 int digs = a->used + b->used + 1; local in function:signed_multiply 3741 int ix, res, digs; local in function:mp_montgomery_reduce 4899 int res, digs; local in function:mp_radix_size 4961 int res, digs; local in function:mp_toradix_n [all...] |
bignum.c | 2248 fast_col_array_multiply(mp_int * a, mp_int * b, mp_int * c, int digs) 2256 if (c->alloc < digs) { 2257 if ((res = mp_grow(c, digs)) != MP_OKAY) { 2263 pa = MIN(digs, a->used + b->used); 2337 /* multiplies |a| * |b| and only computes upto digs digits of result 2342 basic_multiply_partial_lower(mp_int * a, mp_int * b, mp_int * c, int digs) 2351 if (can_use_fast_column_array(digs, MIN(a->used, b->used))) { 2352 return fast_col_array_multiply(a, b, c, digs); 2355 if ((res = mp_init_size(&t, digs)) != MP_OKAY) { 2358 t.used = digs; 2424 int digs = a->used + b->used + 1; local in function:signed_multiply 3741 int ix, res, digs; local in function:mp_montgomery_reduce 4899 int res, digs; local in function:mp_radix_size 4961 int res, digs; local in function:mp_toradix_n [all...] |