Searched refs:digits (Results 201 - 225 of 255) sorted by relevance

1234567891011

/macosx-10.9.5/nano-11/src/
H A Dproto.h684 int digits(size_t n);
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Druby-lex.rb1009 RubyLex.fail SyntaxError, "numeric literal without digits"
/macosx-10.9.5/tcl-102/tcl/tcl/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 */
249 /* trim unused digits */
254 /* right shift by "b" digits */
257 /* left shift by "b" digits */
284 int mp_rand(mp_int *a, int digits);
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dmethods.c2918 char *digits = "0123456789";
2950 buffer[i] = digits[intVal % 10];
2855 char *digits = "0123456789"; local
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dgnuplot.vim52 " flag an octal number with wrong digits by not hilighting
H A Drc.vim117 " flag an octal number with wrong digits
H A Dada.vim188 syntax keyword adaStorageClass digits limited of private range tagged
H A Dcss.vim173 syn keyword cssAuralAttr contained male female child code digits continuous
H A Dd.vim220 " flag an octal number with wrong digits
H A Ddtml.vim45 syn keyword dtmlAttribute delClassAttr DELETE Destination DestinationURL digits discard contained
H A Dnqc.vim291 " flag an octal number with wrong digits
H A Drexx.vim46 syn match rexxKeyword contained "\<numeric \(digits\|form \(scientific\|engineering\|value\)\|fuzz\)\>"
H A Dfortran.vim179 " floating point number, no digits after decimal
243 syn keyword fortran90Intrinsic adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack precision present product radix random_number random_seed range repeat reshape rrspacing
/macosx-10.9.5/ruby-104/ruby/ext/bigdecimal/
H A Dbigdecimal.c294 * The BigDecimal.double_fig class method returns the number of digits a
309 * The first value is the current number of significant digits in the
310 * BigDecimal. The second value is the maximum number of significant digits
674 VALUE digits = RARRAY_PTR(a)[1]; local
675 VALUE numerator = rb_funcall(digits, rb_intern("to_i"), 0);
677 ssize_t dpower = e - (ssize_t)RSTRING_LEN(digits);
753 VALUE a, digits, numerator; local
761 digits = RARRAY_PTR(a)[1];
762 denomi_power = power - RSTRING_LEN(digits);
763 numerator = rb_funcall(digits, rb_inter
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Din6.c3072 static const char digits[] = "0123456789abcdef"; local
3113 *cp++ = digits[n];
3117 *cp++ = digits[n];
3121 *cp++ = digits[n];
3125 *cp++ = digits[n];
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dutils.c2117 zwarn("number truncated after %d digits: %s", (int)(trunc - inp), inp);
2798 int year, digits, testyear; local
2800 digits = 1;
2803 digits++;
2806 if (ztrftimebuf(&bufsize, digits))
2809 buf += digits;
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A DDebugServices.c1228 const char *digits = "0123456789ABCDEF"; local
1295 case 'x': digits = "0123456789abcdef";
1343 for (i = 0; n; n /= base, i++) *--s = (char)(digits[n % base]);
/macosx-10.9.5/emacs-92/emacs/lisp/language/
H A Dind-util.el465 (digits (elt table 3))
470 (trans-digits '("0" "1" "2" "3" "4" "5" "6" "7" "8" "9")))
476 (indian--puthash-m digits trans-digits hashtbls)
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Druby.h1064 BDIGIT *digits; member in struct:RBignum::__anon12383::__anon12384
1090 RBIGNUM(b)->as.heap.digits)
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dtkpasswd434 {minnum {minimum number of digits}}
490 gen_bad_args "The minimum number of digits $mustbe"
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/tree/
H A Dm.c2891 char *digits = "0123456789";
2923 buffer[i] = digits[intVal % 10];
2849 char *digits = "0123456789"; local
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A DdecNumberLocal.h155 #error Maximum digits mismatch
165 /* digits, and D2UTABLE -- the initializer for the D2U table */
226 /* D2U -- return the number of Units needed to hold d digits */
238 /* MSUDIGITS -- returns digits in msu, from digits, calculated */
243 /* needed to contain that number of digits (and the initial */
452 /* dpd to three BCD8 digits starting at uByte u. Note that an */
453 /* extra byte is written to the right of the three digits because */
H A Dregexcmp.cpp288 // Compute the number of digits requried for the largest capture group number.
1019 // Init the counter varaiables that will accumulate the values as the digits
1288 // the regular expression, because the number of digits to be consumed
1297 // Loop once per digit, for max allowed number of digits in a back reference.
1554 UnicodeSet digits;
1556 digits.applyIntPropertyValue(UCHAR_GENERAL_CATEGORY_MASK, U_GC_ND_MASK, *fStatus);
1557 digits.complement();
1558 set->addAll(digits);
3772 // which are \0 followed by 1-3 octal digits.
3775 // Java also has the convention of only consuming 2 octal digits i
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcucdtst.c502 USet *digits, *decimalValues; local
508 digits=uset_openPattern(digitsPattern, 6, &errorCode);
512 compareUSets(digits, decimalValues, "[:Nd:]", "[:Numeric_Type=Decimal:]", TRUE);
515 uset_close(digits);
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h349 std::numeric_limits<RawType>::digits - 1;

Completed in 699 milliseconds

1234567891011