Searched refs:inexact (Results 1 - 25 of 34) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/math-emu/
H A Ddenormal.c61 boolean guardbit = FALSE, stickybit, inexact; local
67 Sgl_denormalize(opnd,exponent,guardbit,stickybit,inexact);
68 if (inexact) {
90 *inexactflag = inexact;
102 boolean guardbit = FALSE, stickybit, inexact; local
109 Dbl_denormalize(opndp1,opndp2,exponent,guardbit,stickybit,inexact);
110 if (inexact) {
133 *inexactflag = inexact;
H A Dfcnvfu.c67 register boolean inexact = FALSE; local
108 /* check for inexact */
110 inexact = TRUE;
130 /* check for inexact */
132 inexact = TRUE;
147 inexact = FALSE;
159 inexact = FALSE;
168 if (inexact) {
188 register boolean inexact = FALSE; local
229 /* check for inexact */
306 register boolean inexact = FALSE; local
429 register boolean inexact = FALSE; local
[all...]
H A Dfcnvff.c149 register boolean inexact = FALSE, guardbit = FALSE, stickybit = FALSE; local
197 Dbl_to_sgl_mantissa(srcp1,srcp2,dest_mantissa,inexact,guardbit,
207 Dbl_to_sgl_mantissa(srcp1,srcp2,dest_mantissa,inexact,
211 /* compute result, determine inexact info,
215 dest_mantissa,inexact,guardbit,stickybit,lsb_odd,
222 if (inexact) {
261 if (inexact)
268 inexact = TRUE;
288 if (inexact)
297 if (inexact
[all...]
H A Dfrnd.c55 register boolean inexact = FALSE; local
92 /* check for inexact */
94 inexact = TRUE;
118 /* check for inexact */
120 inexact = TRUE;
139 if (inexact) {
160 register boolean inexact = FALSE; local
198 /* check for inexact */
200 inexact = TRUE;
226 /* check for inexact */
[all...]
H A Dfcnvfx.c66 register boolean inexact = FALSE; local
99 /* check for inexact */
101 inexact = TRUE;
123 /* check for inexact */
125 inexact = TRUE;
143 if (inexact) {
163 register boolean inexact = FALSE; local
205 /* check for inexact */
207 inexact = TRUE;
236 /* check for inexact */
284 register boolean inexact = FALSE; local
395 register boolean inexact = FALSE; local
[all...]
H A Ddfdiv.c56 register boolean inexact = FALSE, guardbit = FALSE, stickybit = FALSE; local
262 inexact = guardbit | stickybit;
267 if (inexact && (dest_exponent > 0 || Is_underflowtrap_enabled())) {
299 if (inexact)
308 inexact = TRUE;
321 if (inexact)
330 if (dest_exponent == 0 && inexact) {
363 stickybit = inexact;
365 stickybit,inexact);
368 if (inexact) {
[all...]
H A Ddfmpy.c59 register boolean inexact = FALSE, guardbit = FALSE, stickybit = FALSE; local
250 * check for guard, sticky and inexact bits
254 inexact = guardbit | stickybit;
262 if (inexact && (dest_exponent>0 || Is_underflowtrap_enabled())) {
294 if (inexact)
300 inexact = TRUE;
316 if (inexact)
325 if (dest_exponent == 0 && inexact) {
358 stickybit = inexact;
360 stickybit,inexact);
[all...]
H A Dsfdiv.c55 register boolean inexact = FALSE, guardbit = FALSE, stickybit = FALSE; local
256 inexact = guardbit | stickybit;
261 if (inexact && (dest_exponent > 0 || Is_underflowtrap_enabled())) {
293 if (inexact)
302 inexact = TRUE;
315 if (inexact)
324 if (dest_exponent == 0 && inexact) {
357 stickybit = inexact;
358 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact);
361 if (inexact) {
[all...]
H A Dsfmpy.c58 register boolean inexact = FALSE, guardbit = FALSE, stickybit = FALSE; local
236 * check for guard, sticky and inexact bits
240 inexact = guardbit | stickybit;
248 if (inexact && (dest_exponent>0 || Is_underflowtrap_enabled())) {
280 if (inexact)
286 inexact = TRUE;
302 if (inexact)
311 if (dest_exponent == 0 && inexact) {
344 stickybit = inexact;
345 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact);
[all...]
H A Dcnv_float.h101 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \
105 inexact = guard | sticky; \
108 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \
113 inexact = Dallp2(srcB) << 3; \
114 guard = inexact >> 31; \
115 sticky = inexact << 1; \
118 if (inexact) { \
148 sticky = inexact; \
149 inexact |= guard; \
156 inexact
[all...]
H A Ddecode_exc.c108 boolean inexact; local
209 * where x is 1 if inexact and pp represent the inexact bit (I)
225 if (Ibit(Fpu_register[exception_index])) inexact = TRUE;
226 else inexact = FALSE;
239 sgl_denormalize(&Fpu_sgl(target),&inexact,Rounding_mode()); local
252 &inexact,Rounding_mode()); local
255 if (inexact) Set_underflowflag();
257 * Underflow can generate an inexact
258 * exception. If inexact tra
[all...]
H A Ddfadd.c60 register boolean inexact = FALSE; local
210 /* inexact = FALSE */
262 /* inexact = FALSE */
426 /* inexact = FALSE */
430 * Since we cannot get an inexact denormalized result,
461 inexact = TRUE;
504 if (inexact)
512 inexact = TRUE;
519 if(inexact)
H A Ddfsub.c61 register boolean inexact = FALSE, underflowtrap; local
213 /* inexact = FALSE */
265 /* inexact = FALSE */
429 /* inexact = FALSE */
433 * Since we cannot get an inexact denormalized result,
464 inexact = TRUE;
507 if (inexact)
515 inexact = TRUE;
522 if(inexact)
H A Dsfadd.c61 register boolean inexact = FALSE; local
421 /* inexact = FALSE; */
425 * Since we cannot get an inexact denormalized result,
456 inexact = TRUE;
499 if (inexact)
508 inexact = TRUE;
514 if(inexact)
H A Dsfsub.c60 register boolean inexact = FALSE, underflowtrap; local
211 /* inexact = FALSE */
261 /* inexact = FALSE */
424 /* inexact = FALSE */
428 * Since we cannot get an inexact denormalized result,
459 inexact = TRUE;
502 if (inexact)
511 inexact = TRUE;
517 if(inexact)
H A Dfmpyfadd.c70 boolean inexact = FALSE, is_tiny = FALSE; local
323 /* inexact = FALSE */
365 /* inexact = FALSE */
638 inexact = TRUE;
679 if (inexact)
686 inexact = TRUE;
698 if (inexact)
705 else if (inexact && is_tiny) Set_underflowflag();
709 if (inexact)
729 boolean inexact local
1387 boolean inexact = FALSE, is_tiny = FALSE; local
2028 boolean inexact = FALSE, is_tiny = FALSE; local
[all...]
H A Dsgl_float.h302 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
307 inexact = guard | sticky; \
313 inexact = sticky; \
H A Ddbl_float.h352 the end to properly set inexact. */ \
502 #define Dbl_denormalize(opndp1,opndp2,exponent,guard,sticky,inexact) \
524 inexact = guard | sticky; \
530 inexact = sticky; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-scheme.c503 enum { unknown, exact, inexact } exactness = unknown; enumerator in enum:__anon2443
547 exactness = inexact;
556 if (exactness != inexact)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/ifpsp060/
H A Dfskeleton.S164 | This is the exit point for the 060FPSP when an enabled inexact exception
166 | for enabled inexact exceptions. The exception stack frame is an inexact
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dx_unfl.S55 | If underflow exceptions are not enabled, check for inexact
92 | Inexact enabled and reported, and we must take an inexact exception
H A Dfpsp.h235 .set inex2_bit,1 | inexact result 2
236 .set inex1_bit,0 | inexact result 1
242 .set ainex_bit,3 | accrued inexact
264 .set ainex_mask,0x00000008 | accrued inexact
H A Dsint.S127 | If the subroutine results in an inexact operation, the inx2 and
226 | ;inexact flag set in USER_FPSR
H A Dround.S41 | inexact (i.e. if any of the g-r-s bits were set).
494 | d1.b inexact flag: all ones means inexact result
H A Dsetox.S53 | Notes: This will always generate one exception -- inexact.
167 | The inexact exception is not generated in 6.4. Although
168 | one can argue that the inexact flag should always be
176 | Notes: For non-zero X, the inexact exception will always be
205 | with an inexact result. Thus, 9.5 always raises the
206 | inexact together with either overflow or underflow.
299 | 8.2 generates the inexact exception as the case warrants.
326 | Notes: 10.2 will always create an inexact and return -1 + tiny

Completed in 118 milliseconds

12