Searched refs:digits (Results 176 - 200 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/CPANInternal-140/Time-HiRes-Value/lib/Time/HiRes/
H A DValue.pm55 # Pad out to 6 digits
176 C<I<$usec>> part will always contain 6 digits.
/macosx-10.9.5/CPANInternal-140/Time-HiRes-Value-0.07/lib/Time/HiRes/
H A DValue.pm56 # Pad out to 6 digits
177 C<I<$usec>> part will always contain 6 digits.
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf64-mmix.c2206 int digits;
2220 /* Check that there are remaining characters and that they are digits. */
2224 digits = strspn (colpos + 1, "0123456789");
2225 return digits != 0 && colpos[1 + digits] == 0;
2201 int digits; local
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_support_format_tar.c323 bid += 48; /* Checksum is usually 6 octal digits. */
2329 static const unsigned char digits[64] = { local
2340 if (decode_table[digits[1]] != 1) {
2343 for (i = 0; i < sizeof(digits); i++)
2344 decode_table[digits[i]] = i;
/macosx-10.9.5/nano-11/src/
H A Dutils.c33 /* Return the number of decimal digits in n. */
34 int digits(size_t n) function
H A Dbrowser.c613 uimax_digits = digits(UINT_MAX);
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_literal.rb402 assert_match(/numeric literal without digits\Z/, e.message, bug2407)
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dparams.c4597 convfloat(double dval, int digits, int flags, FILE *fout) argument
4604 * prints all digits before the decimal point: with 64 bit doubles,
4607 * Then we are liable to get all the digits
4609 * bargain for it. So we just allocate 512 + digits. This
4620 if (!digits)
4621 digits = 17;
4625 if (digits <= 0)
4626 digits = 10;
4632 digits--;
4640 fprintf(fout, fmt, digits, dva
[all...]
/macosx-10.9.5/awk-18/src/
H A DFIXES255 fixed an appalling bug in gettok: any sequence of digits, +,-, E, e,
730 Limited octal to octal digits; \8 and \9 are not octal.
831 non-octal digits in \ooo. Warning: not all compilers and libraries
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dgetdate.c190 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
225 /* An integer value, and the number of digits in its textual
231 size_t digits; member in struct:__anon8912
1840 /* Interpret as YYYY/MM/DD if the first value has 4 or more digits,
1845 if (4 <= (yyvsp[(1) - (5)].textintval).digits)
1877 pc->year.digits = (yyvsp[(3) - (3)].textintval).digits;
1888 pc->year.digits = (yyvsp[(3) - (3)].textintval).digits;
2095 if (pc->dates_seen && ! pc->year.digits
2758 int digits; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclUtil.c2173 char *digits = "0123456789";
2205 buffer[i] = digits[intVal % 10];
2146 char *digits = "0123456789"; local
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dchill.vim67 " flag an octal number with wrong digits
H A Dicon.vim38 syn match iconKeyword "&digits"
H A Dpike.vim58 " flag an octal number with wrong digits
H A Dtads.vim78 " flag an octal number with wrong digits
/macosx-10.9.5/CPANInternal-140/DateTime/lib/
H A DDateTime.pm1045 # yy is a weird special case, where it must be exactly 2 digits
1210 return $ret unless $precision; # default = 9 digits
2520 by the method name. Years are zero-padded to four digits. Months and
2521 days are 0-padded to two digits.
2590 Returns the hour, minute, and second, all zero-padded to two digits.
3482 digits are preceded by a blank. (See also %H.)
3487 digits are preceded by a blank. (See also %I.)
3503 The fractional seconds digits. Default is 9 digits (nanoseconds).
3505 %3N milliseconds (3 digits)
[all...]
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Dcreate.c150 /* The maximum uintmax_t value that can be represented with DIGITS digits,
152 #define MAX_VAL_WITH_DIGITS(digits, bits_per_digit) \
153 ((digits) * (bits_per_digit) < sizeof (uintmax_t) * CHAR_BIT \
154 ? ((uintmax_t) 1 << ((digits) * (bits_per_digit))) - 1 \
158 digits and a trailing NUL in BUFFER. */
297 Prefer the POSIX format of SIZE - 1 octal digits (with leading zero
298 digits), followed by '\0'. If this won't work, and if GNU or
977 other fields: it has [6] digits, a null, then a space -- rather than
978 digits, then a null. We use to_chars.
/macosx-10.9.5/ntp-88/ntpq/
H A Dntpq.c1645 static const char *digits = "0123456789"; local
1689 cp = strchr(digits, *np);
1696 argp->uval += (cp - digits);
/macosx-10.9.5/uucp-11/uucp/
H A Dprotz.c2304 * Send a byte as two hex digits ...
2312 static char digits[] = "0123456789abcdef";
2314 *p++ = digits[(ch & 0xF0) >> 4];
2315 *p++ = digits[ch & 0xF];
2372 * Decode two lower case hex digits into an 8 bit byte value ...
2309 static char digits[] = "0123456789abcdef"; local
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dtommath.h81 /* this is the default case, 28-bit digits */
98 /* this is an extension that uses 31-bit digits */
101 /* default case is 28-bit digits, defines MP_28BIT as a handy macro to test */
169 #define MP_PREC 32 /* default digits of precision */
171 #define MP_PREC 8 /* default digits of precision */
217 /* init to a given number of digits */
253 /* trim unused digits */
258 /* right shift by "b" digits */
261 /* left shift by "b" digits */
288 int mp_rand(mp_int *a, int digits);
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/tomsfastmath/src/headers/
H A Dtfm.h32 Or if you're on a 64-bit machine doing RSA as a 1024-bit integer == 16 digits ;-)
38 Less important on 64-bit machines as 32 digits == 2048 bits
111 /* autodetect x86-64 and make sure we are using 64-bit digits with x86-64 asm */
138 #warning x86-32, SSE2 and ARM, PPC32 optimizations require 32-bit digits (undefining)
275 /* # of digits this is */
331 /* clamp digits */
338 /* right shift x digits */
341 /* left shift x digits */
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DLiteralParser.cpp404 m_lexErrorMessage = ASCIILiteral("\\u must be followed by 4 hex digits");
464 // -? digit1-9 digits?
466 // digits
467 // digit digits?
492 m_lexErrorMessage = ASCIILiteral("Invalid digits after decimal point");
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdata.h141 void fromHex(const char *digits); // fill myself with hex data (no allocation)
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdata.h141 void fromHex(const char *digits); // fill myself with hex data (no allocation)
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dname.c1033 unsigned int tlen, nrem, nused, digits = 0, labels, tused; local
1181 digits = 0;
1190 digits++;
1191 if (digits == 3) {

Completed in 462 milliseconds

1234567891011