Searched refs:digit (Results 51 - 75 of 94) sorted by relevance

1234

/freebsd-current/contrib/openbsm/bin/auditdistd/
H A Dproto_tcp.c80 intmax_t digit, num; local
87 goto invalid; /* Non-digit character. */
88 digit = *str - '0';
89 if (num > num * 10 + digit)
91 num = num * 10 + digit;
/freebsd-current/sbin/hastd/
H A Dproto_tcp.c74 intmax_t digit, num; local
81 goto invalid; /* Non-digit character. */
82 digit = *str - '0';
83 if (num > num * 10 + digit)
85 num = num * 10 + digit;
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c398 /* Type flag must be null, digit or A-Z, a-z. */
993 "Malformed Solaris ACL attribute (invalid digit)");
2160 char digit; local
2176 digit = *p - '0';
2178 (s == limit && digit > last_digit_limit)) {
2182 s = (s * 10) + digit;
2485 int base, digit; local
2509 digit = *p - '0';
2510 if (l > limit || (l == limit && digit > last_digit_limit))
2513 l = (l * base) + digit;
2649 int digit, sign; local
[all...]
H A Darchive_write_set_format_pax.c244 int digit, i; local
256 for (digit = 0, i = 10; i > 0 && digit == 0; i--) {
257 digit = nanos % 10;
264 *--t = "0123456789"[digit];
265 digit = nanos % 10;
346 * chars, then adding the 2 digit length "99" will force the
347 * total length past 100, requiring an extra digit. The next
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DOrdinals.pm760 symbol = ( letter | "_" ), { letter | digit | "_" };
765 platform = ( letter | "_" ) { letter | digit | "_" };
768 feature = ( letter | "_" ) { letter | digit | "_" };
769 number = digit, { digit };
771 (C<letter> and C<digit> are assumed self evident)
/freebsd-current/contrib/dialog/
H A Dtimebox.c388 int digit = (key - '0'); local
389 int value = (obj->value * 10) + digit;
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-printers.cc319 char digit = static_cast<char>(carry % 10); local
320 *--p = static_cast<char>('0' + digit);
351 // interpreted as another hexadecimal digit in its number. Break string to
/freebsd-current/contrib/bmake/unit-tests/
H A Dcond-token-string.mk30 # quoted string literal or a number that starts with a digit.
H A Dvarmod-to-separator.mk186 # The digit '8' is not an octal digit though.
238 # interpreted an "octal escape" as decimal if the first digit was not '0'.
H A Dvarmod-mtime.mk37 # The fallback timestamp must start with a digit, and it is interpreted as a
/freebsd-current/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y867 int ret, dec, multby, digit;
877 digit = dec%10;
878 if (digit > 7) {
882 ret += digit * multby;
H A Dftpcmd.c2704 int ret, dec, multby, digit;
2714 digit = dec%10;
2715 if (digit > 7) {
2719 ret += digit * multby;
2701 int ret, dec, multby, digit; local
/freebsd-current/include/xlocale/
H A D_ctype.h125 XLOCALE_ISCTYPE(digit, _CTYPE_D)
/freebsd-current/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h130 /// calculating the digit sequence of the exponent.
148 /// any real digits (not digit separators).
155 /// Ensure that we don't have a digit separator here.
160 /// Return a pointer to the first non-hex digit or End.
168 /// Return a pointer to the first non-hex digit or End.
177 /// Return a pointer to the first non-hex digit or End.
185 /// Return a pointer to the first non-binary digit or End.
/freebsd-current/cddl/usr.sbin/dwatch/
H A Ddwatch255 /[[:digit:]]+ drops? on CPU [[:digit:]]+/ { next }
259 /invalid address \(0x[[:xdigit:]]+\) in action #[[:digit:]]+/ { next }
260 /out of scratch space in action #[[:digit:]]+/ { next }
1138 ansi = "(\\033\\[[[:digit:];]+m)?"
1139 num = year = day = "[[:digit:]]+"
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp697 const ctype_base::mask ctype_base::digit; member in class:ctype_base
928 digit | print | xdigit, digit | print | xdigit,
929 digit | print | xdigit, digit | print | xdigit,
930 digit | print | xdigit, digit | print | xdigit,
931 digit | print | xdigit, digit | print | xdigit,
932 digit | prin
[all...]
/freebsd-current/contrib/ntp/util/
H A Dtg.c45 * code is delayed one bit and the next digit (tens) needs only three
118 #define DEC 2 /* decrement to next digit */
228 void digit(int); /* encode digit */
/freebsd-current/libexec/ftpd/
H A Dftpcmd.y980 int ret, dec, multby, digit;
990 digit = dec%10;
991 if (digit > 7) {
995 ret += digit * multby;
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_nfsdsubs.c1721 * Translate an ASCII hex digit to it's binary value. Return -1 if the
1722 * char isn't a hex digit.
1888 char digit; local
1984 * percent == 1 -> indicates "get first hex digit"
1985 * percent == 2 -> indicates "get second hex digit"
1988 digit = nfsrv_hexdigit(*fromcp, &error);
1995 val = (digit << 4);
1998 val += digit;
/freebsd-current/stand/ficl/
H A Dwords.c213 unsigned digit; local
248 digit = ch - '0';
250 if (digit > 9)
251 digit = tolower(ch) - 'a' + 10;
253 if (digit >= base)
256 accum = accum * base + digit;
2930 ** n. (n is the least-significant digit of ud1.) Convert n to external form
2976 ** Convert one digit of ud1 according to the rule for #. Continue conversion
3066 FICL_UNS digit; local
3081 digit
[all...]
/freebsd-current/sys/kern/
H A Dkern_fail.c1094 int digit = *p - '0'; local
1096 *out_decimal = *out_decimal * 10 + digit;
1097 else if (digits == PROB_DIGITS - 2 && digit >= 5)
1102 if (!digits) /* need at least one digit after '.' */
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_neoclock4x.c594 * wrap 2-digit date into 4-digit
802 int digit; local
808 digit = str[i] - '0';
809 n = 10 * n + digit;
/freebsd-current/stand/i386/zfsboot/
H A Dzfsldr.S257 das # digit
/freebsd-current/stand/i386/cdboot/
H A Dcdboot.S512 das # digit
/freebsd-current/usr.sbin/makefs/
H A Dcd9660.c1025 int numbts, digit, digits, temp, powers, count; local
1101 digit = (int)(temp / powers);
1102 temp = temp - digit * powers;
1103 sprintf(&tmp[numbts] , "%d", digit);

Completed in 395 milliseconds

1234