Searched refs:prec (Results 51 - 75 of 114) sorted by relevance

12345

/macosx-10.10/groff-38/groff/src/preproc/eqn/
H A Deqn.y151 sqrt_over %prec FROM
182 simple %prec SUP
/macosx-10.10/iodbc-42.5/iodbc/iodbc/trace/
H A Dtrace.c393 ProcessInfoRec prec; local
398 prec.processInfoLength = sizeof (ProcessInfoRec);
399 prec.processName = processName;
400 prec.processAppSpec = NULL;
402 if (GetProcessInformation (&PSN, &prec) == noErr)
/macosx-10.10/groff-38/groff/src/preproc/pic/
H A Dpic.y237 /* these must have higher precedence than CHOP so that `label %prec CHOP'
481 expr %prec ','
490 | position %prec ','
678 | text %prec TEXT
746 | object_spec expr %prec HEIGHT
861 | object_spec WITH position %prec ','
1019 | object_spec text %prec TEXT
1213 label %prec CHOP
1344 corner %prec CHOP
1348 | label_path %prec TEX
[all...]
/macosx-10.10/zsh-61/zsh/Src/
H A Dmath.c278 static int *prec; variable
282 * prec needs to be set before we use these.
284 #define TOPPREC (prec[COMMA]+1)
285 #define ARGPREC (prec[COMMA]-1)
381 xprec = prec;
390 prec = isset(CPRECEDENCES) ? c_prec : z_prec;
434 prec = xprec;
1447 while (prec[mtok] <= pc) {
1480 mathparse(prec[COLON] - 1);
1490 mathparse(prec[QUES
[all...]
/macosx-10.10/dtrace-147/libctf/
H A Dctf_types.c210 ctf_decl_prec_t prec, lp, rp; local
240 for (prec = CTF_PREC_BASE; prec < CTF_PREC_MAX; prec++) {
241 for (cdp = ctf_list_next(&cd.cd_nodes[prec]);
252 if (lp == prec) {
296 if (rp == prec)
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclUtil.c1991 int prec;
2039 prec = strtoul(value, &end, 10);
2040 if ((prec <= 0) || (prec > TCL_MAX_PREC) || (prec > 100) ||
2047 TclFormatInt(precisionString, prec);
2048 sprintf(precisionFormat, "%%.%dg", prec);
1966 int prec; local
/macosx-10.10/ruby-106/ruby/ext/bigdecimal/
H A Dbigdecimal.c209 GetVpValueWithPrec(VALUE v, long prec, int must) argument
220 if (prec < 0) goto unable_to_coerce_without_prec;
221 if (prec > DBL_DIG+1)goto SomeOneMayDoIt;
225 if (prec < 0) goto unable_to_coerce_without_prec;
233 args[1] = LONG2NUM(prec);
396 /* First get max prec */
588 #define VpAllocReal(prec) (Real *)VpMemAlloc(offsetof(Real, frac) + (prec) * sizeof(BDIGIT))
589 #define VpReallocReal(ptr, prec) (Real *)VpMemRealloc((ptr), offsetof(Real, frac) + (prec) * sizeo
2148 VALUE vexp, prec; local
2644 ssize_t prec, n, i; local
2776 ssize_t prec, n, i; local
5562 SIGNED_VALUE prec; local
[all...]
/macosx-10.10/ncurses-44/ncurses/c++/
H A Dcursesf.h765 Integer_Field(int prec, long low=0L, long high=0L) argument
767 precision(prec), lower_limit(low), upper_limit(high) {
783 Numeric_Field(int prec, double low=0.0, double high=0.0) argument
785 precision(prec), lower_limit(low), upper_limit(high) {
/macosx-10.10/xnu-2782.1.97/tools/tests/zero-to-n/
H A Dzero-to-n.c519 thread_precedence_policy_data_t prec; local
524 res = thread_policy_get(mach_thread_self(), THREAD_PRECEDENCE_POLICY, (thread_policy_t) &prec, &count, &get_default);
527 prec.importance += 16; /* 47 - 31 */
528 res = thread_policy_set(mach_thread_self(), THREAD_PRECEDENCE_POLICY, (thread_policy_t) &prec, THREAD_PRECEDENCE_POLICY_COUNT);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.h85 void mp_set_prec(unsigned int prec);
92 mp_err mp_init_size(mp_int *mp, mp_size prec);
/macosx-10.10/vim-55/runtime/syntax/
H A Dayacc.vim34 syn match ayaccKey "[ \t]%\(prec\|expect\|nonassoc\)\>"
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/slapi/
H A Dslapi_ops.c116 plugin_referral_entry_callback prec = NULL; local
122 slapi_pblock_get( pb, SLAPI_X_INTOP_REFERRAL_ENTRY_CALLBACK, (void **)&prec );
125 if ( prec != NULL ) {
127 rc = (*prec)( rs->sr_ref[i].bv_val, callback_data );
632 plugin_referral_entry_callback prec )
648 slapi_pblock_set( pb, SLAPI_X_INTOP_REFERRAL_ENTRY_CALLBACK, (void *)prec );
/macosx-10.10/gssd-64/
H A Dgssd_util.c928 int prec = -1, width = -1; local
943 prec = va_arg(*ap, int);
952 if (width > -1 && prec > -1)
953 *obp += slprintf(out_buffer, MAX_LOG_MESSAGE, kfmt, width, prec, gss_error_string);
956 else if (prec > -1)
957 *obp += slprintf(out_buffer, MAX_LOG_MESSAGE, kfmt, prec, gss_error_string);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djdmarker.c499 int n, prec; local
511 prec = n >> 4;
514 TRACEMS2(cinfo, 1, JTRC_DQT, n, prec);
523 if (prec) {
554 if (prec)
573 if (prec) length -= count;
/macosx-10.10/emacs-93/emacs/lisp/calc/
H A Dcalc-ext.el1344 (calc-change-mode 'calc-internal-prec (prefix-numeric-value n)
1348 (calc-record calc-internal-prec "prec"))
1349 (message "Floating-point precision is %d digits" calc-internal-prec)))
1594 (calc-internal-prec (cond ((>= nn 3) nn)
1595 ((< nn 0) (max (+ calc-internal-prec nn)
1597 (t calc-internal-prec)))
1876 (let ((cache-prec (intern (concat (symbol-name name) "-cache-prec")))
1878 (last-prec (inter
[all...]
H A Dcalcalg3.el534 (+ calc-internal-prec 10)
547 (if (= iters calc-internal-prec)
727 (math-with-extra-prec 2
924 (defun math-brent-min (expr prec a va x vx b vb)
925 (let ((iters (+ 20 (* 5 prec)))
930 (tol (list 'float 1 (- -1 prec)))
931 (zeps (list 'float 1 (- -5 prec)))
1016 (defun math-powell-min (expr n guesses prec)
1021 (ftol (list 'float 1 (- prec)))
1033 n prec)
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/CurveParamDocs/
H A Dschoof.c463 int lim = deg + 1, prec = 1; local
467 while(prec < lim) {
468 prec <<= 1;
469 if(prec > lim) prec = lim;
470 f->deg = prec-1;
473 tscratch->deg = prec-1;
478 tscratch->deg = prec-1;
481 sscratch->deg = prec-1;
H A Dschoofs.c463 int lim = deg + 1, prec = 1; local
467 while(prec < lim) {
468 prec <<= 1;
469 if(prec > lim) prec = lim;
470 f->deg = prec-1;
473 tscratch->deg = prec-1;
478 tscratch->deg = prec-1;
481 sscratch->deg = prec-1;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/CurveParamDocs/
H A Dschoof.c463 int lim = deg + 1, prec = 1; local
467 while(prec < lim) {
468 prec <<= 1;
469 if(prec > lim) prec = lim;
470 f->deg = prec-1;
473 tscratch->deg = prec-1;
478 tscratch->deg = prec-1;
481 sscratch->deg = prec-1;
H A Dschoofs.c463 int lim = deg + 1, prec = 1; local
467 while(prec < lim) {
468 prec <<= 1;
469 if(prec > lim) prec = lim;
470 f->deg = prec-1;
473 tscratch->deg = prec-1;
478 tscratch->deg = prec-1;
481 sscratch->deg = prec-1;
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf.c493 pi->prec = -1;
530 pi->prec = 0;
556 pi->prec *= 10;
557 pi->prec += to_digit(*fmt);
857 if (pi->prec != -1) fprintf(stderr, " prec %d", pi->prec);
879 pi->prec = pc->args[pi->get_prec].intarg;
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dexecute_cmd.c930 mkfmt (buf, prec, lng, sec, sec_fraction)
932 int prec, lng;
970 if (prec != 0)
973 for (aind = 1; aind <= prec; aind++)
989 %[prec][l][RUS]
991 where the optional `prec' is a precision, meaning the number of
1015 int prec, lng, len; local
1053 prec = 3; /* default is three places past the decimal point. */
1058 prec = *s++ - '0';
1059 if (prec >
[all...]
/macosx-10.10/Libc-1044.1.2/include/
H A Dprintf.h75 int prec; /* precision */ member in struct:printf_info
/macosx-10.10/bc-21/bc/bc/
H A Dsbc.y342 | '-' expression %prec UNARY_MINUS
/macosx-10.10/libresolv-57/
H A Dres_debug.c678 precsize_ntoa(prec)
679 u_int8_t prec;
685 mantissa = (int)((prec >> 4) & 0x0f) % 10;
686 exponent = (int)((prec >> 0) & 0x0f) % 10;

Completed in 403 milliseconds

12345