Searched defs:min_prec (Results 1 - 2 of 2) sorted by relevance

/external/toybox/toys/pending/
H A Dexpr.c213 static void eval_expr(struct value *ret, int min_prec) argument
221 eval_expr(ret, 1); // We're inside ( ), so min_prec = 1
238 if (o->prec < min_prec) break; // Precedence too low, pop a stack frame
/external/crcalc/src/com/hp/creals/
H A DCR.java239 transient int min_prec; field in class:CR
243 // The scaled approximation corresponding to min_prec.
245 // min_prec and max_val are valid.
359 if (appr_valid && precision >= min_prec) {
360 return scale(max_appr, min_prec - precision);
363 min_prec = precision;
384 first_digit = min_prec + length - 1;
1017 if (appr_valid && precision >= min_prec) {
1018 return scale(max_appr, min_prec - precision);
1023 min_prec
[all...]

Completed in 186 milliseconds