Home
last modified time | relevance | path

Searched refs:m32 (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/arch/m68k/math-emu/
Dmulti_arith.h268 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize()
269 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize()
270 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize()
271 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize()
274 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize()
275 if (reg->mant.m32[1] << (40 - cnt)) in fp_denormalize()
277 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize()
278 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize()
279 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize()
283 : "m" (reg->mant.m32[0]), "d" (64 - cnt)); in fp_denormalize()
[all …]
Dfp_arith.c194 if ((long)dest->mant.m32[0] >= 0) in fp_fmul()
196 if ((long)src->mant.m32[0] >= 0) in fp_fmul()
204 if ((long)temp.m32[0] > 0) { in fp_fmul()
281 if ((long)dest->mant.m32[0] >= 0) in fp_fdiv()
283 if ((long)src->mant.m32[0] >= 0) in fp_fdiv()
291 if (!temp.m32[0]) { in fp_fdiv()
350 fp_mul64(dest->mant.m32[0], dest->mant.m32[1], in fp_fsglmul()
351 dest->mant.m32[0] & 0xffffff00, in fp_fsglmul()
352 src->mant.m32[0] & 0xffffff00); in fp_fsglmul()
416 dest->mant.m32[0] &= 0xffffff00; in fp_fsgldiv()
[all …]
/linux-2.4.37.9/arch/i386/math-emu/
Dreg_ld_str.c177 unsigned m32; in FPU_load_single() local
182 FPU_get_user(m32, (unsigned long *) single); in FPU_load_single()
185 negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_single()
187 if (!(m32 & 0x7fffffff)) in FPU_load_single()
194 exp = ((m32 & 0x7f800000) >> 23) - SINGLE_Ebias + EXTENDED_Ebias; in FPU_load_single()
195 m32 = (m32 & 0x7fffff) << 8; in FPU_load_single()
199 loaded_data->sigh = m32; in FPU_load_single()
208 if ( m32 == 0 ) in FPU_load_single()
220 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single()
227 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single()
/linux-2.4.37.9/arch/x86_64/
DMakefile28 IA32_CC := $(CROSS_COMPILE)gcc -m32 -O2 -fomit-frame-pointer -nostdinc -I $(HPATH)
30 IA32_AS := $(CROSS_COMPILE)gcc -m32 -Wa,--32 -D__ASSEMBLY__ -traditional -c -nostdinc -I $(HPATH)
32 IA32_CPP := $(CROSS_COMPILE)gcc -m32 -E
/linux-2.4.37.9/arch/sparc/
DMakefile18 IS_EGCS := $(shell if $(CC) -m32 -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo y; else e…
30 CFLAGS := $(CFLAGS) -m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7
/linux-2.4.37.9/include/asm-m68k/
Dmath-emu.h76 unsigned long m32[2]; member
81 unsigned long m32[4]; member