Lines Matching refs:hval

93 	m_exprValue->u.hval = h;  in AstExpression()
183 if (ev->u.hval < SAL_MIN_INT16 || ev->u.hval > SAL_MAX_INT16) in coerce_value()
185 ev->u.sval = (sal_Int16)ev->u.hval; in coerce_value()
242 if (ev->u.hval < 0 || ev->u.hval > SAL_MAX_UINT16) in coerce_value()
244 ev->u.usval = (sal_uInt16)ev->u.hval; in coerce_value()
297 if (ev->u.hval < SAL_MIN_INT32 || ev->u.hval > SAL_MAX_INT32) in coerce_value()
299 ev->u.lval = (sal_Int32)ev->u.hval; in coerce_value()
354 if (ev->u.hval < 0 || ev->u.hval > SAL_MAX_UINT32) in coerce_value()
356 ev->u.lval = (sal_uInt32)ev->u.hval; in coerce_value()
393 ev->u.hval = (sal_Int64)ev->u.sval; in coerce_value()
397 ev->u.hval = (sal_Int64)ev->u.usval; in coerce_value()
401 ev->u.hval = (sal_Int64)ev->u.lval; in coerce_value()
405 ev->u.hval = (sal_Int64)ev->u.ulval; in coerce_value()
413 ev->u.hval = (sal_Int64)ev->u.uhval; in coerce_value()
417 ev->u.hval = (sal_Int64)ev->u.bval; in coerce_value()
423 ev->u.hval = (sal_Int64)ev->u.fval; in coerce_value()
429 ev->u.hval = (sal_Int64)ev->u.dval; in coerce_value()
433 ev->u.hval = (sal_Int64)ev->u.byval; in coerce_value()
464 if (ev->u.hval < 0) in coerce_value()
466 ev->u.uhval = (sal_uInt64)ev->u.hval; in coerce_value()
515 ev->u.bval = (ev->u.hval == 0) ? sal_False : sal_True; in coerce_value()
560 ev->u.fval = (float)ev->u.hval; in coerce_value()
609 ev->u.dval = (double)ev->u.hval; in coerce_value()
664 if (ev->u.hval < SAL_MIN_INT8 || ev->u.hval > SAL_MAX_UINT8) in coerce_value()
666 ev->u.byval = (sal_uChar) ev->u.hval; in coerce_value()
761 copy->u.hval = m_exprValue->u.hval; in coerce()
819 return (m_exprValue->u.hval == pExpr->getExprValue()->u.hval) ? sal_True : sal_False; in operator ==()
859 return (m_exprValue->u.hval == pExpr->getExprValue()->u.hval) ? sal_True : sal_False; in compare()
956 if (m_subExpr2->getExprValue()->u.hval == 0) in eval_bin_op()
958 retval->u.hval = m_subExpr1->getExprValue()->u.hval % m_subExpr2->getExprValue()->u.hval; in eval_bin_op()
1141 return OString::valueOf(m_exprValue->u.hval); in toString()