Searched refs:m32 (Results 1 – 12 of 12) sorted by relevance
/arch/m68k/math-emu/ |
D | multi_arith.h | 27 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize() 28 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 29 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 30 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 33 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize() 34 if (reg->mant.m32[1] << (40 - cnt)) in fp_denormalize() 36 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 37 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 38 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 42 : "m" (reg->mant.m32[0]), "d" (64 - cnt)); in fp_denormalize() [all …]
|
D | fp_arith.c | 193 if ((long)dest->mant.m32[0] >= 0) in fp_fmul() 195 if ((long)src->mant.m32[0] >= 0) in fp_fmul() 203 if ((long)temp.m32[0] > 0) { in fp_fmul() 280 if ((long)dest->mant.m32[0] >= 0) in fp_fdiv() 282 if ((long)src->mant.m32[0] >= 0) in fp_fdiv() 290 if (!temp.m32[0]) { in fp_fdiv() 349 fp_mul64(dest->mant.m32[0], dest->mant.m32[1], in fp_fsglmul() 350 dest->mant.m32[0] & 0xffffff00, in fp_fsglmul() 351 src->mant.m32[0] & 0xffffff00); in fp_fsglmul() 415 dest->mant.m32[0] &= 0xffffff00; in fp_fsgldiv() [all …]
|
/arch/x86/ |
D | Makefile.um | 12 KBUILD_CFLAGS += $(call cc-option,-m32) 13 KBUILD_AFLAGS += $(call cc-option,-m32) 14 LINK-y += $(call cc-option,-m32)
|
D | Makefile | 31 CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h 73 biarch := $(call cc-option,-m32)
|
/arch/sparc/ |
D | Makefile | 32 KBUILD_CFLAGS += -m32 -mcpu=v8 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 35 KBUILD_AFLAGS += -m32 -Wa,-Av8
|
/arch/x86/math-emu/ |
D | reg_ld_str.c | 158 unsigned m32; in FPU_load_single() local 163 FPU_get_user(m32, (unsigned long __user *)single); in FPU_load_single() 166 negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_single() 168 if (!(m32 & 0x7fffffff)) { in FPU_load_single() 174 exp = ((m32 & 0x7f800000) >> 23) - SINGLE_Ebias + EXTENDED_Ebias; in FPU_load_single() 175 m32 = (m32 & 0x7fffff) << 8; in FPU_load_single() 178 loaded_data->sigh = m32; in FPU_load_single() 185 if (m32 == 0) { in FPU_load_single() 194 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single() 199 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single()
|
/arch/sparc/vdso/ |
D | Makefile | 88 $(obj)/vdso32.so.dbg: asflags-$(CONFIG_SPARC64) += -m32 95 KBUILD_CFLAGS_32 += -m32 -msoft-float -fpic
|
/arch/powerpc/kernel/vdso32/ |
D | Makefile | 19 CC32FLAGS += -m32
|
/arch/m68k/include/asm/ |
D | math-emu.h | 77 unsigned long m32[2]; member 82 unsigned long m32[4]; member
|
/arch/x86/entry/vdso/ |
D | Makefile | 140 $(obj)/vdso32.so.dbg: asflags-$(CONFIG_X86_64) += -m32 149 KBUILD_CFLAGS_32 += -m32 -msoft-float -mregparm=0 -fpic
|
/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32)
|
/arch/powerpc/boot/ |
D | Makefile | 40 BOOTCFLAGS += -m32
|