Lines Matching defs:exp
139 int exp = 0;
155 --exp;
159 ++exp;
161 if ((exp > 128) || (exp < -127)) {
167 val += 127 + exp; /* 127 is the bias */
186 exp = (val & 0x7f800000) >> 23;
187 exp -= 127; /* subtract exponent base */
192 while (exp != 0) {
193 if (exp < 0) {
195 ++exp;
198 --exp;
227 int exp = 0;
246 --exp;
250 ++exp;
252 if ((exp > 1024) || (exp < -1023)) {
257 val[0] += 1023 + exp; /* 1023 is the bias */
281 exp = (val[0] & 0x7ff00000) >> 20;
282 exp -= 1023; /* subtract exponent base */
288 while (exp != 0) {
289 if (exp < 0) {
291 ++exp;
294 --exp;