Lines Matching refs:nRet

176 			sal_Int64 nRet = aHexRest.toInt64( 16 );  in getNumericValue()  local
178 if (nRet == 0) in getNumericValue()
187 rfVal = (bNeg ? -(double)nRet : (double)nRet); in getNumericValue()
256 sal_Int64 nRet = aHexRest.toInt64( 16 ); in getHyperValue() local
258 if (nRet == 0) in getHyperValue()
267 rnVal = (bNeg ? -nRet : nRet); in getHyperValue()
349 sal_Int64 nRet; in toHyper() local
356 nRet = *(sal_Int32 *)rAny.getValue(); in toHyper()
360 nRet = (*(sal_Bool*)rAny.getValue() ? 1 : 0); in toHyper()
364 nRet = *(sal_Unicode *)rAny.getValue(); in toHyper()
367 nRet = *(sal_Int8 *)rAny.getValue(); in toHyper()
371 nRet = *(sal_Int16 *)rAny.getValue(); in toHyper()
375 nRet = *(sal_uInt16 *)rAny.getValue(); in toHyper()
379 nRet = *(sal_Int32 *)rAny.getValue(); in toHyper()
383 nRet = *(sal_uInt32 *)rAny.getValue(); in toHyper()
387 nRet = *(sal_Int64 *)rAny.getValue(); in toHyper()
392 nRet = *(sal_Int64 *)rAny.getValue(); in toHyper()
393 if ((min < 0 || (sal_uInt64)nRet >= (sal_uInt64)min) && // lower bound in toHyper()
394 (sal_uInt64)nRet <= max) // upper bound in toHyper()
396 return nRet; in toHyper()
407 nRet = (fVal > SAL_INT64_MAX ? (sal_Int64)(sal_uInt64)fVal : (sal_Int64)fVal); in toHyper()
410 return nRet; in toHyper()
419 nRet = (fVal > SAL_INT64_MAX ? (sal_Int64)(sal_uInt64)fVal : (sal_Int64)fVal); in toHyper()
422 return nRet; in toHyper()
439 nRet = (fVal > SAL_INT64_MAX ? (sal_Int64)(sal_uInt64)fVal : (sal_Int64)fVal); in toHyper()
441 return nRet; in toHyper()
453 if (nRet >= min && (nRet < 0 || (sal_uInt64)nRet <= max)) in toHyper()
454 return nRet; in toHyper()