Home
last modified time | relevance | path

Searched refs:DECIMAL64_Ehigh (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal64.c140 if (exp>DECIMAL64_Ehigh) { /* top clamp */ in decimal64FromNumber()
141 exp=DECIMAL64_Ehigh; in decimal64FromNumber()
153 if (exp>DECIMAL64_Ehigh) { /* fold-down case */ in decimal64FromNumber()
154 pad=exp-DECIMAL64_Ehigh; in decimal64FromNumber()
155 exp=DECIMAL64_Ehigh; /* [to maximum] */ in decimal64FromNumber()
/openbmc/qemu/include/libdecnumber/dpd/
H A Ddecimal64.h52 #define DECIMAL64_Ehigh (DECIMAL64_Emax+DECIMAL64_Bias-DECIMAL64_Pmax+1) macro