Searched refs:digit (Results 126 - 150 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_write_set_format_pax.c136 int digit, i; local
148 for (digit = 0, i = 10; i > 0 && digit == 0; i--) {
149 digit = nanos % 10;
156 *--t = "0123456789"[digit];
157 digit = nanos % 10;
328 * chars, then adding the 2 digit length "99" will force the
329 * total length past 100, requiring an extra digit. The next
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dtommath.tex171 reason that $7$ times $6$ is $42$. However, $42$ has two digits of precision as opposed to one digit we started with.
308 The variable $\beta$ represents the radix of a single digit of a multiple precision integer and
318 For the purposes of this text $x_j$ will refer to the $j$'th digit of a single precision array and $\hat x_j$ will refer to
319 the $j$'th digit of a double precision array. Whenever an expression is to be assigned to a double precision
328 In this particular case, $\hat c = 1127$ and $c = 127$. The most significant digit of the product would not fit
568 the largest single digit value is $9$. However, by concatenating digits together larger numbers may be represented. Newly prepended digits
625 significant digit order. As a pencil and paper analogy the array is organized such that the right most digits are stored
642 \item The value of \textbf{used} implies the digit at index $(used - 1)$ of the \textbf{dp} array is non-zero. That is,
725 the initial integer will represent zero. If only a single digit were allocated quite a few subsequent re-allocations
771 Allocating a block of digits at first instead of a single digit ha
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtzfmt.cpp1716 // forcing parse to use single hour digit
1725 // Better parse result with single hour digit
1883 // offset needs a sign char and a digit at minimum
1979 int32_t digit = parseSingleLocalizedDigit(text, idx, digitLen);
1980 if (digit < 0) {
1983 int32_t tmpVal = decVal * 10 + digit;
2005 int32_t digit = -1;
2013 digit = i;
2017 // If failed, check if this is a Unicode digit
2018 if (digit <
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclParse.c748 unsigned char digit = UCHAR(*p);
750 if (!isxdigit(digit)) {
757 if (digit >= 'a') {
758 result |= (10 + digit - 'a');
759 } else if (digit >= 'A') {
760 result |= (10 + digit - 'A');
762 result |= (digit - '0');
902 if (isdigit(UCHAR(*p)) && (UCHAR(*p) < '8')) { /* INTL: digit */
905 if ((numBytes == 2) || !isdigit(UCHAR(*p)) /* INTL: digit */
912 if ((numBytes == 3) || !isdigit(UCHAR(*p)) /* INTL: digit */
743 unsigned char digit = UCHAR(*p); local
[all...]
H A DtclStrToD.c321 char d = 0; /* Last hexadecimal digit scanned; initialized
691 * one digit has been found, we have a possible complete number.
761 * Found an exponent with at least one digit. Accumulate it,
1192 * Consume a decimal digit in a number being scanned.
1206 unsigned digit, /* Digit being scanned. */
1207 int numZeros, /* Count of zero digits preceding the digit
1214 * to this digit. */
1230 *wideRepPtr = digit;
1233 || w > ((~(Tcl_WideUInt)0)-digit)/pow10_wide[numZeros+1]) {
1244 *wideRepPtr = w * pow10_wide[numZeros+1] + digit;
1203 AccumulateDecimalDigit( unsigned digit, int numZeros, Tcl_WideUInt *wideRepPtr, mp_int *bignumRepPtr, int bignumFlag) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_rdengine_tcl.tcl793 #Asm::Ins i_input_next digit
800 set myerror [list $myloc [list digit]]
806 set myok [string is digit -strict $mycurrent]
808 set myerror [list $myloc [list digit]]
1630 set myok [string is digit -strict $mycurrent]
1631 OkFail digit
1775 set ourmsg(digit) [pt::pe digit]
H A Dpt_peg_to_cparam.tcl481 alpha alnum ascii digit graph lower print \
509 alpha alnum ascii digit graph lower print
H A Dpt_peg_from_peg.tcl221 return [pt::pe digit]
H A Dpt_rdengine_oo.tcl434 set myok [string is digit -strict $mycurrent]
435 my OkFail [pt::pe digit]
/macosx-10.9.5/vim-53/src/
H A Dmark.c809 int digit; local
825 digit = VIM_ISDIGIT(*p);
826 if (lower || digit || ASCII_ISUPPER(*p))
834 : (digit ? VIM_ISDIGIT(p[2])
853 if (digit)
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDateComponents.cpp124 int digit = *current - '0'; local
125 if (value > (INT_MAX - digit) / 10) // Check for overflow.
127 value = value * 10 + digit;
386 // 4 characters ('-' 'W' digit digit) are needed.
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Drx.el180 (digit . "[[:digit:]]")
181 (numeric . digit) ; SRE
182 (num . digit) ; SRE
185 (hex-digit . "[[:xdigit:]]") ; SRE
186 (hex . hex-digit) ; SRE
187 (xdigit . hex-digit) ; SRE
256 (digit . ?6)
693 SET may also be the name of a character class: `digit',
694 `control', `hex-digit', `blan
[all...]
H A Dre-builder.el105 ;; digit keys are assigned to perform an update that will flash the
282 (dotimes (digit 10)
283 (define-key m (int-to-string digit) 'reb-display-subexp))
/macosx-10.9.5/gnutar-452/gnutar/tests/
H A Dgenfile.c234 int digit = *p - '0'; local
236 if (9 < (unsigned) digit)
245 v = x + digit;
/macosx-10.9.5/vim-53/runtime/ftplugin/
H A Druby.vim232 let number = '\%(\%(\w\|[]})\"'."'".']\s*\)\@<!-\)\=\%(\<[[:digit:]_]\+\%(\.[[:digit:]_]\+\)\=\%([Ee][[:digit:]_]\+\)\=\>\|\<0[xXbBoOdD][[:xdigit:]_]\+\>\)\|'.asciicode
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dbtm.vim87 " //Parameters to batchfiles take the format %<digit>
89 " //4DOS allows format %<digit>& meaning batchfile parameters digit and up
H A Dr.vim48 " identifier with leading period, one or more digits, and at least one non-digit keyword character
H A Dreadline.vim104 \ digit-argument universal-argument complete
116 \ vi-search vi-arg-digit vi-append-eol
H A Dreva.vim119 syn keyword revaconversion s>d >digit digit> >single >double >number >float
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dfinfo.c507 if (!digit (string[1]))
516 while (digit (*string))
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_sprintf_comb.rb234 str = digits.map {|digit| digitmap[digit] }.join
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dfstat.test152 lappend dataList [ctype digit $data]
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dncurses.c322 make_fullwidth_digit(cchar_t *target, int digit) argument
326 source[0] = fullwidth_of(digit + '0');
1199 " A digit sets gaps on each side of displayed attributes");
3067 int digit = 0; local
3096 digit = (c - '0');
3100 if (digit > 0) {
3101 --digit;
3108 if (digit < 3) {
3109 ++digit;
3135 show_upper_chars((unsigned) (digit * 3
3416 int digit = 0; local
4272 int digit; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftpd/
H A Dftpcmd.y867 int ret, dec, multby, digit;
877 digit = dec%10;
878 if (digit > 7) {
882 ret += digit * multby;
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/template/
H A Dversionvfs.tcl349 if ![string is digit -strict $keep] {continue}
408 if ![string is digit -strict $time] {catch {set time [clock scan $time]}}
409 if ![string is digit -strict $time] {error "invalid time value."}
548 if {!([string is digit -strict $time] && ([string length $time] == [string length $time1]))} {

Completed in 199 milliseconds

1234567891011