/Linux-v4.19/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-v4.19/drivers/gpu/drm/ |
D | drm_ioc32.c | 172 drm_map32_t m32; in compat_drm_getmap() local 176 if (copy_from_user(&m32, argp, sizeof(m32))) in compat_drm_getmap() 179 map.offset = m32.offset; in compat_drm_getmap() 184 m32.offset = map.offset; in compat_drm_getmap() 185 m32.size = map.size; in compat_drm_getmap() 186 m32.type = map.type; in compat_drm_getmap() 187 m32.flags = map.flags; in compat_drm_getmap() 188 m32.handle = ptr_to_compat(map.handle); in compat_drm_getmap() 189 m32.mtrr = map.mtrr; in compat_drm_getmap() 190 if (copy_to_user(argp, &m32, sizeof(m32))) in compat_drm_getmap() [all …]
|
/Linux-v4.19/tools/testing/selftests/powerpc/stringloops/ |
D | Makefile | 7 build_32bit = $(shell if ($(CC) $(CFLAGS) -m32 -o /dev/null memcmp.c >/dev/null 2>&1) then echo "1"… 16 $(OUTPUT)/memcmp_32: CFLAGS += -m32 25 $(OUTPUT)/strlen_32: CFLAGS += -m32
|
/Linux-v4.19/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 68 biarch := $(call cc-option,-m32)
|
/Linux-v4.19/tools/testing/scatterlist/ |
D | Makefile | 7 CFLAGS += -m32 8 LDFLAGS += -m32
|
/Linux-v4.19/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()
|
/Linux-v4.19/tools/testing/radix-tree/ |
D | Makefile | 17 CFLAGS += -m32 18 LDFLAGS += -m32
|
/Linux-v4.19/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
|
/Linux-v4.19/arch/sparc/vdso/ |
D | Makefile | 76 VDSO_LDFLAGS_vdso32.lds = -m32 -Wl,-m,elf32_sparc,-soname=linux-gate.so.1 88 $(obj)/vdso32.so.dbg: asflags-$(CONFIG_SPARC64) += -m32 94 KBUILD_CFLAGS_32 += -m32 -msoft-float -fpic -mno-app-regs -ffixed-g7
|
/Linux-v4.19/tools/testing/selftests/x86/ |
D | Makefile | 9 CAN_BUILD_I386 := $(shell ./check_cc.sh $(CC) trivial_32bit_program.c -m32) 73 $(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl -lm
|
/Linux-v4.19/scripts/ |
D | gcc-x86_32-has-stack-protector.sh | 4 echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m32 -O0 -fstack-protector - -o - 2…
|
D | gcc-ld | 11 -save-temps|-m32|-m64) N="$1" ;;
|
/Linux-v4.19/tools/perf/arch/x86/tests/ |
D | gen-insn-x86-dat.sh | 35 gcc -g -c -m32 insn-x86-dat-src.c
|
/Linux-v4.19/samples/seccomp/ |
D | Makefile | 24 MFLAG = -m32
|
/Linux-v4.19/arch/m68k/include/asm/ |
D | math-emu.h | 77 unsigned long m32[2]; member 82 unsigned long m32[4]; member
|
/Linux-v4.19/arch/x86/entry/vdso/ |
D | Makefile | 134 $(obj)/vdso32.so.dbg: asflags-$(CONFIG_X86_64) += -m32 142 KBUILD_CFLAGS_32 += -m32 -msoft-float -mregparm=0 -fpic
|
/Linux-v4.19/arch/powerpc/kernel/vdso32/ |
D | Makefile | 19 CC32FLAGS += -m32
|
/Linux-v4.19/tools/build/feature/ |
D | Makefile | 236 $(CC) -m32 -o $@ test-compile.c
|
/Linux-v4.19/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32)
|
/Linux-v4.19/arch/powerpc/boot/ |
D | Makefile | 42 BOOTCFLAGS += -m32
|
/Linux-v4.19/Documentation/kbuild/ |
D | makefiles.txt | 485 biarch := $(call cc-option-yn, -m32) 487 cflags-$(biarch) += -m32 489 In the above example, $(biarch) is set to y if $(CC) supports the -m32 491 and $(cflags-y) will be assigned the values -a32 and -m32,
|
/Linux-v4.19/Documentation/process/ |
D | adding-syscalls.rst | 383 layout do indeed map exactly from x32 (-mx32) to either the 32-bit (-m32) or 468 example, check that it works when compiled as an x86_64 (-m64), x86_32 (-m32)
|
/Linux-v4.19/tools/perf/ |
D | Makefile.perf | 610 $(QUIET_CC)$(CC) -m32 $(filter -static,$(LDFLAGS)) -Wall -Werror -o $@ perf-read-vdso.c
|