Home | History | Annotate | Download | only in tests

Lines Matching defs:flt

156 static yasm_floatnum *flt;
164 flt = yasm_floatnum_create(vals[i].ascii);
176 mantissa = BitVector_Block_Read(flt->mantissa, &len);
186 if (flt->exponent != val->exponent) {
190 if (flt->sign != val->sign) {
194 if (flt->flags != val->flags) {
211 yasm_floatnum_destroy(flt);
226 yasm_floatnum_destroy(flt);
234 flt = malloc(sizeof(yasm_floatnum));
235 flt->mantissa = BitVector_Create(MANT_BITS, TRUE);
241 BitVector_Destroy(flt->mantissa);
242 free(flt);
248 /* set up flt */
249 BitVector_Block_Store(flt->mantissa, vals[i].mantissa, MANT_BYTES);
250 flt->sign = vals[i].sign;
251 flt->exponent = vals[i].exponent;
252 flt->flags = vals[i].flags;
304 if (yasm_floatnum_get_sized(flt, outval, 4, 32, 0, 0, 0) !=
322 if (yasm_floatnum_get_sized(flt, outval, 4, 32, 0, 0, 0) !=
344 if (yasm_floatnum_get_sized(flt, outval, 8, 64, 0, 0, 0) !=
362 if (yasm_floatnum_get_sized(flt, outval, 8, 64, 0, 0, 0) !=
384 if (yasm_floatnum_get_sized(flt, outval, 10, 80, 0, 0, 0) !=
402 if (yasm_floatnum_get_sized(flt, outval, 10, 80, 0, 0, 0) !=