Lines Matching refs:fval

199 					if (ev->u.fval < SAL_MIN_INT16 || ev->u.fval > SAL_MAX_INT16)  in coerce_value()
201 ev->u.sval = (sal_Int16)ev->u.fval; in coerce_value()
258 if (ev->u.fval < 0.0 || ev->u.fval > SAL_MAX_UINT16) in coerce_value()
260 ev->u.usval = (sal_uInt16)ev->u.fval; in coerce_value()
313 if (ev->u.fval < SAL_MIN_INT32 || ev->u.fval > SAL_MAX_INT32) in coerce_value()
315 ev->u.lval = (sal_Int32)ev->u.fval; in coerce_value()
370 if (ev->u.fval < 0.0 || ev->u.fval > SAL_MAX_UINT32) in coerce_value()
372 ev->u.ulval = (sal_uInt32)ev->u.fval; in coerce_value()
421 if (ev->u.fval < SAL_MIN_INT64 || ev->u.fval > SAL_MAX_INT64) in coerce_value()
423 ev->u.hval = (sal_Int64)ev->u.fval; in coerce_value()
476 if (ev->u.fval < 0.0 || ev->u.fval > SAL_MAX_UINT64) in coerce_value()
478 ev->u.uhval = (sal_uInt64)ev->u.fval; in coerce_value()
525 ev->u.bval = (ev->u.fval == 0.0) ? sal_False : sal_True; in coerce_value()
544 ev->u.fval = (float)ev->u.sval; in coerce_value()
548 ev->u.fval = (float)ev->u.usval; in coerce_value()
552 ev->u.fval = (float)ev->u.lval; in coerce_value()
556 ev->u.fval = (float)ev->u.ulval; in coerce_value()
560 ev->u.fval = (float)ev->u.hval; in coerce_value()
566 ev->u.fval = (float)ev->u.ulval; in coerce_value()
570 ev->u.fval = (ev->u.bval == sal_True) ? 1.0f : 0.0f; in coerce_value()
578 ev->u.fval = (float)ev->u.dval; in coerce_value()
582 ev->u.fval = (float)ev->u.byval; in coerce_value()
623 ev->u.dval = (double)ev->u.fval; in coerce_value()
680 if (ev->u.fval < SAL_MIN_INT8 || ev->u.fval > SAL_MAX_UINT8) in coerce_value()
682 ev->u.byval = (sal_uChar) ev->u.fval; in coerce_value()
770 copy->u.fval = m_exprValue->u.fval; in coerce()
823 return (m_exprValue->u.fval == pExpr->getExprValue()->u.fval) ? sal_True : sal_False; in operator ==()
863 return (m_exprValue->u.fval == pExpr->getExprValue()->u.fval) ? sal_True : sal_False; in compare()
1145 return OString::valueOf(m_exprValue->u.fval); in toString()