Home
last modified time | relevance | path

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

12

/f-stack/freebsd/kern/
H A Dsubr_blist.c537 int digit; in blist_stats() local
614 int avail, digit; in blst_next_leaf_alloc() local
800 int digit; in blst_meta_alloc() local
829 digit = bitpos(mask); in blst_meta_alloc()
830 i = 1 + digit * skip; in blst_meta_alloc()
893 int digit, endDigit; in blst_meta_free() local
918 scan->bm_bitmap |= bitrange(digit, endDigit - digit); in blst_meta_free()
1016 int digit; in blst_meta_fill() local
1034 i = 1 + digit * skip; in blst_meta_fill()
1053 int digit; in blst_radix_print() local
[all …]
H A Dkern_fail.c1096 int digit = *p - '0'; in parse_number() local
1098 *out_decimal = *out_decimal * 10 + digit; in parse_number()
1099 else if (digits == PROB_DIGITS - 2 && digit >= 5) in parse_number()
/f-stack/freebsd/libkern/
H A Dqdivrem.c53 typedef unsigned short digit; typedef
55 typedef u_long digit; typedef
64 __shl(digit *p, int len, int sh) in __shl()
85 digit *u, *v, *q; in __qdivrem()
86 digit v1, v2; in __qdivrem()
89 digit uspace[5], vspace[5], qspace[5]; in __qdivrem()
139 digit q1, q2, q3, q4; in __qdivrem()
196 digit uj0, uj1, uj2; in __qdivrem()
/f-stack/freebsd/ddb/
H A Ddb_lex.c202 int r, digit = 0; in db_lex() local
225 digit = c - '0'; in db_lex()
229 digit = c - 'a' + 10; in db_lex()
231 digit = c - 'A' + 10; in db_lex()
235 db_tok_number = db_tok_number * r + digit; in db_lex()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/migration/
H A Dmigration.cfg53 ~ /^[[:digit:]]+$/') ]] || ( is_real_device $ZFS_DISK ); then
79 ~ /^[[:digit:]]+$/') ]] || ( is_real_device $ZFS_DISK ); then
87 ~ /^[[:digit:]]+$/') ]] || ( is_real_device $NONZFS_DISK ); then
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dmalloc_io.c115 uintmax_t ret, digit; in malloc_strtoumax() local
197 while ((*p >= '0' && *p <= '9' && (digit = *p - '0') < b) in malloc_strtoumax()
198 || (*p >= 'A' && *p <= 'Z' && (digit = 10 + *p - 'A') < b) in malloc_strtoumax()
199 || (*p >= 'a' && *p <= 'z' && (digit = 10 + *p - 'a') < b)) { in malloc_strtoumax()
202 ret += digit; in malloc_strtoumax()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlbaselib.c53 int digit = (isdigit((unsigned char)*s)) ? *s - '0' in luaB_tonumber() local
55 if (digit >= base) break; /* invalid numeral; force a fail */ in luaB_tonumber()
56 n = n * (lua_Number)base + (lua_Number)digit; in luaB_tonumber()
/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c450 int flag = 1, digit; \
474 digit = *ptr - '0'; \
476 digit = tolower(*ptr) - 'a' + 10; \
480 if (digit >= base) \
484 value = value * base + digit; \
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlua_cjson.c754 int digit[4]; in decode_hex4() local
761 digit[i] = hexdigit2int(hex[i]); in decode_hex4()
762 if (digit[i] < 0) { in decode_hex4()
767 return (digit[0] << 12) + in decode_hex4()
768 (digit[1] << 8) + in decode_hex4()
769 (digit[2] << 4) + in decode_hex4()
770 digit[3]; in decode_hex4()
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_inet.c67 u_char c, *zero, *digit, *s, *d; in ngx_inet6_addr() local
76 digit = NULL; in ngx_inet6_addr()
92 digit = p; in ngx_inet6_addr()
105 digit = p; in ngx_inet6_addr()
116 if (n < 2 || digit == NULL) { in ngx_inet6_addr()
120 word = ngx_inet_addr(digit, len4 - 1); in ngx_inet6_addr()
H A Dngx_resolver.c3068 ngx_int_t digit; in ngx_resolver_process_ptr() local
3122 digit = ngx_hextoi(&buf[i++], 1); in ngx_resolver_process_ptr()
3123 if (digit == NGX_ERROR) { in ngx_resolver_process_ptr()
3127 addr6.s6_addr[octet] = (u_char) digit; in ngx_resolver_process_ptr()
3133 digit = ngx_hextoi(&buf[i++], 1); in ngx_resolver_process_ptr()
3134 if (digit == NGX_ERROR) { in ngx_resolver_process_ptr()
3138 addr6.s6_addr[octet] += (u_char) (digit * 16); in ngx_resolver_process_ptr()
/f-stack/tools/libxo/doc/
H A Dxolint.rst262 'Value field name cannot start with digit'
265 The message "Value field name cannot start with digit" can be caused by code like:
277 XML element names cannot start with a digit.
H A Dfield-modifiers.rst21 \ hn-decimal Humanize: Add a decimal digit, if number < 10
175 digit when the number is less than 10 (ex: "4.4K"). The "`hn-1000`"
/f-stack/freebsd/contrib/device-tree/Bindings/pinctrl/
H A Dcnxt,cx92755-pinctrl.txt60 is an uppercase character from 'A' to 'R', and y is a digit from 0 to 7.
/f-stack/app/redis-5.0.5/deps/hiredis/
H A DCHANGELOG.md123 * Improve digit counting for multibulk creation
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dspa_misc.c1583 int digit; in zfs_strtonum() local
1587 digit = c - '0'; in zfs_strtonum()
1589 digit = 10 + c - 'a'; in zfs_strtonum()
1594 val += digit; in zfs_strtonum()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_cat.rst103 ``cpus`` could be a single digit/range or a group and must be expressed in
/f-stack/freebsd/contrib/device-tree/Bindings/powerpc/
H A Dibm,powerpc-cpu-features.txt57 The minor digit is available for revisions.
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/
H A Dblkdev.shlib228 ~ /^[[:digit:]]+$/') ]] || ( is_real_device $disk ); then
/f-stack/tools/libxo/libxo/
H A Dlibxo.c3041 int digit = 1; in xo_buf_find_last_number() local
3052 rc += (*cp - '0') * digit; in xo_buf_find_last_number()
3053 digit *= 10; in xo_buf_find_last_number()
3264 xo_bump_width (xo_format_t *xfp, int digit) in xo_bump_width() argument
3268 *ip = ((*ip > 0) ? *ip : 0) * 10 + digit; in xo_bump_width()
/f-stack/freebsd/contrib/zlib/doc/
H A Drfc1950.txt187 significant digit on the left, we also write bytes with the most-
H A Drfc1952.txt197 significant digit on the left, we also write bytes with the most-
H A Drfc1951.txt251 significant digit on the left, we also write bytes with the most-
/f-stack/dpdk/drivers/net/bnx2x/
H A Delink.c7068 uint8_t digit; in elink_format_ver() local
7079 digit = ((num & mask) >> shift); in elink_format_ver()
7080 if (digit == 0 && remove_leading_zeros) { in elink_format_ver()
7083 } else if (digit < 0xa) in elink_format_ver()
7084 *str_ptr = digit + '0'; in elink_format_ver()
7086 *str_ptr = digit - 0xa + 'a'; in elink_format_ver()
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A Dconfigure.ac1459 dnl double-digit version numbers, so iterate over patterns to support up

12