Lines Matching refs:bcdLong
855 return (int8_t) ((fBCD.bcdLong >> (position * 4)) & 0xf); in getDigitPos()
870 fBCD.bcdLong = (fBCD.bcdLong & ~(0xfL << shift)) | ((long) value << shift); in setDigitPos()
888 fBCD.bcdLong <<= (numDigits * 4); in shiftLeft()
904 fBCD.bcdLong >>= (numDigits * 4); in shiftRight()
916 fBCD.bcdLong = 0L; in setBcdToZero()
933 fBCD.bcdLong = result >> (i * 4); in readIntToBcd()
957 fBCD.bcdLong = result >> (i * 4); in readLongToBcd()
975 fBCD.bcdLong = result; in readDecNumberToBcd()
995 fBCD.bcdLong = result; in readDoubleConversionToBcd()
1025 if (fBCD.bcdLong == 0L) { in compact()
1035 fBCD.bcdLong >>= delta * 4; in compact()
1075 uint64_t bcdLong = 0L; in switchStorage() local
1077 bcdLong <<= 4; in switchStorage()
1078 bcdLong |= fBCD.bcdBytes.ptr[i]; in switchStorage()
1082 fBCD.bcdLong = bcdLong; in switchStorage()
1087 uint64_t bcdLong = fBCD.bcdLong; in switchStorage() local
1090 fBCD.bcdBytes.ptr[i] = static_cast<int8_t>(bcdLong & 0xf); in switchStorage()
1091 bcdLong >>= 4; in switchStorage()
1103 fBCD.bcdLong = other.fBCD.bcdLong; in copyBcdFrom()
1117 fBCD.bcdLong = other.fBCD.bcdLong; in moveBcdFrom()
1136 if (precision == 0 && fBCD.bcdLong != 0) { in checkHealth()