Searched refs:digit (Results 1 – 6 of 6) sorted by relevance
/busybox-1.35.0/shell/ |
D | math.c | 536 unsigned digit = (unsigned)*nptr - '0'; in strto_arith_t() local 537 if (digit >= 10 /* not 0..9 */ in strto_arith_t() 538 && digit <= 'z' - '0' /* needed to reject e.g. $((64#~)) */ in strto_arith_t() 541 digit = (unsigned)(*nptr | 0x20) - ('a' - 10); in strto_arith_t() 545 digit = 63; in strto_arith_t() 547 digit = 62; in strto_arith_t() 548 else if (digit < 36) /* A-Z */ in strto_arith_t() 549 digit += 36 - 10; in strto_arith_t() 557 if (digit >= base) in strto_arith_t() 560 n = n * base + digit; in strto_arith_t()
|
/busybox-1.35.0/shell/hush_test/hush-quoting/ |
D | negative_arith.tests | 6 # The [...] is [0-9], interpreted as: "any digit"
|
/busybox-1.35.0/shell/ash_test/ash-quoting/ |
D | negative_arith.tests | 6 # The [...] is [0-9], interpreted as: "any digit"
|
/busybox-1.35.0/testsuite/tr/ |
D | tr-works | 16 run_tr 012 '[:digit:]' abcdefghi
|
/busybox-1.35.0/docs/ |
D | tar_pax.txt | 34 blocks for files of typeflag 1 (the digit one) (hard link) may be
|
/busybox-1.35.0/miscutils/ |
D | bc.c | 5621 BcNum intp, fracp, digit, frac_len; in zxc_num_printNum() local 5634 bc_num_init(&digit, width); in zxc_num_printNum() 5646 s = zbc_num_divmod(&intp, &base, &intp, &digit, 0); in zxc_num_printNum() 5648 s = zbc_num_ulong(&digit, &dig); in zxc_num_printNum() 5674 bc_num_free(&digit); in zxc_num_printNum()
|