Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 6 of 6) sorted by relevance

/busybox-1.35.0/shell/
Dmath.c536 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/
Dnegative_arith.tests6 # The [...] is [0-9], interpreted as: "any digit"
/busybox-1.35.0/shell/ash_test/ash-quoting/
Dnegative_arith.tests6 # The [...] is [0-9], interpreted as: "any digit"
/busybox-1.35.0/testsuite/tr/
Dtr-works16 run_tr 012 '[:digit:]' abcdefghi
/busybox-1.35.0/docs/
Dtar_pax.txt34 blocks for files of typeflag 1 (the digit one) (hard link) may be
/busybox-1.35.0/miscutils/
Dbc.c5621 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()