Lines Matching refs:negative
97 int exp, tag, negative; in FPU_load_double() local
106 negative = (m64 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_double()
139 negative) in FPU_load_double()
150 setexponent16(loaded_data, exp | negative); in FPU_load_double()
159 int exp, tag, negative; in FPU_load_single() local
166 negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_single()
171 addexponent(loaded_data, negative); in FPU_load_single()
181 return normalize_no_excep(loaded_data, SINGLE_Emin, negative) in FPU_load_single()
204 setexponent16(loaded_data, exp | negative); /* Set the sign. */ in FPU_load_single()
243 int negative; in FPU_load_int32() local
256 negative = SIGN_Positive; in FPU_load_int32()
259 negative = SIGN_Negative; in FPU_load_int32()
265 return normalize_no_excep(loaded_data, 31, negative); in FPU_load_int32()
271 int s, negative; in FPU_load_int16() local
285 negative = SIGN_Positive; in FPU_load_int16()
288 negative = SIGN_Negative; in FPU_load_int16()
294 return normalize_no_excep(loaded_data, 15, negative); in FPU_load_int16()