Home
last modified time | relevance | path

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

123

/linux/arch/arc/include/asm/
A Ddisasm.h36 #define FIELD_A(word) (BITS((word), 0, 5))
38 (BITS((word), 24, 26)))
42 BITS((word), 6, 11)), 12)
47 BITS(word, 16, 23)), 9)
49 (BITS(word, 17, 26) << 1)), 12)
51 (BITS(word, 6, 15) << 11) | \
52 (BITS(word, 17, 26) << 1)), 12)
55 #define FIELD_S_A(word) ((BITS((word), 2, 2)<<3) | BITS((word), 0, 2))
57 BITS((word), 8, 10))
58 #define FIELD_S_C(word) ((BITS((word), 7, 7)<<3) | BITS((word), 5, 7))
[all …]
/linux/drivers/mfd/
A Ddb8500-prcmu-regs.h120 #define PRCM_PLL_FREQ_D_MASK BITS(0, 7)
122 #define PRCM_PLL_FREQ_N_MASK BITS(8, 13)
124 #define PRCM_PLL_FREQ_R_MASK BITS(16, 18)
166 #define PRCM_CLKOCR_CLKOUT0_MASK BITS(0, 13)
168 #define PRCM_CLKOCR_CLKOUT1_MASK BITS(16, 29)
188 #define PRCM_TCR_TENSEL_MASK BITS(0, 7)
193 #define PRCM_CLKOCR_CLKODIV0_MASK BITS(0, 5)
195 #define PRCM_CLKOCR_CLKOSEL0_MASK BITS(6, 8)
197 #define PRCM_CLKOCR_CLKODIV1_MASK BITS(16, 21)
199 #define PRCM_CLKOCR_CLKOSEL1_MASK BITS(22, 24)
[all …]
/linux/arch/sparc/kernel/
A 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
40 obj-y += setup_$(BITS).o
44 obj-y += time_$(BITS).o
53 obj-y += prom_$(BITS).o
[all …]
/linux/arch/x86/um/
A 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)/
37 USER_OBJS := bugs_$(BITS).o ptrace_user.o fault.o
/linux/arch/arc/kernel/
A 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()
284 state->zz = BITS(state->words[0], 3, 4); in disasm_instr()
292 if ((BITS(state->words[0], 3, 4) < 3) && in disasm_instr()
298 subopcode = BITS(state->words[0], 5, 7); in disasm_instr()
[all …]
/linux/arch/powerpc/kexec/
A 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
/linux/arch/x86/kernel/
A 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 …]
/linux/arch/sparc/prom/
A 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
/linux/drivers/scsi/
A Dscsi_logging.h44 #define SCSI_LOG_LEVEL(SHIFT, BITS) \ argument
45 ((scsi_logging_level >> (SHIFT)) & ((1 << (BITS)) - 1))
47 #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) \ argument
49 if (unlikely((SCSI_LOG_LEVEL(SHIFT, BITS)) > (LEVEL))) \
55 #define SCSI_LOG_LEVEL(SHIFT, BITS) 0 argument
56 #define SCSI_CHECK_LOGGING(SHIFT, BITS, LEVEL, CMD) do { } while (0) argument
A Daha152x.h291 #define SETBITS(PORT, BITS) outb( (inb(PORT) | (BITS)), (PORT) ) argument
292 #define CLRBITS(PORT, BITS) outb( (inb(PORT) & ~(BITS)), (PORT) ) argument
293 #define TESTHI(PORT, BITS) ((inb(PORT) & (BITS)) == (BITS)) argument
294 #define TESTLO(PORT, BITS) ((inb(PORT) & (BITS)) == 0) argument
/linux/lib/zlib_inflate/
A Dinflate.c232 #define BITS(n) \ macro
377 if (BITS(4) != Z_DEFLATED) { in zlib_inflate()
383 len = BITS(4) + 8; in zlib_inflate()
419 state->last = BITS(1); in zlib_inflate()
421 switch (BITS(2)) { in zlib_inflate()
468 state->nlen = BITS(5) + 257; in zlib_inflate()
470 state->ndist = BITS(5) + 1; in zlib_inflate()
472 state->ncode = BITS(4) + 4; in zlib_inflate()
527 copy = 3 + BITS(2); in zlib_inflate()
534 copy = 3 + BITS(3); in zlib_inflate()
[all …]
/linux/arch/x86/platform/efi/
A 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
/linux/arch/x86/entry/
A DMakefile14 obj-y := entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
/linux/arch/x86/mm/
A 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
/linux/arch/powerpc/mm/
A DMakefile9 init_$(BITS).o pgtable_$(BITS).o \
10 pgtable-frag.o ioremap.o ioremap_$(BITS).o \
/linux/sound/core/oss/
A Drate.c28 #define BITS (1<<SHIFT) macro
29 #define R_MASK (BITS-1)
107 val = S1 + ((S2 - S1) * (signed int)pos) / BITS; in resample_expand()
165 val = S1 + ((S2 - S1) * (signed int)pos) / BITS; in resample_shrink()
194 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_src_frames()
229 res = (((frames * data->pitch) + (BITS/2)) >> SHIFT); in rate_dst_frames()
/linux/arch/powerpc/kernel/
A DMakefile43 irq.o align.o signal_$(BITS).o pmc.o vdso.o \
47 udbg.o misc.o io.o misc_$(BITS).o \
90 obj-$(CONFIG_HIBERNATION) += swsusp_$(BITS).o
93 obj-$(CONFIG_MODULES) += module.o module_$(BITS).o
107 obj-$(CONFIG_RELOCATABLE) += reloc_$(BITS).o
124 obj-$(CONFIG_PCI) += pci_$(BITS).o $(pci64-y) \
/linux/arch/arm64/crypto/
A 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>"
/linux/arch/powerpc/
A DMakefile49 export BITS
52 BITS := 64 macro
54 BITS := 32 macro
109 KBUILD_CFLAGS += -m$(BITS)
110 KBUILD_AFLAGS += -m$(BITS) -Wl,-a$(BITS)
111 KBUILD_LDFLAGS += -m elf$(BITS)$(LDEMULATION)
212 CHECKFLAGS += -m$(BITS) -D__powerpc__ -D__powerpc$(BITS)__
/linux/arch/sparc/net/
A DMakefile5 obj-$(CONFIG_BPF_JIT) += bpf_jit_comp_$(BITS).o
6 ifeq ($(BITS),32)
/linux/arch/sparc/
A DMakefile25 export BITS := 32 macro
44 export BITS := 64 macro
59 head-y := arch/sparc/kernel/head_$(BITS).o
/linux/arch/x86/power/
A DMakefile12 obj-$(CONFIG_HIBERNATION) += hibernate_$(BITS).o hibernate_asm_$(BITS).o hibernate.o
/linux/arch/powerpc/lib/
A DMakefile25 obj-y += string.o memcmp_$(BITS).o
55 obj-y += checksum_$(BITS).o checksum_wrappers.o \
56 string_$(BITS).o
/linux/arch/riscv/
A DMakefile21 export BITS
23 BITS := 64 macro
31 BITS := 32 macro
88 CHECKFLAGS += -D__riscv -D__riscv_xlen=$(BITS)
/linux/arch/x86/
A DMakefile42 export BITS
57 BITS := 32 macro
90 BITS := 64 macro
218 head-y := arch/x86/kernel/head_$(BITS).o
219 head-y += arch/x86/kernel/head$(BITS).o

Completed in 29 milliseconds

123