Home
last modified time | relevance | path

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

/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal128.c136 if (exp>DECIMAL128_Ehigh) { /* top clamp */ in decimal128FromNumber()
137 exp=DECIMAL128_Ehigh; in decimal128FromNumber()
149 if (exp>DECIMAL128_Ehigh) { /* fold-down case */ in decimal128FromNumber()
150 pad=exp-DECIMAL128_Ehigh; in decimal128FromNumber()
151 exp=DECIMAL128_Ehigh; /* [to maximum] */ in decimal128FromNumber()
/openbmc/qemu/include/libdecnumber/dpd/
H A Ddecimal128.h51 #define DECIMAL128_Ehigh (DECIMAL128_Emax+DECIMAL128_Bias-DECIMAL128_Pmax+1) macro