Home
last modified time | relevance | path

Searched refs:BITS (Results 1 – 25 of 39) sorted by relevance

12

/arch/arc/include/asm/
Ddisasm.h32 #define BITS(word, s, e) (((word) >> (s)) & (~((-2) << ((e) - (s))))) macro
34 #define MAJOR_OPCODE(word) (BITS((word), 27, 31))
35 #define MINOR_OPCODE(word) (BITS((word), 16, 21))
36 #define FIELD_A(word) (BITS((word), 0, 5))
37 #define FIELD_B(word) ((BITS((word), 12, 14)<<3) | \
38 (BITS((word), 24, 26)))
39 #define FIELD_C(word) (BITS((word), 6, 11))
41 #define FIELD_s12(word) sign_extend(((BITS((word), 0, 5) << 6) | \
42 BITS((word), 6, 11)), 12)
46 #define FIELD_s9(word) sign_extend(((BITS(word, 15, 15) << 8) | \
[all …]
/arch/sparc/kernel/
DMakefile10 extra-y := head_$(BITS).o
14 CPPFLAGS_vmlinux.lds := -Usparc -m$(BITS)
20 CFLAGS_REMOVE_time_$(BITS).o := -pg
29 obj-y += traps_$(BITS).o
32 obj-y += irq_$(BITS).o
35 obj-y += process_$(BITS).o
37 obj-y += signal_$(BITS).o
38 obj-y += sigutil_$(BITS).o
40 obj-y += setup_$(BITS).o
42 obj-y += sys_sparc_$(BITS).o
[all …]
/arch/x86/um/
DMakefile7 BITS := 32 macro
9 BITS := 64 macro
12 obj-y = bugs_$(BITS).o delay.o fault.o ldt.o \
13 ptrace_$(BITS).o ptrace_user.o setjmp_$(BITS).o signal.o \
14 stub_$(BITS).o stub_segv.o \
15 sys_call_table_$(BITS).o sysrq_$(BITS).o tls_$(BITS).o \
16 mem_$(BITS).o subarch.o os-$(OS)/
39 USER_OBJS := bugs_$(BITS).o ptrace_user.o fault.o
/arch/powerpc/kexec/
DMakefile6 obj-y += core.o crash.o core_$(BITS).o
10 obj-$(CONFIG_KEXEC_FILE) += file_load.o ranges.o file_load_$(BITS).o elf_$(BITS).o
13 GCOV_PROFILE_core_$(BITS).o := n
14 KCOV_INSTRUMENT_core_$(BITS).o := n
15 UBSAN_SANITIZE_core_$(BITS).o := n
/arch/sparc/prom/
DMakefile8 lib-y := bootstr_$(BITS).o
9 lib-y += init_$(BITS).o
11 lib-y += misc_$(BITS).o
14 lib-y += console_$(BITS).o
16 lib-y += tree_$(BITS).o
/arch/x86/platform/efi/
DMakefile2 OBJECT_FILES_NON_STANDARD_efi_thunk_$(BITS).o := y
6 obj-$(CONFIG_EFI) += quirks.o efi.o efi_$(BITS).o efi_stub_$(BITS).o
7 obj-$(CONFIG_EFI_MIXED) += efi_thunk_$(BITS).o
/arch/arc/kernel/
Ddisasm.c103 state->di = BITS(state->words[0], 11, 11); in disasm_instr()
106 state->x = BITS(state->words[0], 6, 6); in disasm_instr()
107 state->zz = BITS(state->words[0], 7, 8); in disasm_instr()
108 state->aa = BITS(state->words[0], 9, 10); in disasm_instr()
124 state->di = BITS(state->words[0], 5, 5); in disasm_instr()
127 state->aa = BITS(state->words[0], 3, 4); in disasm_instr()
128 state->zz = BITS(state->words[0], 1, 2); in disasm_instr()
163 op_format = BITS(state->words[0], 22, 23); in disasm_instr()
195 if (BITS(state->words[0], 22, 23) == 3) { in disasm_instr()
210 state->di = BITS(state->words[0], 15, 15); in disasm_instr()
[all …]
/arch/x86/kernel/
DMakefile6 extra-y := head_$(BITS).o
7 extra-y += head$(BITS).o
27 KASAN_SANITIZE_head$(BITS).o := n
29 KASAN_SANITIZE_dumpstack_$(BITS).o := n
42 OBJECT_FILES_NON_STANDARD_ftrace_$(BITS).o := y
51 CFLAGS_head$(BITS).o += -fno-stack-protector
56 obj-y := process_$(BITS).o signal.o
58 obj-y += traps.o idt.o irq.o irq_$(BITS).o dumpstack_$(BITS).o
104 obj-$(CONFIG_FUNCTION_TRACER) += ftrace_$(BITS).o
109 obj-$(CONFIG_CRASH_CORE) += crash_core_$(BITS).o
[all …]
/arch/x86/entry/
DMakefile14 obj-y := entry.o entry_$(BITS).o syscall_$(BITS).o
20 obj-$(CONFIG_PREEMPTION) += thunk_$(BITS).o
/arch/powerpc/mm/
DMakefile9 init_$(BITS).o pgtable_$(BITS).o \
10 pgtable-frag.o ioremap.o ioremap_$(BITS).o \
/arch/sparc/net/
DMakefile5 obj-$(CONFIG_BPF_JIT) += bpf_jit_comp_$(BITS).o
6 ifeq ($(BITS),32)
/arch/x86/mm/
DMakefile19 obj-y := init.o init_$(BITS).o fault.o ioremap.o extable.o mmap.o \
39 KASAN_SANITIZE_kasan_init_$(BITS).o := n
40 obj-$(CONFIG_KASAN) += kasan_init_$(BITS).o
46 obj-$(CONFIG_NUMA) += numa.o numa_$(BITS).o
/arch/x86/power/
DMakefile12 obj-$(CONFIG_HIBERNATION) += hibernate_$(BITS).o hibernate_asm_$(BITS).o hibernate.o
/arch/sparc/mm/
DMakefile9 obj-y += fault_$(BITS).o
10 obj-y += init_$(BITS).o
/arch/powerpc/purgatory/
DMakefile5 targets += trampoline_$(BITS).o purgatory.ro kexec-purgatory.c
14 $(obj)/purgatory.ro: $(obj)/trampoline_$(BITS).o FORCE
/arch/powerpc/lib/
DMakefile28 obj-y += string.o memcmp_$(BITS).o
58 obj-y += checksum_$(BITS).o checksum_wrappers.o \
59 string_$(BITS).o
/arch/sparc/
DMakefile25 export BITS := 32 macro
44 export BITS := 64 macro
59 head-y := arch/sparc/kernel/head_$(BITS).o
/arch/riscv/
DMakefile27 export BITS
29 BITS := 64 macro
37 BITS := 32 macro
108 CHECKFLAGS += -D__riscv -D__riscv_xlen=$(BITS)
/arch/sparc/lib/
DMakefile11 lib-y += checksum_$(BITS).o
13 lib-y += memscan_$(BITS).o memcmp.o strncmp_$(BITS).o
/arch/arm64/crypto/
Dsha512-armv8.pl79 $BITS=512;
88 $BITS=256;
98 $func="sha${BITS}_block_data_order";
240 adr $Ktbl,.LK$BITS
290 .type .LK$BITS,%object
291 .LK$BITS:
356 .size .LK$BITS,.-.LK$BITS
366 .asciz "SHA$BITS block transform for ARMv8, CRYPTOGAMS by <appro\@openssl.org>"
/arch/sparc/math-emu/
DMakefile9 obj-y := math_$(BITS).o
/arch/powerpc/kernel/
DMakefile45 irq.o align.o signal_$(BITS).o pmc.o vdso.o \
49 udbg.o misc.o io.o misc_$(BITS).o \
92 obj-$(CONFIG_HIBERNATION) += swsusp_$(BITS).o
95 obj-$(CONFIG_MODULES) += module.o module_$(BITS).o
109 obj-$(CONFIG_RELOCATABLE) += reloc_$(BITS).o
125 obj-$(CONFIG_PCI) += pci_$(BITS).o $(pci64-y) \
/arch/x86/
DMakefile42 export BITS
57 BITS := 32 macro
90 BITS := 64 macro
222 head-y := arch/x86/kernel/head_$(BITS).o
223 head-y += arch/x86/kernel/head$(BITS).o
/arch/powerpc/net/
DMakefile5 obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o bpf_jit_comp$(BITS).o
/arch/powerpc/
DMakefile34 export BITS
37 BITS := 64 macro
39 BITS := 32 macro
89 KBUILD_CFLAGS += -m$(BITS)
90 KBUILD_AFLAGS += -m$(BITS)
91 KBUILD_LDFLAGS += -m elf$(BITS)$(LDEMULATION)
185 CHECKFLAGS += -m$(BITS) -D__powerpc__ -D__powerpc$(BITS)__

12