/linux-6.3-rc2/arch/arc/include/asm/ |
A D | disasm.h | 36 #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-6.3-rc2/drivers/mfd/ |
A D | db8500-prcmu-regs.h | 120 #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-6.3-rc2/arch/sparc/kernel/ |
A D | Makefile | 12 CPPFLAGS_vmlinux.lds := -Usparc -m$(BITS) 18 CFLAGS_REMOVE_time_$(BITS).o := -pg 23 obj-y := head_$(BITS).o 28 obj-y += traps_$(BITS).o 31 obj-y += irq_$(BITS).o 34 obj-y += process_$(BITS).o 36 obj-y += signal_$(BITS).o 39 obj-y += setup_$(BITS).o 43 obj-y += time_$(BITS).o 52 obj-y += prom_$(BITS).o [all …]
|
/linux-6.3-rc2/arch/x86/um/ |
A D | Makefile | 7 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
|
/linux-6.3-rc2/arch/powerpc/kexec/ |
A D | Makefile | 6 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 17 KASAN_SANITIZE_core_$(BITS) := n
|
/linux-6.3-rc2/arch/x86/kernel/ |
A D | Makefile | 22 KASAN_SANITIZE_head$(BITS).o := n 24 KASAN_SANITIZE_dumpstack_$(BITS).o := n 32 KMSAN_SANITIZE_head$(BITS).o := n 43 obj-y += head_$(BITS).o 44 obj-y += head$(BITS).o 47 obj-y += process_$(BITS).o signal.o signal_$(BITS).o 48 obj-y += traps.o idt.o irq.o irq_$(BITS).o dumpstack_$(BITS).o 93 obj-$(CONFIG_FUNCTION_TRACER) += ftrace_$(BITS).o 99 obj-$(CONFIG_CRASH_CORE) += crash_core_$(BITS).o 100 obj-$(CONFIG_KEXEC_CORE) += machine_kexec_$(BITS).o [all …]
|
/linux-6.3-rc2/arch/arc/kernel/ |
A D | disasm.c | 103 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-6.3-rc2/arch/sparc/prom/ |
A D | Makefile | 8 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-6.3-rc2/drivers/scsi/ |
A D | scsi_logging.h | 44 #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 D | aha152x.h | 291 #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-6.3-rc2/lib/zlib_inflate/ |
A D | inflate.c | 232 #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-6.3-rc2/arch/x86/platform/efi/ |
A D | Makefile | 5 obj-$(CONFIG_EFI) += memmap.o quirks.o efi.o efi_$(BITS).o \ 6 efi_stub_$(BITS).o 7 obj-$(CONFIG_EFI_MIXED) += efi_thunk_$(BITS).o
|
/linux-6.3-rc2/arch/x86/entry/ |
A D | Makefile | 14 obj-y := entry.o entry_$(BITS).o syscall_$(BITS).o 20 obj-$(CONFIG_PREEMPTION) += thunk_$(BITS).o
|
/linux-6.3-rc2/arch/powerpc/mm/ |
A D | Makefile | 9 init_$(BITS).o pgtable_$(BITS).o \ 10 pgtable-frag.o ioremap.o ioremap_$(BITS).o \
|
/linux-6.3-rc2/arch/x86/mm/ |
A D | Makefile | 27 obj-y := init.o init_$(BITS).o fault.o ioremap.o extable.o mmap.o \ 46 KASAN_SANITIZE_kasan_init_$(BITS).o := n 47 obj-$(CONFIG_KASAN) += kasan_init_$(BITS).o 56 obj-$(CONFIG_NUMA) += numa.o numa_$(BITS).o
|
/linux-6.3-rc2/arch/sparc/net/ |
A D | Makefile | 5 obj-$(CONFIG_BPF_JIT) += bpf_jit_comp_$(BITS).o 6 ifeq ($(BITS),32)
|
/linux-6.3-rc2/arch/x86/power/ |
A D | Makefile | 12 obj-$(CONFIG_HIBERNATION) += hibernate_$(BITS).o hibernate_asm_$(BITS).o hibernate.o
|
/linux-6.3-rc2/arch/powerpc/purgatory/ |
A D | Makefile | 6 targets += trampoline_$(BITS).o purgatory.ro 10 $(obj)/purgatory.ro: $(obj)/trampoline_$(BITS).o FORCE
|
/linux-6.3-rc2/arch/powerpc/ |
A D | Makefile | 32 export BITS 35 BITS := 64 macro 37 BITS := 32 macro 92 KBUILD_CFLAGS += -m$(BITS) 93 KBUILD_AFLAGS += -m$(BITS) 94 KBUILD_LDFLAGS += -m elf$(BITS)$(LDEMULATION) 171 CHECKFLAGS += -m$(BITS) -D__powerpc__ -D__powerpc$(BITS)__
|
/linux-6.3-rc2/arch/sparc/mm/ |
A D | Makefile | 9 obj-y += fault_$(BITS).o 10 obj-y += init_$(BITS).o
|
/linux-6.3-rc2/sound/core/oss/ |
A D | rate.c | 28 #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-6.3-rc2/arch/arm64/crypto/ |
A D | sha512-armv8.pl | 79 $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-6.3-rc2/arch/powerpc/lib/ |
A D | Makefile | 35 obj-y += string.o memcmp_$(BITS).o 67 obj-y += checksum_$(BITS).o checksum_wrappers.o \ 68 string_$(BITS).o
|
/linux-6.3-rc2/arch/sparc/lib/ |
A D | Makefile | 11 lib-y += checksum_$(BITS).o 13 lib-y += memscan_$(BITS).o memcmp.o strncmp_$(BITS).o
|
/linux-6.3-rc2/arch/powerpc/kernel/ |
A D | Makefile | 72 irq.o align.o signal_$(BITS).o pmc.o vdso.o \ 76 udbg.o misc.o io.o misc_$(BITS).o \ 118 obj-$(CONFIG_HIBERNATION) += swsusp_$(BITS).o 121 obj-$(CONFIG_MODULES) += module.o module_$(BITS).o 135 obj-$(CONFIG_RELOCATABLE) += reloc_$(BITS).o 151 obj-$(CONFIG_PCI) += pci_$(BITS).o $(pci64-y) \
|