OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:min_prec
(Results
1 - 3
of
3
) sorted by null
/external/crcalc/src/com/hp/creals/
CR.java
229
transient int
min_prec
;
field in class:CR
233
// The scaled approximation corresponding to
min_prec
.
235
//
min_prec
and max_val are valid.
347
if (appr_valid && precision >=
min_prec
) {
348
return scale(max_appr,
min_prec
- precision);
351
min_prec
= precision;
372
first_digit =
min_prec
+ length - 1;
[
all
...]
UnaryCRFunction.java
382
boolean have_good_appr = (appr_valid &&
min_prec
< max_msd[0]);
402
(digits_needed < 30 ||
min_prec
< p + 3*digits_needed/4)) {
403
rough_prec =
min_prec
;
/external/toybox/toys/pending/
expr.c
212
static void eval_expr(struct value *ret, int
min_prec
)
220
eval_expr(ret, 1); // We're inside ( ), so
min_prec
= 1
237
if (o->prec <
min_prec
) break; // Precedence too low, pop a stack frame
Completed in 73 milliseconds