/linux-6.12.1/scripts/gdb/linux/ |
D | proc.py | 16 from linux import constants 124 FS_INFO = {constants.LX_SB_SYNCHRONOUS: ",sync", 125 constants.LX_SB_MANDLOCK: ",mand", 126 constants.LX_SB_DIRSYNC: ",dirsync", 127 constants.LX_SB_NOATIME: ",noatime", 128 constants.LX_SB_NODIRATIME: ",nodiratime"} 130 MNT_INFO = {constants.LX_MNT_NOSUID: ",nosuid", 131 constants.LX_MNT_NODEV: ",nodev", 132 constants.LX_MNT_NOEXEC: ",noexec", 133 constants.LX_MNT_NOATIME: ",noatime", [all …]
|
D | vmalloc.py | 11 from linux import lists, utils, stackdepot, constants, mm 13 if constants.LX_CONFIG_MMU: 29 if not constants.LX_CONFIG_MMU: 48 if v['flags'] & constants.LX_VM_IOREMAP: 50 if v['flags'] & constants.LX_VM_ALLOC: 52 if v['flags'] & constants.LX_VM_MAP: 54 if v['flags'] & constants.LX_VM_USERMAP: 56 if v['flags'] & constants.LX_VM_DMA_COHERENT:
|
D | radixtree.py | 15 from linux import constants 22 …return ((node.cast(long_type) & constants.LX_RADIX_TREE_ENTRY_MASK) == constants.LX_RADIX_TREE_INT… 27 indirect_ptr = node.cast(long_type) & ~constants.LX_RADIX_TREE_INTERNAL_NODE 31 return (constants.LX_RADIX_TREE_MAP_SIZE << node['shift']) - 1 55 shift = node['shift'] + constants.LX_RADIX_TREE_MAP_SHIFT 58 offset = (index >> node['shift']) & constants.LX_RADIX_TREE_MAP_MASK 68 shift -= constants.LX_RADIX_TREE_MAP_SHIFT
|
D | mm.py | 11 from linux import utils, constants 25 if not constants.LX_CONFIG_SPARSEMEM_VMEMMAP: 27 if constants.LX_CONFIG_ARM64 and utils.is_target_arch('aarch64'): 38 if constants.LX_CONFIG_ARM64_64K_PAGES: 42 self.MAX_PHYSMEM_BITS = constants.LX_CONFIG_ARM64_VA_BITS 44 self.PAGE_SHIFT = constants.LX_CONFIG_PAGE_SHIFT 48 self.VA_BITS = constants.LX_CONFIG_ARM64_VA_BITS 50 if constants.LX_CONFIG_ARM64_16K_PAGES: 64 if str(constants.LX_CONFIG_ARCH_FORCE_MAX_ORDER).isdigit(): 65 self.MAX_ORDER = constants.LX_CONFIG_ARCH_FORCE_MAX_ORDER [all …]
|
D | interrupts.py | 7 from linux import constants 15 return desc['status_use_accessors'] & constants.LX_IRQ_HIDDEN 21 return desc['irq_data']['common']['state_use_accessors'] & constants.LX_IRQD_LEVEL 68 if constants.LX_CONFIG_GENERIC_IRQ_SHOW_LEVEL: 120 if constants.LX_CONFIG_X86_LOCAL_APIC: 129 if constants.LX_CONFIG_SMP: 134 if constants.LX_CONFIG_X86_THERMAL_VECTOR: 137 if constants.LX_CONFIG_X86_MCE_THRESHOLD: 140 if constants.LX_CONFIG_X86_MCE_AMD: 143 if constants.LX_CONFIG_X86_MCE: [all …]
|
D | slab.py | 12 from linux import lists, utils, stackdepot, constants, mm 14 SLAB_RED_ZONE = constants.LX_SLAB_RED_ZONE 15 SLAB_POISON = constants.LX_SLAB_POISON 16 SLAB_KMALLOC = constants.LX_SLAB_KMALLOC 17 SLAB_HWCACHE_ALIGN = constants.LX_SLAB_HWCACHE_ALIGN 18 SLAB_CACHE_DMA = constants.LX_SLAB_CACHE_DMA 19 SLAB_CACHE_DMA32 = constants.LX_SLAB_CACHE_DMA32 20 SLAB_STORE_USER = constants.LX_SLAB_STORE_USER 21 SLAB_PANIC = constants.LX_SLAB_PANIC 26 if constants.LX_CONFIG_SLUB_DEBUG: [all …]
|
D | kasan.py | 10 from linux import constants, mm 25 if constants.LX_CONFIG_KASAN_GENERIC or constants.LX_CONFIG_KASAN_SW_TAGS: 29 if not constants.LX_CONFIG_KASAN_GENERIC or constants.LX_CONFIG_KASAN_SW_TAGS:
|
D | timerlist.py | 8 from linux import constants 58 text += " .resolution: {} nsecs\n".format(constants.LX_hrtimer_resolution) 61 if constants.LX_CONFIG_HIGH_RES_TIMERS: 79 if constants.LX_CONFIG_HIGH_RES_TIMERS: 89 if constants.LX_CONFIG_TICK_ONESHOT: 153 if constants.LX_NR_CPUS > 1: 199 if constants.LX_CONFIG_GENERIC_CLOCKEVENTS: 200 if constants.LX_CONFIG_GENERIC_CLOCKEVENTS_BROADCAST: 207 if constants.LX_CONFIG_TICK_ONESHOT:
|
D | modules.py | 16 from linux import cpus, utils, lists, constants 76 text = module['mem'][constants.LX_MOD_TEXT] 80 for i in range(constants.LX_MOD_TEXT, constants.LX_MOD_RO_AFTER_INIT + 1): 122 mod_text_start = mod['mem'][constants.LX_MOD_TEXT]['base'] 123 …mod_text_end = mod_text_start + mod['mem'][constants.LX_MOD_TEXT]['size'].cast(utils.get_ulong_typ…
|
D | stackdepot.py | 10 from linux import utils, constants 12 if constants.LX_CONFIG_STACKDEPOT: 57 if not constants.LX_CONFIG_STACKDEPOT: 72 if constants.LX_CONFIG_STACKDEPOT: 76 if not constants.LX_CONFIG_STACKDEPOT:
|
D | Makefile | 21 always-y += constants.py 22 $(obj)/constants.py: $(src)/constants.py.in FORCE
|
D | page_owner.py | 10 from linux import utils, stackdepot, constants, mm 12 if constants.LX_CONFIG_PAGE_OWNER: 17 PAGE_EXT_OWNER = constants.LX_PAGE_EXT_OWNER 19 PAGE_EXT_OWNER_ALLOCATED = constants.LX_PAGE_EXT_OWNER_ALLOCATED 42 if not constants.LX_CONFIG_PAGE_OWNER:
|
D | clk.py | 8 from linux import utils, lists, constants 38 '(c)' if clk['flags'] & constants.LX_CLK_GET_RATE_NOCACHE else ' '))
|
D | .gitignore | 4 constants.py
|
D | symbols.py | 18 from linux import modules, utils, constants 116 module_addr = str(module['mem'][constants.LX_MOD_TEXT]['base']).split()[0]
|
/linux-6.12.1/arch/arm64/kvm/ |
D | Makefile | 32 always-y := hyp_constants.h hyp-constants.s 38 CFLAGS_hyp-constants.o = -I $(src)/hyp/include 39 $(obj)/hyp-constants.s: $(src)/hyp/hyp-constants.c FORCE 42 $(obj)/hyp_constants.h: $(obj)/hyp-constants.s FORCE
|
/linux-6.12.1/lib/ |
D | strnlen_user.c | 25 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; in do_strnlen_user() local 42 if (has_zero(c, &data, &constants)) { in do_strnlen_user() 43 data = prep_zero_mask(c, data, &constants); in do_strnlen_user()
|
D | strncpy_from_user.c | 31 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; in do_strncpy_from_user() local 54 if (has_zero(c, &data, &constants)) { in do_strncpy_from_user() 55 data = prep_zero_mask(c, data, &constants); in do_strncpy_from_user()
|
/linux-6.12.1/drivers/video/fbdev/aty/ |
D | aty128fb.c | 440 struct aty128_constants constants; /* PLL and others */ member 904 par->constants.ppll_max = BIOS_IN32(bios_pll + 0x16); in aty128_get_pllinfo() 905 par->constants.ppll_min = BIOS_IN32(bios_pll + 0x12); in aty128_get_pllinfo() 906 par->constants.xclk = BIOS_IN16(bios_pll + 0x08); in aty128_get_pllinfo() 907 par->constants.ref_divider = BIOS_IN16(bios_pll + 0x10); in aty128_get_pllinfo() 908 par->constants.ref_clk = BIOS_IN16(bios_pll + 0x0e); in aty128_get_pllinfo() 911 par->constants.ppll_max, par->constants.ppll_min, in aty128_get_pllinfo() 912 par->constants.xclk, par->constants.ref_divider, in aty128_get_pllinfo() 913 par->constants.ref_clk); in aty128_get_pllinfo() 956 if (!par->constants.ref_clk) in aty128_timings() [all …]
|
/linux-6.12.1/rust/ |
D | bindgen_parameters | 28 # These constants are sometimes not recognized by bindgen depending on config. 29 # We use const helpers to aid bindgen, to avoid conflicts when constants are 30 # recognized, block generation of the non-helper constants.
|
/linux-6.12.1/scripts/gdb/ |
D | vmlinux-gdb.py | 25 import linux.constants 26 if linux.constants.LX_CONFIG_DEBUG_INFO_REDUCED:
|
/linux-6.12.1/arch/s390/crypto/ |
D | crc32le-vx.c | 92 …u32 crc32_le_vgfm_generic(u32 crc, unsigned char const *buf, size_t size, unsigned long *constants) in crc32_le_vgfm_generic() argument 95 fpu_vlm(CONST_PERM_LE2BE, CONST_CRC_POLY, constants); in crc32_le_vgfm_generic()
|
/linux-6.12.1/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_symbol.c | 470 symlist_t constants; in symtable_dump() local 487 SLIST_INIT(&constants); in symtable_dump() 509 symlist_add(&constants, cursym, in symtable_dump() 652 while (SLIST_FIRST(&constants) != NULL) { in symtable_dump() 655 curnode = SLIST_FIRST(&constants); in symtable_dump() 656 SLIST_REMOVE_HEAD(&constants, links); in symtable_dump()
|
/linux-6.12.1/scripts/coccinelle/misc/ |
D | orplus.cocci | 2 /// Check for constants that are added but are used elsewhere as bitmasks 4 /// bits in the two constants are actually disjoint.
|
/linux-6.12.1/drivers/crypto/cavium/zip/ |
D | zip_main.c | 128 union zip_constants constants; in zip_init_hw() local 146 constants.u_reg64 = zip_reg_read(zip->reg_base + ZIP_CONSTANTS); in zip_init_hw() 147 zip->depth = constants.s.depth; in zip_init_hw() 148 zip->onfsize = constants.s.onfsize; in zip_init_hw() 149 zip->ctxsize = constants.s.ctxsize; in zip_init_hw()
|