Lines Matching refs:bcdLong
990 return (int8_t) ((fBCD.bcdLong >> (position * 4)) & 0xf); in getDigitPos()
1005 fBCD.bcdLong = (fBCD.bcdLong & ~(0xfL << shift)) | ((long) value << shift); in setDigitPos()
1018 fBCD.bcdLong <<= (numDigits * 4); in shiftLeft()
1034 fBCD.bcdLong >>= (numDigits * 4); in shiftRight()
1048 fBCD.bcdLong &= (static_cast<uint64_t>(1) << ((precision - numDigits) * 4)) - 1; in popFromLeft()
1059 fBCD.bcdLong = 0L; in setBcdToZero()
1077 fBCD.bcdLong = result >> (i * 4); in readIntToBcd()
1101 fBCD.bcdLong = result >> (i * 4); in readLongToBcd()
1119 fBCD.bcdLong = result; in readDecNumberToBcd()
1139 fBCD.bcdLong = result; in readDoubleConversionToBcd()
1169 if (fBCD.bcdLong == 0L) { in compact()
1179 fBCD.bcdLong >>= delta * 4; in compact()
1219 uint64_t bcdLong = 0L; in switchStorage() local
1221 bcdLong <<= 4; in switchStorage()
1222 bcdLong |= fBCD.bcdBytes.ptr[i]; in switchStorage()
1226 fBCD.bcdLong = bcdLong; in switchStorage()
1231 uint64_t bcdLong = fBCD.bcdLong; in switchStorage() local
1234 fBCD.bcdBytes.ptr[i] = static_cast<int8_t>(bcdLong & 0xf); in switchStorage()
1235 bcdLong >>= 4; in switchStorage()
1247 fBCD.bcdLong = other.fBCD.bcdLong; in copyBcdFrom()
1261 fBCD.bcdLong = other.fBCD.bcdLong; in moveBcdFrom()
1280 if (precision == 0 && fBCD.bcdLong != 0) { in checkHealth()