/src/lib/libc/gdtoa/test/ |
dt.c | 35 * number[: mode [ndigits]] 37 * #hex0 hex1[: mode [ndigits]] 41 * (least significant) word, and mode and ndigits are 193 int mode = 0, ndigits = 17; local in function:main 208 /* sscanf(buf+1, "%lx %lx:%d %d", &x, &y, &mode, &ndigits); */ 213 sscanf(se, ":%d %d", &mode, &ndigits); 230 sscanf(se+1,"%d %d", &mode, &ndigits); 245 s = dtoa(dval(&d), mode, ndigits, &decpt, &sign, &se); 246 printf("\tdtoa(mode = %d, ndigits = %d):\n", mode, ndigits); [all...] |
/src/lib/libc/regex/ |
regcomp.c | 1083 int ndigits = 0; local in function:p_count 1087 ndigits++; 1090 (void)REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
|
/src/sbin/nvmectl/ |
bignum.c | 2326 can_use_fast_column_array(int ndigits, int used) 2328 return (((unsigned)ndigits < MP_WARRAY) && 5397 unsigned ndigits; local in function:BN_bitop 5407 ndigits = a->used; 5410 ndigits = b->used; 5412 for (i = 0 ; i < (int)ndigits ; i++) {
|