/linux-4.1.27/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 …]
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_ioc32.c | 196 drm_map32_t m32; in compat_drm_getmap() local 214 if (__get_user(m32.offset, &map->offset) in compat_drm_getmap() 215 || __get_user(m32.size, &map->size) in compat_drm_getmap() 216 || __get_user(m32.type, &map->type) in compat_drm_getmap() 217 || __get_user(m32.flags, &map->flags) in compat_drm_getmap() 219 || __get_user(m32.mtrr, &map->mtrr)) in compat_drm_getmap() 222 m32.handle = (unsigned long)handle; in compat_drm_getmap() 223 if (copy_to_user(argp, &m32, sizeof(m32))) in compat_drm_getmap() 233 drm_map32_t m32; in compat_drm_addmap() local 238 if (copy_from_user(&m32, argp, sizeof(m32))) in compat_drm_addmap() [all …]
|
/linux-4.1.27/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 CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h 47 biarch := $(call cc-option,-m32)
|
/linux-4.1.27/tools/testing/selftests/x86/ |
D | Makefile | 17 CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32) 38 $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
|
/linux-4.1.27/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()
|
/linux-4.1.27/arch/tile/kernel/vdso/ |
D | Makefile | 94 KBUILD_AFLAGS_32 += -m32 -s 96 KBUILD_CFLAGS_32 += -m32 -fPIC -shared 115 SYSCFLAGS_vdso32.so.dbg = -m32 -shared -s -Wl,-soname=linux-vdso32.so.1 \
|
/linux-4.1.27/arch/sparc/ |
D | Makefile | 27 KBUILD_CFLAGS += -m32 -mcpu=v8 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 28 KBUILD_AFLAGS += -m32 -Wa,-Av8
|
/linux-4.1.27/tools/lguest/ |
D | Makefile | 2 CFLAGS:=-m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE -Iinclude
|
/linux-4.1.27/arch/x86/vdso/ |
D | Makefile | 135 VDSO_LDFLAGS_vdso32.lds = -m32 -Wl,-m,elf_i386 -Wl,-soname=linux-gate.so.1 149 $(vdso32-images:%=$(obj)/%.dbg): asflags-$(CONFIG_X86_64) += -m32 155 KBUILD_CFLAGS_32 += -m32 -msoft-float -mregparm=0 -fpic
|
/linux-4.1.27/scripts/ |
D | gcc-ld | 10 -save-temps|-m32|-m64) N="$1" ;;
|
/linux-4.1.27/samples/seccomp/ |
D | Makefile | 26 MFLAG = -m32
|
/linux-4.1.27/arch/frv/include/asm/ |
D | math-emu.h | 76 unsigned long m32[2]; member 81 unsigned long m32[4]; member
|
/linux-4.1.27/arch/tile/kernel/ |
D | asm-offsets.c | 23 # error Must not specify -m32 when building the TILE-Gx kernel
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | math-emu.h | 76 unsigned long m32[2]; member 81 unsigned long m32[4]; member
|
/linux-4.1.27/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32) 25 CROSS32CC := $(CC) -m32
|
/linux-4.1.27/tools/build/feature/ |
D | Makefile | 148 $(CC) -m32 -o $(OUTPUT)$@ test-compile.c
|
/linux-4.1.27/tools/perf/ |
D | Makefile.perf | 353 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
|
/linux-4.1.27/Documentation/kbuild/ |
D | makefiles.txt | 478 biarch := $(call cc-option-yn, -m32) 480 cflags-$(biarch) += -m32 482 In the above example, $(biarch) is set to y if $(CC) supports the -m32 484 and $(cflags-y) will be assigned the values -a32 and -m32,
|
/linux-4.1.27/arch/tile/ |
D | Kconfig | 216 that were built with the -m32 option.
|