Searched refs:prec (Results 1 - 25 of 114) sorted by path

12345

/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Dclock.h108 #define DB_TIMESPEC_TO_TIMEOUT(t, vvp, prec) \
113 if (prec) \
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/
H A DCalc.yp39 | '-' exp %prec NEG { -$_[2] }
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/
H A DYapp.pm173 A rhs may be followed by an optional C<%prec> directive, followed
178 exp: '-' exp %prec NEG { -$_[1] }
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DParse.pm33 my($input,$lexlevel,@lineno,$nberr,$prec,$labelno);
374 'prec' => 65
574 $$term{$symbol} = [ $_[1][0], $prec ];
576 ++$prec;
765 'prec', 2,
932 $$input=~/\G%(prec)/gc
1038 $prec=0;
1072 undef($prec);
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/t/
H A Dstress.t363 | parm '=' expr_no_commas %prec ARITHCOMPARE
370 | template_header error %prec EMPTY
512 | NSNAME %prec EMPTY
591 | expr_no_commas %prec ARITHCOMPARE
655 primary %prec UNARY
657 | extension cast_expr %prec UNARY
658 | '*' cast_expr %prec UNARY
659 | '&' cast_expr %prec UNARY
661 | unop cast_expr %prec UNARY
664 | SIZEOF unary_expr %prec UNAR
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftp/
H A Dftp.c1446 int prec; local
1461 prec = 2;
1465 prec = 1;
1468 prec = 0;
1472 bytes, direction, s, prec, bs, unit);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.c215 void mp_set_prec(unsigned int prec) argument
217 if(prec == 0)
220 s_mp_defprec = prec;
270 /* {{{ mp_init_size(mp, prec) */
273 mp_init_size(mp, prec)
280 mp_err mp_init_size(mp_int *mp, mp_size prec) argument
282 ARGCHK(mp != NULL && prec > 0, MP_BADARG);
284 if((DIGITS(mp) = s_mp_alloc(prec, sizeof(mp_digit))) == NULL)
289 ALLOC(mp) = prec;
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/Heimdal-398.1.2/lib/roken/
H A Dsnprintf.c143 int width, int prec, int flags, int minusp)
152 if(prec != -1)
155 prec = 1;
169 if(prec == 0 && num == 0) {
194 if(prec <= nlen && nstr[nstart] != '0' && nstr[nstart] != '\0')
195 prec = nlen + 1;
207 if(prec > nlen)
208 width -= prec;
232 if(prec - nlen > width - len - nlen)
233 len += pad(state, prec
141 append_number(struct snprintf_state *state, u_longest num, unsigned base, const char *rep, int width, int prec, int flags, int minusp) argument
256 append_string(struct snprintf_state *state, const unsigned char *arg, int width, int prec, int flags) argument
358 int prec = -1; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DParserTokens.h47 #define BINARY_OP_PRECEDENCE(prec) (((prec) << BinaryOpTokenPrecedenceShift) | ((prec) << (BinaryOpTokenPrecedenceShift + BinaryOpTokenAllowsInPrecedenceAdditionalShift)))
48 #define IN_OP_PRECEDENCE(prec) ((prec) << (BinaryOpTokenPrecedenceShift + BinaryOpTokenAllowsInPrecedenceAdditionalShift))
/macosx-10.10/Libc-1044.1.2/include/
H A Dprintf.h75 int prec; /* precision */ member in struct:printf_info
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dvfprintf.c216 * string representation. If not -1, prec specifies the maximum number of
221 __wcsconv(wchar_t *wcsarg, int prec, locale_t loc) argument
231 if (prec < 0) {
243 if (prec < 128)
244 nbytes = prec;
252 nbytes + clen > prec)
324 int prec; /* precision from format; <0 for N/A */ local
366 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
512 prec = -1;
562 GETASTER (prec);
[all...]
H A Dvfwprintf.c278 * string representation. ``prec'' specifies the maximum number of bytes
279 * to output. If ``prec'' is greater than or equal to zero, we can't assume
283 __mbsconv(char *mbsarg, int prec, locale_t loc) argument
298 if (prec >= 0) {
306 while (nchars != (size_t)prec) {
400 int prec; /* precision from format; <0 for N/A */ local
440 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
581 prec = -1;
631 GETASTER (prec);
634 prec
[all...]
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;
H A Dxprintf_float.c162 int prec; /* precision from format; <0 for N/A */ local
181 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
198 prec = pi->prec;
225 if (prec >= 0)
226 prec++;
230 __hldtoa(ld, xdigs, prec,
235 __hdtoa(d, xdigs, prec,
238 if (prec < 0)
239 prec
[all...]
H A Dxprintf_int.c384 if (pi->prec == 0 && !(pi->alt && rdx == 8))
406 if (pi->prec > (pe - p))
407 zext = pi->prec - (pe - p);
408 else if (pi->prec != -1)
H A Dxprintf_str.c49 * string representation. If not -1, prec specifies the maximum number of
54 __wcsconv(wchar_t *wcsarg, int prec, locale_t loc) argument
64 if (prec < 0) {
76 if (prec < 128)
77 nbytes = prec;
85 (int)(nbytes + clen) > prec)
133 convbuf = __wcsconv(wcp, pi->prec, pi->loc);
145 if (pi->prec >= 0 && pi->prec < l)
146 l = pi->prec;
[all...]
H A Dxprintf_time.c66 int i, prec, nsec, ret; local
72 prec = 6;
77 prec = 9;
82 prec = 0;
85 if (pi->prec >= 0)
86 prec = pi->prec;
87 if (prec == 0)
98 if (tx >= DAY && (t != 0 || prec != 0)) {
102 if (tx >= HOUR && (t != 0 || prec !
[all...]
H A Dxprintf_vis.c60 if (pi->prec >= 0)
61 l = pi->prec;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/
H A Dslapi-plugin.h363 plugin_referral_entry_callback prec );
/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/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;

Completed in 475 milliseconds

12345