Searched refs:m32 (Results 1 – 14 of 14) sorted by relevance
/arch/m68k/math-emu/ |
D | multi_arith.h | 28 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize() 29 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 30 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 31 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 34 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize() 35 if (reg->mant.m32[1] << (40 - cnt)) in fp_denormalize() 37 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 38 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 39 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 43 : "m" (reg->mant.m32[0]), "d" (64 - cnt)); in fp_denormalize() [all …]
|
D | fp_arith.c | 195 if ((long)dest->mant.m32[0] >= 0) in fp_fmul() 197 if ((long)src->mant.m32[0] >= 0) in fp_fmul() 205 if ((long)temp.m32[0] > 0) { in fp_fmul() 282 if ((long)dest->mant.m32[0] >= 0) in fp_fdiv() 284 if ((long)src->mant.m32[0] >= 0) in fp_fdiv() 292 if (!temp.m32[0]) { in fp_fdiv() 351 fp_mul64(dest->mant.m32[0], dest->mant.m32[1], in fp_fsglmul() 352 dest->mant.m32[0] & 0xffffff00, in fp_fsglmul() 353 src->mant.m32[0] & 0xffffff00); in fp_fsglmul() 417 dest->mant.m32[0] &= 0xffffff00; in fp_fsgldiv() [all …]
|
/arch/x86/ |
D | Makefile.um | 11 KBUILD_CFLAGS += $(call cc-option,-m32) 12 KBUILD_AFLAGS += $(call cc-option,-m32) 13 LINK-y += $(call cc-option,-m32)
|
D | Makefile | 20 biarch := $(call cc-option,-m32)
|
/arch/sparc/ |
D | Makefile | 33 KBUILD_CFLAGS += -m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 34 KBUILD_AFLAGS += -m32 -Wa,-Av8
|
/arch/x86/math-emu/ |
D | reg_ld_str.c | 157 unsigned m32; in FPU_load_single() local 162 FPU_get_user(m32, (unsigned long __user *)single); in FPU_load_single() 165 negative = (m32 & 0x80000000) ? SIGN_Negative : SIGN_Positive; in FPU_load_single() 167 if (!(m32 & 0x7fffffff)) { in FPU_load_single() 173 exp = ((m32 & 0x7f800000) >> 23) - SINGLE_Ebias + EXTENDED_Ebias; in FPU_load_single() 174 m32 = (m32 & 0x7fffff) << 8; in FPU_load_single() 177 loaded_data->sigh = m32; in FPU_load_single() 184 if (m32 == 0) { in FPU_load_single() 193 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single() 198 loaded_data->sigh = m32 | 0x80000000; in FPU_load_single()
|
/arch/tile/kernel/ |
D | asm-offsets.c | 30 # error Must not specify -m32 when building the TILE-Gx kernel
|
/arch/x86/kernel/acpi/realmode/ |
D | Makefile | 43 KBUILD_CFLAGS += $(call cc-option, -m32)
|
/arch/frv/include/asm/ |
D | math-emu.h | 76 unsigned long m32[2]; member 81 unsigned long m32[4]; member
|
/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32) 25 CROSS32CC := $(CC) -m32
|
/arch/m68k/include/asm/ |
D | math-emu.h | 76 unsigned long m32[2]; member 81 unsigned long m32[4]; member
|
/arch/x86/vdso/ |
D | Makefile | 130 VDSO_LDFLAGS_vdso32.lds = -m32 -Wl,-soname=linux-gate.so.1 146 $(vdso32-images:%=$(obj)/%.dbg): asflags-$(CONFIG_X86_64) += -m32
|
/arch/x86/boot/ |
D | Makefile | 55 KBUILD_CFLAGS := $(LINUXINCLUDE) -m32 -g -Os -D_SETUP -D__KERNEL__ \
|
/arch/tile/ |
D | Kconfig | 163 that were built with the -m32 option.
|