Searched refs:tempLong (Results 1 – 7 of 7) sorted by relevance
136 long tempLong = 0L; in bcdToBigDecimal() local138 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()140 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
139 long tempLong = 0L; in bcdToBigDecimal() local141 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()143 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
230 long tempLong = 0L; in bcdToBigDecimal() local232 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()234 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
578 long tempLong = 0L; in toDouble() local581 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()583 double result = tempLong; in toDouble()
232 long tempLong = 0L; in bcdToBigDecimal() local234 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()236 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
580 long tempLong = 0L; in toDouble() local583 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()585 double result = tempLong; in toDouble()
476 int64_t tempLong = 0L; in toDouble() local479 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()481 double result = static_cast<double>(tempLong); in toDouble()