Searched refs:digits (Results 76 - 100 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_write_set_format_cpio_newc.c226 format_hex(int64_t v, void *p, int digits) argument
231 max = (((int64_t)1) << (digits * 4)) - 1;
233 format_hex_recursive(v, (char *)p, digits);
236 format_hex_recursive(max, (char *)p, digits);
H A Darchive_write_set_format_pax.c140 * digits, so this will always be big enough.
303 int digits, i, len, next_ten; local
304 char tmp[1 + 3 * sizeof(int)]; /* < 3 base-10 digits per byte */
315 * counting the number of base-10 digits in 'len' and
319 digits = 0;
323 digits++;
332 if (len + digits >= next_ten)
333 digits++;
337 archive_strcat(as, format_int(tmp + sizeof(tmp) - 1, len + digits));
1319 /* URL encoding is '%' followed by two hex digits */
1340 static const char digits[64] = local
[all...]
H A Darchive_write_set_format_cpio.c273 format_octal(int64_t v, void *p, int digits) argument
278 max = (((int64_t)1) << (digits * 3)) - 1;
280 format_octal_recursive(v, (char *)p, digits);
283 format_octal_recursive(max, (char *)p, digits);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/
H A Dnumeric_traits.h78 2 + std::numeric_limits<_Value>::digits * 3010/10000;
/macosx-10.9.5/ntp-88/scripts/stats/
H A Detf.S1 options(digits=4)
/macosx-10.9.5/pdisk-9/
H A Ddump.c132 void dump_partition_entry(partition_map *entry, int type_length, int name_length, int digits);
209 int digits; local
226 digits = number_of_digits(get_max_base_or_length(map));
227 if (digits < 6) {
228 digits = 6;
245 digits, "length", digits, "base");
251 dump_partition_entry(entry, max_type_length, max_name_length, digits);
257 dump_partition_entry(entry, max_type_length, max_name_length, digits);
265 dump_partition_entry(partition_map *entry, int type_length, int name_length, int digits) argument
[all...]
/macosx-10.9.5/libresolv-54/
H A Dns_name.c55 static const char digits[] = "0123456789"; variable
164 *dn++ = digits[c / 100];
165 *dn++ = digits[(c % 100) / 10];
166 *dn++ = digits[c % 10];
240 else if ((cp = strchr(digits, c)) != NULL) {
241 n = (cp - digits) * 100;
243 (cp = strchr(digits, c)) == NULL) {
247 n += (cp - digits) * 10;
249 (cp = strchr(digits, c)) == NULL) {
253 n += (cp - digits);
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dgetdate.y75 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
110 /* An integer value, and the number of digits in its textual
116 size_t digits;
383 /* Interpret as YYYY/MM/DD if the first value has 4 or more digits,
388 if (4 <= $1.digits)
414 pc->year.digits = $3.digits;
422 pc->year.digits = $3.digits;
547 if (pc->dates_seen && ! pc->year.digits
[all...]
/macosx-10.9.5/gpatch-3/patch/
H A Dpartime.c404 parse_fixed (s, digits, res)
406 int digits, *res;
409 char const *lim = s + digits;
447 parse_ranged (s, digits, lo, hi, res)
449 int digits, lo, hi, *res;
451 s = parse_fixed (s, digits, res);
462 parse_decimal (s, digits, lo, hi, resolution, res, fres)
464 int digits, lo, hi, resolution, *res, *fres;
466 s = parse_fixed (s, digits, res);
859 case 'Y': /* year in full [4 or more digits] */
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddecimfmt.cpp908 // TODO Add debug stuff for significant digits here
1160 // get any remaining digits
1172 int32_t destlength = length<=maxIntDig?length:maxIntDig; // dest length pinned to max int digits
1190 (length-destlength), // skip any leading digits
1209 DigitList digits; local
1210 digits.set(number);
1211 return _format(digits, appendTo, handler, status);
1269 DigitList digits; local
1270 digits.set(number);
1271 _format(digits, appendT
1533 subformat(UnicodeString& appendTo, FieldPositionHandler& handler, DigitList& digits, UBool isInteger, UErrorCode& status) const argument
1996 DigitList *digits = result.getInternalDigitList(); // get one from the stack buffer local
2061 parseForCurrency(const UnicodeString& text, ParsePosition& parsePosition, DigitList& digits, UBool* status, UChar* currency) const argument
2197 subparse(const UnicodeString& text, const UnicodeString* negPrefix, const UnicodeString* negSuffix, const UnicodeString* posPrefix, const UnicodeString* posSuffix, UBool currencyParsing, int8_t type, ParsePosition& parsePosition, DigitList& digits, UBool* status, UChar* currency) const argument
[all...]
H A Ddigitlst.h36 // Decimal digits in a 64-bit int
96 * precision to represent all digits of a long.
99 * which are the digits radix 10, from '0' to '9'. It also has a radix
102 * derived by placing all the digits of the list to the right of the
109 * DigitList stores digits with the most significant first.
110 * decNumber stores digits with the least significant first.
120 * digitList, digits are platform invariant chars, '0' - '9'
121 * decNumber, digits are binary, one per byte, 0 - 9.
123 * (decNumber library is configurable in how digits are stored, ICU has configured
158 * Clears out the digits
310 int32_t digits() const {return fDecNumber->digits;} function in class:DigitList
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_import_name.c88 int digits = p[0]; local
93 while (digits--) {
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/ckutils/giantAsmBench/
H A DgiantAsmBench.c20 #define MIN_SIZE_DEF 1 /* mix digits for vectorMultiply test */
21 #define MAX_SIZE_DEF 8 /* max digits */
40 giantDigit *digits)
46 digits[i]= RAND() + ((RAND() & 1) << 31);
113 * Scratch digits, big enough for anything. Malloc here, init with
39 randDigits(unsigned numDigits, giantDigit *digits) argument
/macosx-10.9.5/ruby-104/ruby/ext/json/fbuffer/
H A Dfbuffer.h154 static char digits[] = "0123456789"; local
159 do *tmp++ = digits[number % 10]; while (number /= 10);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dintltest.h303 // digits=-1 determines the number of digits automatically
304 static UnicodeString &appendHex(uint32_t number, int32_t digits, UnicodeString &target);
305 static UnicodeString toHex(uint32_t number, int32_t digits=-1);
306 static inline UnicodeString toHex(int32_t number, int32_t digits=-1) { argument
307 return toHex((uint32_t)number, digits);
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkScale.h79 int digits; /* Number of significant digits to print in member in struct:TkScale
84 * digits and other information. */
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkScale.h80 int digits; /* Number of significant digits to print member in struct:TkScale
85 * digits and other information. */
/macosx-10.9.5/IOFireWireIP-226.4/KernelSource/BSD/
H A Dif_firewire.cpp312 static u_char digits[] = "0123456789abcdef"; variable
320 *cp++ = digits[*ap >> 4];
321 *cp++ = digits[*ap++ & 0xf];
/macosx-10.9.5/ruby-104/ruby/
H A Dvsnprintf.c354 * Macros for converting digits to letters and vice versa
365 * use the given digits.
430 * use the given digits.
554 int ndig = 0; /* actual number of digits returned by cvt */
567 const char *xdigs = 0; /* digits for [xX] conversion */
1228 char *digits, *bp, *rve; local
1244 digits = BSD__hdtoa(value,
1249 digits = BSD__dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
1251 buf[0] = 0; /* rve - digits may be 0 */
1252 memcpy(buf, digits, rv
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/device/
H A Dsubrs.c407 char digits[11]; local
415 dp = digits;
420 while (dp != digits) {
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dmodelist.c62 UInt32 digits; member in struct:ModeInfo
553 modeArray[i].digits = 0; //modeListRef->maxRefreshDigits;
568 while (modeArray[i].digits < 5)
570 //if (modeArray[i].digits)
574 modeArray[i].digits++;
580 if (modeArray[i].digits > modeListRef->maxRefreshDigits)
581 modeListRef->maxRefreshDigits = modeArray[i].digits;
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dxpm.vim42 break " if cpp is not made of digits there must be something wrong
78 " Vim cannot handle RGB codes with more than 6 hex digits
83 " nor with 3 digits
H A Dxpm2.vim54 break " if cpp is not made of digits there must be something wrong
90 " Vim cannot handle RGB codes with more than 6 hex digits
95 " nor with 3 digits
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A Delliptic.c1242 int j, digits, excess, max; local
1248 digits = par->q >> GIANT_LOG2_BITS_PER_DIGIT;
1250 excess = (x->sign) - digits;
1251 max = (excess > digits) ? excess : digits;
1255 p2 = &x->n[digits];
1257 if(excess <= digits) {
1265 for(j = excess; j < digits; j++) {
1278 digits,
1280 p1 += digits;
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A Delliptic.c1242 int j, digits, excess, max; local
1248 digits = par->q >> GIANT_LOG2_BITS_PER_DIGIT;
1250 excess = (x->sign) - digits;
1251 max = (excess > digits) ? excess : digits;
1255 p2 = &x->n[digits];
1257 if(excess <= digits) {
1265 for(j = excess; j < digits; j++) {
1278 digits,
1280 p1 += digits;
[all...]

Completed in 839 milliseconds

1234567891011