Home
last modified time | relevance | path

Searched refs:Th_SetResultDouble (Results 1 – 2 of 2) sorted by relevance

/dports/devel/fossil/fossil-src-2.17/src/
H A Dth.h162 int Th_SetResultDouble(Th_Interp *, double);
H A Dth.c2156 case OP_MULTIPLY: Th_SetResultDouble(interp, fLeft*fRight); break; in exprEval()
2163 Th_SetResultDouble(interp, fLeft/fRight); in exprEval()
2165 case OP_ADD: Th_SetResultDouble(interp, fLeft+fRight); break; in exprEval()
2166 case OP_SUBTRACT: Th_SetResultDouble(interp, fLeft-fRight); break; in exprEval()
2173 case OP_UNARY_MINUS: Th_SetResultDouble(interp, -fLeft); break; in exprEval()
2174 case OP_UNARY_PLUS: Th_SetResultDouble(interp, +fLeft); break; in exprEval()
2868 int Th_SetResultDouble(Th_Interp *interp, double fVal){ in Th_SetResultDouble() function