Searched refs:digit (Results 101 - 125 of 178) sorted by relevance

12345678

/openbsd-current/gnu/usr.bin/perl/lib/Unicode/
H A DUCD.t61 is($charinfo->{digit}, "");
98 is($charinfo->{digit}, "");
133 is($charinfo->{digit}, "");
170 is($charinfo->{digit}, undef);
208 is($charinfo->{digit}, "");
245 is($charinfo->{digit}, "");
282 is($charinfo->{digit}, "");
318 is($charinfo->{digit}, "");
355 is($charinfo->{digit}, "");
412 is($charinfo->{digit}, "");
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dreal.c1458 int dec_exp, cmp_one, digit;
1629 than R, such that this division produces the first digit.
1634 each subsequent digit. */
1636 digit = rtd_divmod (&r, &pten);
1639 if (digit == 0 && cmp_significand_0 (&r))
1643 digit = rtd_divmod (&r, &pten);
1645 gcc_assert (digit != 0);
1649 if (digit == 10)
1658 gcc_assert (digit <= 10);
1659 *p++ = digit
1454 int dec_exp, cmp_one, digit; local
[all...]
H A Ddbxout.c421 int digit = NUM % BASE; \
423 *--P = digit + '0'; \
734 unsigned int digit = low % 8;
736 *--p = '0' + digit;
741 Therefore, the next digit printed probably needs to carry
753 unsigned int digit;
759 digit = (low | ((high & high_mask) << n_leftover_bits));
762 *--p = '0' + digit;
767 digit split between low and high, high will now be zero, and
731 unsigned int digit = low % 8; local
750 unsigned int digit; local
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dreal.c1468 int dec_exp, cmp_one, digit;
1633 than R, such that this division produces the first digit.
1638 each subsequent digit. */
1640 digit = rtd_divmod (&r, &pten);
1643 if (digit == 0 && cmp_significand_0 (&r))
1647 digit = rtd_divmod (&r, &pten);
1649 if (digit == 0)
1654 if (digit == 10)
1661 else if (digit > 10)
1664 *p++ = digit
1464 int dec_exp, cmp_one, digit; local
[all...]
H A Dcppexp.c160 digit. Fast-path this very common case. */
175 /* Require at least one hex digit to classify it as hex. */
226 SYNTAX_ERROR2 ("invalid digit \"%c\" in binary constant", '0' + max_digit);
228 SYNTAX_ERROR2 ("invalid digit \"%c\" in octal constant", '0' + max_digit);
354 /* Common case of a single digit. */
380 /* We can add a digit to numbers strictly less than this without
432 append_digit (num, digit, base, precision)
434 int digit, base;
470 if (add_low + digit < add_low)
472 add_low += digit;
[all...]
/openbsd-current/libexec/ftpd/
H A Dftpcmd.y932 int ret, dec, multby, digit;
942 digit = dec%10;
943 if (digit > 7) {
947 ret += digit * multby;
/openbsd-current/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Dupgrade.inc176 } elsif ($f eq "digit") {
177 $try = qq|\$x = $CLASS->new("$args[0]"); \$x->digit($args[1]);|;
1233 &digit
H A Dbigintpm.inc180 } elsif ($f eq "digit") {
181 $try .= " \$x->digit(\$y);";
772 # test bug that $CLASS->digit($string) did not work
774 is($CLASS->digit(123, 2), 1, qq|$CLASS->digit(123, 2) = 1|);
2782 &digit
/openbsd-current/gnu/gcc/libstdc++-v3/config/locale/gnu/
H A Dctype_members.cc82 case digit:
83 __ret = __wctype_l("digit", _M_c_locale_ctype);
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/locale/gnu/
H A Dctype_members.cc79 case digit:
80 __ret = __wctype_l("digit", _M_c_locale_ctype);
/openbsd-current/gnu/llvm/clang/include/clang/Lex/
H A DLiteralSupport.h121 /// calculating the digit sequence of the exponent.
139 /// any real digits (not digit separators).
146 /// Ensure that we don't have a digit separator here.
151 /// Return a pointer to the first non-hex digit or End.
159 /// Return a pointer to the first non-hex digit or End.
168 /// Return a pointer to the first non-hex digit or End.
176 /// Return a pointer to the first non-binary digit or End.
/openbsd-current/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP/
H A Ddataconn.pm193 I<true> if the connection was closed successfully and the first digit of
/openbsd-current/gnu/usr.bin/perl/cpan/libnet/lib/Net/
H A DCmd.pm694 Returns the 3-digit code from the last command. If a command is pending
705 Returns the most significant digit of the current status code. If a command
761 Obtain a response from the server. Upon success the most significant digit
768 return an array of 2 values, the 3-digit status code and a flag which is true
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dlinux-nat.c2952 int digit;
2955 digit = *p - '0';
2957 digit = *p - 'a' + 10;
2963 if (digit & 1)
2965 if (digit & 2)
2967 if (digit & 4)
2969 if (digit & 8)
2944 int digit; local
H A Dada-lex.l370 /* True (non-zero) iff DIGIT is a valid digit in radix BASE,
374 is_digit_in_base (unsigned char digit, int base)
376 if (!isxdigit (digit))
379 return (isdigit (digit) && digit < base + '0');
381 return (isdigit (digit) || tolower (digit) < base - 10 + 'a');
465 error ("Invalid digit `%c' in based literal", *trailer);
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Dexpr.c283 short int digit; /* Value of next digit in current radix. */
284 short int maxdig = 0; /* Highest permitted digit value. */
380 (digit = hex_value (c)) < maxdig;
383 number = number * radix + digit;
396 input_line_pointer = start; /* -> 1st digit. */
407 (digit = hex_value (c)) < maxdig;
410 number = number * radix + digit;
414 /* Check for 8 digit per word max. */
481 input_line_pointer = start; /* -> 1st digit
279 short int digit; /* Value of next digit in current radix. */ local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dexpr.c254 short int digit; /* Value of next digit in current radix. */
255 short int maxdig = 0; /* Highest permitted digit value. */
354 (digit = hex_value (c)) < maxdig;
357 number = number * radix + digit;
370 input_line_pointer = start; /* -> 1st digit. */
381 (digit = hex_value (c)) < maxdig;
384 number = number * radix + digit;
388 /* Check for 8 digit per word max. */
455 input_line_pointer = start; /* -> 1st digit
250 short int digit; /* Value of next digit in current radix. */ local
[all...]
/openbsd-current/regress/lib/libc/cephes/
H A Dieee.c144 * 30 Aug 88 100 digit version, improved rounding
978 /* Find trial quotient digit (the radix is 65536). */
993 /* Multiply denominator by trial quotient digit. */
995 /* The quotient digit may have been overestimated. */
3120 long digit;
3294 /* Find the first (leading) digit. */
3300 digit = equot[NI-1];
3301 while( (digit == 0) && (ecmp(y,ezero) != 0) )
3309 digit = equot[NI-1];
3322 if( digit
3119 long digit; local
[all...]
/openbsd-current/usr.sbin/rcctl/
H A Drcctl.sh476 [[ ${_args} != +([[:digit:]]) || ${_args} -lt 0 ]] && \
480 [[ ${_args} != +([[:digit:]]) || ${_args} -le 0 ]] && \
/openbsd-current/gnu/usr.bin/perl/t/run/
H A Dfresh_perl.t728 # Illegal hexadecimal digit ' ' ignored at /usr/lib/perl5/5.8.0/utf8_heavy.pl line 152
730 /^([[:digit:]]+)/;
/openbsd-current/gnu/llvm/libcxx/src/
H A Dlocale.cpp835 const ctype_base::mask ctype_base::digit; member in class:ctype_base
1131 digit | print | xdigit, digit | print | xdigit,
1132 digit | print | xdigit, digit | print | xdigit,
1133 digit | print | xdigit, digit | print | xdigit,
1134 digit | print | xdigit, digit | print | xdigit,
1135 digit | prin
[all...]
/openbsd-current/bin/ksh/
H A Dtrap.c88 if (digit(*name)) {
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dhandy_base.pl143 digit => 'Digit',
/openbsd-current/usr.sbin/syspatch/
H A Dsyspatch.sh161 for _p in ${_PDIR}/${_OSrev}-+([[:digit:]])_+([[:alnum:]_-]); do
180 grep -Eo "syspatch${_OSrev}-[[:digit:]]{3}_[[:alnum:]_-]+" ${_sha} |
320 [[ ${_D##*/} == ${_OSrev}-+([[:digit:]])_+([[:alnum:]_-]) ]] &&
/openbsd-current/regress/usr.sbin/snmpd/
H A Dsnmp.c799 char digit[11]; local
804 snprintf(digit, sizeof(digit), "%"PRIu32, oid->bo_id[i]);
807 strlcat(buf, digit, len);

Completed in 396 milliseconds

12345678