Searched refs:digits (Results 51 - 75 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/ntp-88/lib/isc/
H A Dinet_pton.c83 static const char digits[] = "0123456789"; local
93 if ((pch = strchr(digits, ch)) != NULL) {
94 unsigned int new = *tp * 10 + (pch - digits);
H A Dbase64.c103 int digits; /*%< Number of buffered base64 digits */ member in struct:__anon11423
111 ctx->digits = 0;
125 ctx->val[ctx->digits++] = s - base64;
126 if (ctx->digits == 4) {
163 ctx->digits = 0;
172 if (ctx->digits != 0)
H A Dbase32.c139 int digits; /*%< Number of buffered base32 digits */ member in struct:__anon11422
150 ctx->digits = 0;
184 switch (ctx->digits) {
216 ctx->val[ctx->digits++] = (last == 32) ? 0 : last;
218 if (ctx->digits == 8) {
238 ctx->digits = 0;
247 if (ctx->digits != 0)
H A Dstring.c32 static char digits[] = "0123456789abcdefghijklmnoprstuvwxyz"; variable
71 if ((o = strchr(digits, c)) == NULL) {
76 if ((o - digits) >= base) {
87 if ((tmp + (o - digits)) < tmp) {
91 tmp += o - digits;
/macosx-10.9.5/rsync-42/rsync/lib/
H A Dinet_pton.c79 static const char digits[] = "0123456789"; local
89 if ((pch = strchr(digits, ch)) != NULL) {
90 unsigned int new = *tp * 10 + (pch - digits);
/macosx-10.9.5/xnu-2422.115.4/libkern/net/
H A Dinet_pton.c75 static const char digits[] = "0123456789"; local
86 if ((pch = strchr(digits, ch)) != NULL) {
87 u_int new = *tp * 10 + (pch - digits);
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Dsoaserial.c194 int digits; local
210 digits = eos - pos;
211 if ( digits < 10 ) /* not enough space for serial no ? */
224 fprintf (fp, "%-*lu", digits, serial); /* write as many chars as before */
/macosx-10.9.5/tcpdump-56/tcpdump/missing/
H A Dinet_ntop.c66 const char digits[] = "0123456789"; local
81 *dst++ = digits[n / 100];
86 *dst++ = digits[n / 10];
90 *dst++ = digits[n];
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_string_sprintf.c54 static const char *digits = "0123456789abcdef"; local
57 archive_strappend_char(as, digits[d % base]);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dbase64.c105 int digits; /*%< Number of buffered base64 digits */ member in struct:__anon6589
113 ctx->digits = 0;
127 ctx->val[ctx->digits++] = s - base64;
128 if (ctx->digits == 4) {
165 ctx->digits = 0;
174 if (ctx->digits != 0)
H A Dbase32.c141 int digits; /*%< Number of buffered base32 digits */ member in struct:__anon6588
152 ctx->digits = 0;
186 switch (ctx->digits) {
218 ctx->val[ctx->digits++] = (last == 32) ? 0 : last;
220 if (ctx->digits == 8) {
240 ctx->digits = 0;
249 if (ctx->digits != 0)
H A Dstring.c32 static char digits[] = "0123456789abcdefghijklmnoprstuvwxyz"; variable
71 if ((o = strchr(digits, c)) == NULL) {
76 if ((o - digits) >= base) {
87 if ((tmp + (o - digits)) < tmp) {
91 tmp += o - digits;
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrftime.c112 static int _conv _ANSI_ARGS_((int n, int digits, int pad));
436 _conv(n, digits, pad)
437 int n, digits;
446 *p-- = '0'; --digits;
448 for (; n > 0 && p > buf; n /= 10, --digits)
451 while (p > buf && digits-- > 0)
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DgiantIntegers.c531 * Adjust sign for possible leading (m.s.) zero digits
712 /* first handle the common digits */
805 /* adjust sign for leading zero digits */
1035 int digits = 1 + (bits >> GIANT_LOG2_BITS_PER_DIGIT); local
1051 if((size+digits) > (int)g->capacity) {
1055 k = size - 1 + digits; // (MSD of result + 1)
1059 * other sizes. rem=0 means we're shifting strictly by digits, no
1085 k = size - 1 + digits;
1098 int digits = bits >> GIANT_LOG2_BITS_PER_DIGIT; local
1109 if (digits >
1157 int digits = n >> GIANT_LOG2_BITS_PER_DIGIT; local
1243 unsigned digits = 1 + ((n-1) >> GIANT_LOG2_BITS_PER_DIGIT); local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DgiantIntegers.c531 * Adjust sign for possible leading (m.s.) zero digits
712 /* first handle the common digits */
805 /* adjust sign for leading zero digits */
1035 int digits = 1 + (bits >> GIANT_LOG2_BITS_PER_DIGIT); local
1051 if((size+digits) > (int)g->capacity) {
1055 k = size - 1 + digits; // (MSD of result + 1)
1059 * other sizes. rem=0 means we're shifting strictly by digits, no
1085 k = size - 1 + digits;
1098 int digits = bits >> GIANT_LOG2_BITS_PER_DIGIT; local
1109 if (digits >
1157 int digits = n >> GIANT_LOG2_BITS_PER_DIGIT; local
1243 unsigned digits = 1 + ((n-1) >> GIANT_LOG2_BITS_PER_DIGIT); local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtzfmt.cpp399 UnicodeString digits = ns->getDescription(); local
400 useDefDigits = !toCodePoints(digits, fGMTOffsetDigits, 10);
595 TimeZoneFormat::getGMTOffsetDigits(UnicodeString& digits) const {
596 digits.remove();
598 digits.append(fGMTOffsetDigits[i]);
600 return digits;
604 TimeZoneFormat::setGMTOffsetDigits(const UnicodeString& digits, UErrorCode& status) { argument
609 if (!toCodePoints(digits, digitArray, 10)) {
1036 // parsed as localized GMT format, but offset digits were not detected (more specifically, GMT
1066 // Note: When ISO 8601 format contains offset digits, i
[all...]
H A Ddecimfmt.cpp.fixed581 // TODO Add debug stuff for significant digits here
655 DigitList digits;
674 digits.set(((double)number) * fMultiplier,
680 digits.set(number * fMultiplier, precision(TRUE));
683 return subformat(appendTo, fieldPosition, digits, TRUE);
761 DigitList digits;
764 digits.set(number, precision(FALSE),
767 return subformat(appendTo, fieldPosition, digits, FALSE);
818 * @param pos the number of integer digits to the right of
840 * be filled in with the correct digits
[all...]
H A DdecContext.c65 context->digits=9; /* 9 digits */
80 context->digits=7; /* digits */
91 context->digits=16; /* digits */
102 context->digits=34; /* digits */
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/rdata/in_1/
H A Dnsap_22.c34 int digits; local
55 digits = 0;
66 if (++digits == 2) {
68 digits = 0;
72 if (digits)
/macosx-10.9.5/ntp-88/libsntp/
H A Dlibsntp_query.c89 int digits, error, rpktl, sw_case; local
187 for (digits = 0; (precision *= 10.) < 1.; ++digits)
189 if (digits > 6)
190 digits = 6;
/macosx-10.9.5/Libc-997.90.3/net/
H A Dinet_pton.c157 static const char digits[] = "0123456789"; local
167 if ((pch = strchr(digits, ch)) != NULL) {
168 u_int new = *tp * 10 + (pch - digits);
/macosx-10.9.5/ntp-88/sntp/
H A Dmain.c171 int digits, error, rpktl, sw_case; local
278 for (digits = 0; (precision *= 10.) < 1.; ++digits)
280 if (digits > 6)
281 digits = 6;
336 printf("%.*f", digits, offset);
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Densemble.test114 part digits {args} {
125 part digits {{prefix 0} args} {
146 list [catch "test_numbers hex digits 3 a f" msg] $msg
153 test_numbers hex digits ?arg arg ...?}}
160 list [catch "test_numbers octal digits 0o 3 5 10" msg] $msg
167 test_numbers octal digits ?prefix? ?arg arg ...?}}
/macosx-10.9.5/bc-21/bc/lib/
H A Dnumber.c191 /* If we get here, they have the same number of integer digits.
352 /* Zero extra digits made by scale_min. */
446 /* Zero extra digits made by scale_min. */
501 /* If n1 has more digits then n2, we now do that subtract. */
755 B is the base of storage, number of digits in u1,u0 close to equal.
775 /* Calculate n -- the u and v split point in digits. */
887 NUM (with SIZE digits) is multiplied by DIGIT and the result is
928 digits after the decimal point is SCALE. It returns -1 if division
993 /* Calculate the number of quotient digits. */
1194 /* Check the base for scale digits
1437 char digits[40]; local
1468 stk_rec *digits, *temp; local
1700 int digits, strscale; local
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Difdef.c392 ptrdiff_t digits; local
410 digits = p - lit - 2;
411 if (! (1 <= digits && digits <= 3))

Completed in 417 milliseconds

1234567891011