Lines Matching refs:negative
96 int exp, tag, negative; in FPU_load_double() local
105 negative = (m64 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_double()
138 negative) in FPU_load_double()
149 setexponent16(loaded_data, exp | negative); in FPU_load_double()
158 int exp, tag, negative; in FPU_load_single() local
165 negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_single()
170 addexponent(loaded_data, negative); in FPU_load_single()
180 return normalize_no_excep(loaded_data, SINGLE_Emin, negative) in FPU_load_single()
203 setexponent16(loaded_data, exp | negative); /* Set the sign. */ in FPU_load_single()
242 int negative; in FPU_load_int32() local
255 negative = SIGN_Positive; in FPU_load_int32()
258 negative = SIGN_Negative; in FPU_load_int32()
264 return normalize_no_excep(loaded_data, 31, negative); in FPU_load_int32()
270 int s, negative; in FPU_load_int16() local
284 negative = SIGN_Positive; in FPU_load_int16()
287 negative = SIGN_Negative; in FPU_load_int16()
293 return normalize_no_excep(loaded_data, 15, negative); in FPU_load_int16()