Searched refs:expt (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
H A D | 950922-1.c | 20 int expt; in f() local 49 if (expt < ndig || (f & 0x001) != 0) { in f() 52 } else if (expt <= 0) { in f() 55 …{ if ((n = (-expt)) > 0) { while (n > 16) {{ p->x = (zeroes); p->r = 16; q.z += 16; p++; if (++q.t… in f() 58 … { p->x = cp; p->r = expt; q.z += expt; p++; if (++q.t >= 8) { if (g(fp, &q)) goto error; p = w; }} in f() 59 cp += expt; in f() 61 …{ p->x = cp; p->r = (ndig-expt); q.z += (ndig-expt); p++; if (++q.t >= 8) { if (g(fp, &q)) goto er… in f()
|
H A D | 920428-2.c | 490 int expt, shift; in gx_matrix_to_fixed_coeff() local 497 { (void)frexp(ctm.xy, &expt); in gx_matrix_to_fixed_coeff() 498 if ( expt > scale ) scale = expt; in gx_matrix_to_fixed_coeff() 502 { (void)frexp(ctm.yx, &expt); in gx_matrix_to_fixed_coeff() 503 if ( expt > scale ) scale = expt; in gx_matrix_to_fixed_coeff() 507 { (void)frexp(ctm.yy, &expt); in gx_matrix_to_fixed_coeff() 508 if ( expt > scale ) scale = expt; in gx_matrix_to_fixed_coeff()
|
/openbsd/lib/libm/src/ |
H A D | s_atanl.c | 46 int16_t expsign, expt; in atanl() local 51 expt = expsign & 0x7fff; in atanl() 52 if(expt >= ATAN_CONST) { /* if |x| is large, atan(x)~=pi/2 */ in atanl() 53 if(expt == BIAS + LDBL_MAX_EXP && in atanl() 68 expman = (expt << 8) | in atanl() 71 if (expt < ATAN_LINEAR) { /* if |x| is small, atanl(x)~=x */ in atanl()
|
H A D | e_acosl.c | 55 int16_t expsign, expt; in acosl() local 58 expt = expsign & 0x7fff; in acosl() 59 if(expt >= BIAS) { /* |x| >= 1 */ in acosl() 60 if(expt==BIAS && ((u.bits.ext_frach&~LDBL_NBIT) in acosl() 73 if(expt<BIAS-1) { /* |x| < 0.5 */ in acosl() 74 if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/ in acosl()
|
H A D | e_asinl.c | 45 int16_t expsign, expt; local 48 expt = expsign & 0x7fff; 49 if(expt >= BIAS) { /* |x|>= 1 */ 50 if(expt==BIAS && ((u.bits.ext_frach&~LDBL_NBIT) 61 } else if (expt<BIAS-1) { /* |x|<0.5 */ 62 if(expt<ASIN_LINEAR) { /* if |x| is small, asinl(x)=x */
|
/openbsd/lib/libc/stdio/ |
H A D | vfwprintf.c | 677 if (expt == INT_MAX) in __vfwprintf() 725 if (expt == 9999) in __vfwprintf() 726 expt = INT_MAX; in __vfwprintf() 747 if (expt > -4 && expt <= prec) { in __vfwprintf() 751 prec -= expt; in __vfwprintf() 772 if (expt > 0) in __vfwprintf() 773 size = expt; in __vfwprintf() 779 lead = expt; in __vfwprintf() 1012 if (expt <= 0) { in __vfwprintf() 1016 PAD(-expt, zeroes); in __vfwprintf() [all …]
|
H A D | vfprintf.c | 720 if (expt == INT_MAX) in __vfprintf() 763 if (expt == 9999) in __vfprintf() 764 expt = INT_MAX; in __vfprintf() 781 if (expt > -4 && expt <= prec) { in __vfprintf() 785 prec -= expt; in __vfprintf() 806 if (expt > 0) in __vfprintf() 807 size = expt; in __vfprintf() 813 lead = expt; in __vfprintf() 1034 if (expt <= 0) { in __vfprintf() 1038 PAD(-expt, zeroes); in __vfprintf() [all …]
|
/openbsd/gnu/gcc/gcc/ |
H A D | convert.c | 82 tree sub, expt, subt; in strip_float_extensions() local 111 expt = TREE_TYPE (exp); in strip_float_extensions() 116 if (TYPE_PRECISION (subt) > TYPE_PRECISION (expt)) in strip_float_extensions()
|