Searched refs:digits (Results 1 - 25 of 37) sorted by relevance

12

/osnet-11/usr/src/lib/libsocket/inet/
H A Dlink_addr.c70 int idx = 0, numcolons = 0, digits = 0; local
82 * consecutive :'s, excessive digits per element
91 digits = 0;
95 digits++;
98 if (digits > 2)
104 (digits > 2)) {
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfstrtof.h153 int digits; member in struct:S2F_part_s
205 register int digits; local
245 digits = 0;
263 digits++;
270 fraction = digits;
310 m -= 4 * (digits - fraction);
340 digits++;
398 digits++;
404 parts[part].digits = digits;
[all...]
/osnet-11/usr/src/lib/libresolv2/common/inet/
H A Dinet_net_pton.c64 static const char digits[] = "0123456789"; local
103 n = strchr(digits, ch) - digits;
132 n = strchr(digits, ch) - digits;
191 static const char digits[] = "0123456789"; local
201 pch = strchr(digits, ch);
206 val += (pch - digits);
221 static const char digits[] = "0123456789"; local
232 pch = strchr(digits, c
270 int digits; local
[all...]
H A Dinet_cidr_pton.c82 static const char digits[] = "0123456789"; variable
94 n = strchr(digits, ch) - digits;
263 cp = strchr(digits, ch);
267 bits += cp - digits;
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_ttl.c99 int ch, digits, dirty; local
103 digits = 0;
111 digits++;
114 if (digits == 0)
128 digits = 0;
131 if (digits > 0) {
H A Dns_name.c49 static const char digits[] = "0123456789"; variable
161 *dn++ = digits[c / 100];
162 *dn++ = digits[(c % 100) / 10];
163 *dn++ = digits[c % 10];
251 else if ((cp = strchr(digits, c)) != NULL) {
252 n = (cp - digits) * 100;
254 (cp = strchr(digits, c)) == NULL) {
258 n += (cp - digits) * 10;
260 (cp = strchr(digits, c)) == NULL) {
264 n += (cp - digits);
[all...]
/osnet-11/usr/src/lib/libnsl/nss/
H A Dinet_pton.c84 static const char digits[] = "0123456789"; local
94 if ((pch = strchr(digits, ch)) != NULL) {
95 uint_t new = *tp * 10 + (pch - digits);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dvasnprintf.c478 /* Allocate room for a_len+2 digits.
479 (Need a_len+1 digits for the real division and 1 more digit for the
812 Return the allocated memory - containing the decimal digits in low-to-high
841 /* Store the remainder as 9 decimal digits. */
1038 Return the allocated memory - containing the decimal digits in low-to-high
1055 char *digits; local
1251 digits = convert_to_decimal (z, extra_zeroes);
1253 return digits;
1260 Return the allocated memory - containing the decimal digits in low-to-high
1278 Return the allocated memory - containing the decimal digits i
1477 is_borderline(const char *digits, size_t precision) argument
3626 char *digits; local
3681 char *digits; local
3816 char *digits; local
4091 char *digits; local
4143 char *digits; local
4290 char *digits; local
[all...]
/osnet-11/usr/src/lib/libc/i386/gen/
H A D_mul64.s32 / We essentially do multiply by longhand, using base 2**32 digits.
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_reass.c85 int digits = 0; local
104 digits = *e - '0';
107 value = (value * base) + digits;
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dev_timers.c49 static const char *const digits = "0123456789"; variable
91 unsigned int scale_digits; /* digits to shift fixed-point */
103 ep += strspn(ep, digits);
106 ep += strspn(ep, digits);
658 /* copy integer digits (before '.') into buf */
659 int_digits = strspn(nptr, digits);
661 /* too many digits */
665 frac_digits = strspn(nptr, digits);
678 /* copy fraction digits (after '.') into buf */
679 frac_digits = strspn(nptr, digits);
[all...]
/osnet-11/usr/src/lib/libshell/common/include/
H A Dshlex.h43 int digits; /* numerical value with word token */ member in struct:_shlex_
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Text/
H A DSoundex.pm102 character being an upper case letter and the remaining three being digits.
141 space (single letter plus 3 digits) no inference can be made about the
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigInt.pm2053 # accuracy: +$n preserve $n digits from left,
2054 # -$n preserve $n digits from right (f.i. for 0.1234 style in MBF)
2071 # we have fewer digits than we want to scale to
2102 # closer at the remaining digits of the original $x, remember decision
2497 # strip underscores between digits
2652 $x->bround($n); # accuracy: preserve $n digits
2668 $x->length(); # return number of digits in number
2670 # latter is always 0 digits long for BigInt's
2716 your input if you want BigInt to see all the digits:
2721 You can include one underscore between any two digits
[all...]
H A DBigFloat.pm62 # some digits of accuracy for blog(undef,10); which we use in blog() for speed
661 return $x->badd($self->bone(),@r); # digits after dot
696 return $x->badd($self->bone('-'),@r); # digits after dot
896 # a time hog if the input has many digits, since over and below will
897 # accumulate more and more digits, and the result will also have many
898 # digits, but in the end it is rounded to $scale digits anyway. So if we
902 # 0.1234500000001 and we round it to 5 digits it would become 0.12346, but
904 # for the end result? So we give $over and $below 4 more digits to be
947 # calculate nr of digits befor
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/PPPort/
H A DPPPort.pm971 /* UVs are at least 32 bits, so the first 9 decimal digits cannot
1012 /* Now got 9 digits, so need to check
1028 skip the remaining digits, don't
1061 while (s < send && isDIGIT(*s)) /* optional digits after the radix */
1067 /* no digits before the radix means we need digits after it */
/osnet-11/usr/src/lib/libc/port/print/
H A Ddoprnt.c545 /* Pointer to a translate table for digits of whatever radix */
548 /* Pointer to a translate table for digits of whatever radix */
1199 /* Set translate table for digits */
1202 /* Set translate table for digits */
1222 /* Develop the digits of the value */
1575 /* Emit the digits before the decimal point */
2272 static const wchar_t digits[] = L"01234567890"; local
2275 static const char digits[] = "01234567890";
2297 if (fmt[n = STRSPN(fmt, digits)] == '$') {
2352 fmt += STRSPN(fmt, digits);
2471 static const wchar_t digits[] = L"01234567890"; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/
H A DQuotedPrint.pm43 digits.
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dlex.c357 lp->digits=(c=='#'?3:1);
361 lp->digits=2;
526 lp->digits = (c=='>');
574 lp->digits = -1;
596 lp->digits = 1;
1316 lp->digits = (n-'0');
1392 lp->digits = state[1];
1431 lp->digits = c;
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_mkupdate.c749 static char digits[] = "0123456789"; variable
801 (strchr(digits, c) - digits);
/osnet-11/usr/src/lib/libcmd/common/
H A Dod.c186 int digits; member in struct:Size_s
850 for (m = 0, i = zp->digits; i-- > 0; m = m * 10 + 9);
854 prec = zp->digits;
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_printf.c826 int digits = 0; local
856 if (dot == 0 && digits == 0 && c == '0') {
871 digits++;
910 digits = 0;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/
H A DHiRes.pm166 only outputs 15 digits. In this case that means ten digits before the
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDigest.pm115 A twice as long string of lowercase hexadecimal digits.
H A Dbigint.pm233 integer. Negative values mean a fixed number of digits after the dot, and

Completed in 97 milliseconds

12