Searched refs:DECIMAL64_Bias (Results 1 – 2 of 2) sorted by relevance
48 #define DECIMAL64_Bias 398 /* bias for the exponent */ macro52 #define DECIMAL64_Ehigh (DECIMAL64_Emax+DECIMAL64_Bias-DECIMAL64_Pmax+1)
134 if (dn->exponent<-DECIMAL64_Bias) { in decimal64FromNumber()139 exp=dn->exponent+DECIMAL64_Bias; /* bias exponent */ in decimal64FromNumber()152 exp=(uInt)(dn->exponent+DECIMAL64_Bias); /* bias exponent */ in decimal64FromNumber()253 dn->exponent=(exp<<8)+((sourhi>>18)&0xff)-DECIMAL64_Bias; /* unbiased */ in decimal64ToNumber()348 else exp=(exp<<8)+((sourhi>>18)&0xff)-DECIMAL64_Bias; in decimal64ToString()