Home | History | Annotate | Download | only in ppc32

Lines Matching refs:check_int_to_flt_round

260 int check_int_to_flt_round(round_mode_t mode, long L, float *expected)
341 status |= check_int_to_flt_round(TO_NEAREST, int24_lo, &pos_flt_lo);
342 status |= check_int_to_flt_round(TO_NEAREST, int24_hi, &pos_flt_hi);
343 status |= check_int_to_flt_round(TO_ZERO, int24_lo, &pos_flt_lo);
344 status |= check_int_to_flt_round(TO_ZERO, int24_hi, &pos_flt_lo);
345 status |= check_int_to_flt_round(TO_PLUS_INFINITY, int24_lo, &pos_flt_hi);
346 status |= check_int_to_flt_round(TO_PLUS_INFINITY, int24_hi, &pos_flt_hi);
347 status |= check_int_to_flt_round(TO_MINUS_INFINITY, int24_lo, &pos_flt_lo);
348 status |= check_int_to_flt_round(TO_MINUS_INFINITY, int24_hi, &pos_flt_lo);
350 status |= check_int_to_flt_round(TO_NEAREST, -int24_lo, &neg_flt_lo);
351 status |= check_int_to_flt_round(TO_NEAREST, -int24_hi, &neg_flt_hi);
352 status |= check_int_to_flt_round(TO_ZERO, -int24_lo, &neg_flt_lo);
353 status |= check_int_to_flt_round(TO_ZERO, -int24_hi, &neg_flt_lo);
354 status |= check_int_to_flt_round(TO_PLUS_INFINITY, -int24_lo, &neg_flt_lo);
355 status |= check_int_to_flt_round(TO_PLUS_INFINITY, -int24_hi, &neg_flt_lo);
356 status |= check_int_to_flt_round(TO_MINUS_INFINITY, -int24_lo, &neg_flt_hi);
357 status |= check_int_to_flt_round(TO_MINUS_INFINITY, -int24_hi, &neg_flt_hi);