Searched refs:digits (Results 101 - 125 of 236) sorted by relevance

12345678910

/macosx-10.10.1/vim-55/runtime/syntax/
H A Dasterisk.vim28 " oldlabel plus digits (newlabel)
30 " s or n plus digits (newlabel)
H A Dmsmessages.vim73 " flag an octal number with wrong digits
82 "hexadecimal floating point number, optional leading digits, with dot, with exponent
84 "hexadecimal floating point number, with leading digits, optional dot, with exponent
/macosx-10.10.1/Heimdal-398.1.2/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.
285 A multiple precision integer of $n$-digits shall be denoted as $x = (x_{n-1}, \ldots, x_1, x_0)_{ \beta }$ and represent
286 the integer $x \equiv \sum_{i=0}^{n-1} x_i\beta^i$. The elements of the array $x$ are said to be the radix $\beta$ digits
291 The term ``mp\_int'' shall refer to a composite structure which contains the digits of the integer it represents, as well
344 The norm of a multiple precision integer, for example $\vert \vert x \vert \vert$, will be used to represent the number of digits in the representation
567 As a well known analogy, school children are taught how to form numbers larger than nine by prepending more radix ten digits. In the decimal system
568 the largest single digit value is $9$. However, by concatenating digits together larger numbers may be represented. Newly prepended digits
576 that is the sign of this particular integer is positive as opposed to negative. Second, the integer has three digits in
578 arithmetic. The third property is how many digits placeholder
[all...]
H A Dbn.tex346 Where ``mp\_digit'' is a data type that represents individual digits of the integer. By default, an mp\_digit is the
515 default number of digits. By default, all initializers allocate \textbf{MP\_PREC} digits. This function lets
524 to have $size$ digits (which are all initially zero).
549 digits can be removed to return memory to the heap with the mp\_shrink() function.
556 This will remove excess digits of the mp\_int $a$. If the operation fails the mp\_int should be intact without the
557 excess digits being removed. Note that you can use a shrunk mp\_int in further computations, however, such operations
592 \subsection{Adding additional digits}
594 Within the mp\_int structure are two parameters which control the limitations of the array of digits that represent
595 the integer the mp\_int is meant to equal. The \textit{used} parameter dictates how many digits ar
[all...]
/macosx-10.10.1/CommonCrypto-60061/include/
H A DCommonBigNum.h654 @param digits How many bit places to shift left.
660 CCBigNumLeftShift(CCBigNumRef result, const CCBigNumRef a, const uint32_t digits)
671 @param digits How many bit places to shift right.
677 CCBigNumRightShift(CCBigNumRef result, const CCBigNumRef a, const uint32_t digits)
/macosx-10.10.1/bootp-298/bootplib/
H A DDNSNameList.c382 int digits = 0; local
396 if (digits == 0) {
400 if (digits > DNS_LABEL_LENGTH_MAX) {
401 fprintf(stderr, "label length %d > %d\n", digits,
406 new_name->dn_buf[start_offset] = digits;
407 size += digits + 1;
408 digits = 0;
413 digits++;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cms/lib/
H A DCMSEncoder.cpp153 /* first calculate the number of digits in num, base 128 */
167 /* all digits except the last one have m.s. bit set */
187 unsigned char **digits = NULL; /* array of char * from encodeNumber */ local
220 digits = (unsigned char **) malloc(numsToProcess * sizeof(unsigned char *));
225 numDigits[digit] = encodeNumber(num, &digits[digit]);
237 *outP++ = digits[digit][byteDex];
240 if(digits) {
242 free(digits[digit]);
244 free(digits);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Drbt_set.cpp77 int32_t digits,
83 while (digits--) {
84 target += digitString[(number >> (digits*4)) & 0xF];
76 _appendHex(uint32_t number, int32_t digits, UnicodeString& target) argument
H A DdecContext.h44 /* digits -- must be in the range 1 through 999999999 */
89 int32_t digits; /* working precision */ member in struct:__anon931
228 #define DEC_Condition_LD "Lost digits"
H A DdecNumber.h60 /* DECNUMDIGITS is the default number of digits that can be held in */
69 /* number of digits it will hold. */
82 int32_t digits; /* Count of digits in the coefficient; >0 */ member in struct:__anon932
91 /* 1. If digits is > DECDPUN then there will one or more */
93 /* These contain the remaining (more significant) digits of the */
100 /* contains DECDPUN digits (e.g., a value in the range 0 through */
103 /* 2. A decNumber converted to a string may need up to digits+14 */
192 && (dn)->digits==1 \
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonBigNum.c460 CCBigNumLeftShift(CCBigNumRef res, const CCBigNumRef a, const uint32_t digits) argument
463 ccz_lsl((ccz *) res, (ccz *) a, digits);
468 CCBigNumRightShift(CCBigNumRef res, const CCBigNumRef a, const uint32_t digits) argument
471 ccz_lsr((ccz *)res, (ccz *)a, digits);
/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dbignum.cc84 // Clear the excess digits (if there were any).
113 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits); local
117 AddUInt64(digits);
119 uint64_t digits = ReadUInt64(value, pos, length); local
121 AddUInt64(digits);
357 // In the worst case we have to accumulate nb-digits products of digit*digit.
365 // First shift the digits so we don't overwrite them.
495 // Easy case: if we have less digits than the divisor than the result is 0.
506 // number of digits.
521 // Since other has more than 0 digits w
[all...]
/macosx-10.10.1/bc-21/bc/bc/
H A Dexecute.c604 int digits; local
660 digits = 0;
667 digits++;
671 bc_divide (result, divisor, &result, digits);
701 /* Count the digits and get things ready. */
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dtzfmt.h376 * @param digits Receives the decimal digits used for localized GMT format.
380 UnicodeString& getGMTOffsetDigits(UnicodeString& digits) const;
384 * The input <code>digits</code> must contain exactly 10 code points
386 * digit 0 to digit 9 in the ascending order. When the input <code>digits</code>
389 * @param digits The decimal digits used for localized GMT format.
394 void setGMTOffsetDigits(const UnicodeString& digits, UErrorCode& status);
475 * <li>Offset digits (e.g. "0123456789" - see {@link #getGMTOffsetDigits})
496 * <li>Offset digits (
[all...]
H A Ddecimfmt.h74 * Indic digits. It also supports different flavors of numbers, including
157 * digits. The symbols are stored in a DecimalFormatSymbols
283 * prefix and suffix; the number of digits, minimal digits, and other
287 * <p>The prefixes, suffixes, and various symbols used for infinity, digits,
298 * integer digits to make large numbers more legible. It commonly used for
300 * size</em> is the number of digits between the grouping separators, such as 3
302 * grouping sizes: One used for the least significant integer digits, the
359 * <li>In place of '0', the digits '1' through '9' may be used to
366 * decimal digits, a
[all...]
/macosx-10.10.1/shell_cmds-179/date/
H A Dvary.c54 static char digits[] = "0123456789"; variable
438 if (strspn(arg, digits) != len-1) {
/macosx-10.10.1/ruby-106/ruby/
H A Drandom.c542 BDIGIT *digits; local
547 digits = RBIGNUM_DIGITS(big);
549 MEMCPY(digits, ptr, char, DEFAULT_SEED_LEN);
552 digits[len] =
554 digits[len-2] <= 1 && digits[len-1] == 0
556 digits[len-1] <= 1
H A Dbignum.c134 RBIGNUM(big)->as.heap.digits = ds;
140 ds = RBIGNUM(big)->as.heap.digits;
150 RBIGNUM(big)->as.heap.digits = ALLOC_N(BDIGIT, len);
153 REALLOC_N(RBIGNUM(big)->as.heap.digits, BDIGIT, len);
176 RBIGNUM(big)->as.heap.digits = ALLOC_N(BDIGIT, len);
292 BDIGIT *digits; local
296 digits = BDIGITS(big);
298 digits[i++] = BIGLO(num);
303 while (--i && !digits[i]) ;
489 BDIGIT *digits; local
815 BDIGIT *digits; local
1325 BDIGIT *digits; local
[all...]
/macosx-10.10.1/syslog-267/aslcommon/
H A Dasl_common.c2167 bool digits; local
2188 digits = true;
2189 for (i = 0; digits && (stamp[i] != '\0'); i++) digits = (stamp[i] >= '0') && (stamp[i] <= '9');
2191 if (!digits && (!strcmp(stamp + i, ".gz"))) digits = true;
2193 if (digits)
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInspectorValues.cpp139 bool readHexDigits(const UChar* start, const UChar* end, const UChar** tokenEnd, int digits) argument
141 if (end - start < digits)
143 for (int i = 0; i < digits; ++i) {
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Dkeychain_utilities.c794 static const char digits[] = "0123456789abcdef"; local
796 if ((p = strchr(digits, tolower(c))))
797 return p - digits;
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkextfind_commands.c206 char digits[] = { '0', '1', '2', '3', '4', '5', '6', '7', local
226 *scan++ = digits[binaryDigit1];
227 *scan++ = digits[binaryDigit2];
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/expat/xmlwf/
H A Dxmlwf.c523 static const XML_Char digits[] = T("0123456789"); local
524 const XML_Char *s = tcschr(digits, name[i]);
528 cp += s - digits;
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dxmlwf.c475 static const XML_Char digits[] = T("0123456789"); local
476 const XML_Char *s = tcschr(digits, name[i]);
480 cp += s - digits;
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotscada.tcl215 scale .c.scalea -orient vertical -from 0.10 -to 0.0 -variable ratea -tickinterval 0.02 -digits 3 -resolution 0.001
216 scale .c.scaleb -orient vertical -from 0.10 -to 0.0 -variable rateb -tickinterval 0.02 -digits 3 -resolution 0.001

Completed in 202 milliseconds

12345678910