| /linux/arch/m68k/math-emu/ |
| H A D | multi_arith.h | 29 reg->lowmant = reg->mant.m32[1] << (8 - cnt); in fp_denormalize() 30 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 31 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 32 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 35 reg->lowmant = reg->mant.m32[1] >> (cnt - 8); in fp_denormalize() 36 if (reg->mant.m32[1] << (40 - cnt)) in fp_denormalize() 38 reg->mant.m32[1] = (reg->mant.m32[1] >> cnt) | in fp_denormalize() 39 (reg->mant.m32[0] << (32 - cnt)); in fp_denormalize() 40 reg->mant.m32[0] = reg->mant.m32[0] >> cnt; in fp_denormalize() 44 : "m" (reg->mant.m32[0]), "d" (64 - cnt)); in fp_denormalize() [all …]
|
| H A D | fp_arith.c | 186 if ((long)dest->mant.m32[0] >= 0) in fp_fmul() 188 if ((long)src->mant.m32[0] >= 0) in fp_fmul() 196 if ((long)temp.m32[0] > 0) { in fp_fmul() 272 if ((long)dest->mant.m32[0] >= 0) in fp_fdiv() 274 if ((long)src->mant.m32[0] >= 0) in fp_fdiv() 282 if (!temp.m32[0]) { in fp_fdiv() 340 fp_mul64(dest->mant.m32[0], dest->mant.m32[1], in fp_fsglmul() 341 dest->mant.m32[0] & 0xffffff00, in fp_fsglmul() 342 src->mant.m32[0] & 0xffffff00); in fp_fsglmul() 405 dest->mant.m32[0] &= 0xffffff00; in fp_fsgldiv() [all …]
|
| /linux/tools/testing/selftests/powerpc/math/ |
| H A D | fpu_denormal.c | 18 unsigned int m32; in test_denormal_fpu() local 25 m32 = 0x00715fcf; /* random denormal */ in test_denormal_fpu() 26 memcpy((float *)&f, &m32, sizeof(f)); in test_denormal_fpu()
|
| /linux/tools/testing/selftests/powerpc/stringloops/ |
| H A D | Makefile | 4 build_32bit = $(shell if ($(CC) $(CFLAGS) -m32 -o /dev/null memcmp.c >/dev/null 2>&1) then echo "1"… 13 $(OUTPUT)/memcmp_32: CFLAGS += -m32 22 $(OUTPUT)/strlen_32: CFLAGS += -m32
|
| /linux/tools/testing/memblock/scripts/ |
| H A D | Makefile.include | 12 CFLAGS += -m32 -U CONFIG_PHYS_ADDR_T_64BIT 13 LDFLAGS += -m32
|
| /linux/arch/x86/math-emu/ |
| H A 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()
|
| /linux/tools/testing/scatterlist/ |
| H A D | Makefile | 8 CFLAGS += -m32 9 LDFLAGS += -m32
|
| /linux/scripts/ |
| H A D | Kconfig.include | 62 # $(m32-flag): -m32 if the compiler supports it, or an empty string otherwise. 65 m32-flag := $(cc-option-bit,-m32)
|
| /linux/tools/testing/memblock/ |
| H A D | Makefile | 16 CFLAGS += -m32 17 LDFLAGS += -m32
|
| /linux/tools/testing/shared/ |
| H A D | shared.mk | 31 CFLAGS += -m32 32 LDFLAGS += -m32
|
| /linux/tools/testing/selftests/x86/ |
| H A D | Makefile | 9 CAN_BUILD_I386 := $(shell ./check_cc.sh "$(CC)" trivial_32bit_program.c -m32) 84 $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $< $(EXTRA_FILES) -lrt -ldl -lm
|
| /linux/arch/sparc/vdso/ |
| H A D | Makefile | 76 $(obj)/vdso32.so.dbg: asflags-$(CONFIG_SPARC64) += -m32 85 KBUILD_CFLAGS_32 += -m32 -msoft-float -fpic
|
| /linux/tools/perf/arch/x86/tests/ |
| H A D | gen-insn-x86-dat.sh | 28 gcc -g -c -m32 insn-x86-dat-src.c
|
| /linux/arch/m68k/include/asm/ |
| H A D | math-emu.h | 77 unsigned long m32[2]; member 82 unsigned long m32[4]; member
|
| /linux/tools/testing/selftests/nolibc/ |
| H A D | Makefile.nolibc | 214 CFLAGS_i386 = $(call cc-option,-m32) 218 CFLAGS_ppc = -m32 -mbig-endian -mno-vsx $(call cc-option,-mmultiple) 229 CFLAGS_sparc32 = $(call cc-option,-m32) -mcpu=v8
|
| /linux/tools/testing/selftests/mm/ |
| H A D | Makefile | 114 CAN_BUILD_I386 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_32bit_program.c -m32) 215 $(BINARIES_32): CFLAGS += -m32 -mxsave
|
| /linux/arch/powerpc/kernel/vdso/ |
| H A D | Makefile | 55 CC32FLAGS := -m32
|
| /linux/arch/powerpc/ |
| H A D | Makefile | 24 HAS_BIARCH := $(call cc-option-yn, -m32)
|
| H A D | Kconfig | 291 …select HAVE_STACKPROTECTOR if PPC32 && $(cc-option,$(m32-flag) -mstack-protector-guard=tls -mstac…
|
| /linux/tools/build/feature/ |
| H A D | Makefile | 311 $(CC) -m32 -Wall -Werror -o $@ test-compile.c
|
| /linux/arch/powerpc/boot/ |
| H A D | Makefile | 42 BOOTTARGETFLAGS := -m32
|
| /linux/ |
| H A D | Makefile | 1185 USERFLAGS_FROM_KERNEL += -m32 -m64 1203 CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)
|
| /linux/tools/perf/ |
| H A D | Makefile.perf | 919 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
|
| /linux/init/ |
| H A D | Kconfig | 92 default $(cc_can_link_user,$(m32-flag))
|