Searched refs:constants (Results 1 - 25 of 67) sorted by relevance

123

/linux-master/scripts/gdb/linux/
H A Dvmalloc.py11 from linux import lists, utils, stackdepot, constants, mm namespace
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:
H A Dradixtree.py15 from linux import constants namespace
22 return ((node.cast(long_type) & constants.LX_RADIX_TREE_ENTRY_MASK) == constants.LX_RADIX_TREE_INTERNAL_NODE)
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
H A DMakefile21 always-y += constants.py
22 $(obj)/constants.py: $(src)/constants.py.in FORCE
H A Dproc.py16 from linux import constants namespace
123 FS_INFO = {constants.LX_SB_SYNCHRONOUS: ",sync",
124 constants.LX_SB_MANDLOCK: ",mand",
125 constants.LX_SB_DIRSYNC: ",dirsync",
126 constants.LX_SB_NOATIME: ",noatime",
127 constants.LX_SB_NODIRATIME: ",nodiratime"}
129 MNT_INFO = {constants.LX_MNT_NOSUID: ",nosuid",
130 constants.LX_MNT_NODEV: ",nodev",
131 constants.LX_MNT_NOEXEC: ",noexec",
132 constants
[all...]
H A Dmodules.py16 from linux import cpus, utils, lists, constants namespace
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_type())
H A Dstackdepot.py10 from linux import utils, constants namespace
12 if constants.LX_CONFIG_STACKDEPOT:
46 if not constants.LX_CONFIG_STACKDEPOT:
H A Dinterrupts.py7 from linux import constants namespace
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
[all...]
H A Dmm.py11 from linux import utils, constants namespace
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
59 if str(constants.LX_CONFIG_ARCH_FORCE_MAX_ORDER).isdigit():
60 self.MAX_ORDER = constants.LX_CONFIG_ARCH_FORCE_MAX_ORDER
70 if constants
[all...]
H A Dslab.py12 from linux import lists, utils, stackdepot, constants, mm namespace
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
[all...]
H A Dtimerlist.py8 from linux import constants namespace
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:
152 if constants.LX_NR_CPUS > 1:
198 if constants.LX_CONFIG_GENERIC_CLOCKEVENTS:
199 if constants.LX_CONFIG_GENERIC_CLOCKEVENTS_BROADCAST:
206 if constants.LX_CONFIG_TICK_ONESHOT:
H A Dclk.py8 from linux import utils, lists, constants namespace
38 '(c)' if clk['flags'] & constants.LX_CLK_GET_RATE_NOCACHE else ' '))
H A Dpage_owner.py10 from linux import utils, stackdepot, constants, mm namespace
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:
H A Dsymbols.py18 from linux import modules, utils, constants namespace
116 module_addr = str(module['mem'][constants.LX_MOD_TEXT]['base']).split()[0]
/linux-master/scripts/gdb/
H A Dvmlinux-gdb.py25 import linux.constants namespace
26 if linux.constants.LX_CONFIG_DEBUG_INFO_REDUCED:
/linux-master/sound/firewire/
H A Dlib.h5 #include <linux/firewire-constants.h>
/linux-master/lib/
H A Dstrnlen_user.c25 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; local
42 if (has_zero(c, &data, &constants)) {
43 data = prep_zero_mask(c, data, &constants);
H A Dstrncpy_from_user.c31 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; local
54 if (has_zero(c, &data, &constants)) {
55 data = prep_zero_mask(c, data, &constants);
/linux-master/arch/arm64/kvm/
H A DMakefile27 always-y := hyp_constants.h hyp-constants.s
33 CFLAGS_hyp-constants.o = -I $(srctree)/$(src)/hyp/include
34 $(obj)/hyp-constants.s: $(src)/hyp/hyp-constants.c FORCE
37 $(obj)/hyp_constants.h: $(obj)/hyp-constants.s FORCE
/linux-master/arch/s390/crypto/
H A Dcrc32le-vx.c20 /* Vector register range containing CRC-32 constants */
29 * The CRC-32 constant block contains reduction constants to fold and
32 * For the CRC-32 variants, the constants are precomputed according to
83 * @constants: CRC-32 constant pool base pointer.
86 * V0: Initial CRC value and intermediate constants and results.
90 * V10..V14: CRC-32 constants.
92 static u32 crc32_le_vgfm_generic(u32 crc, unsigned char const *buf, size_t size, unsigned long *constants) argument
94 /* Load CRC-32 constants */
95 fpu_vlm(CONST_PERM_LE2BE, CONST_CRC_POLY, constants);
126 * the R1 and R2 reduction constants i
[all...]
/linux-master/lib/crypto/mpi/
H A Dmpiutil.c24 static MPI constants[MPI_NUMBER_OF_CONSTANTS]; variable
58 constants[idx] = mpi_alloc_set_ui(value);
59 constants[idx]->flags = (16|32);
74 if (!constants[no])
76 return constants[no];
/linux-master/drivers/nvme/host/
H A DMakefile14 nvme-core-$(CONFIG_NVME_VERBOSE_ERRORS) += constants.o
/linux-master/include/net/sctp/
H A Dtsnmap.h23 #include <net/sctp/constants.h>
/linux-master/drivers/video/fbdev/aty/
H A Daty128fb.c401 /* PLL constants */
440 struct aty128_constants constants; /* PLL and others */ member in struct:aty128fb_par
904 par->constants.ppll_max = BIOS_IN32(bios_pll + 0x16);
905 par->constants.ppll_min = BIOS_IN32(bios_pll + 0x12);
906 par->constants.xclk = BIOS_IN16(bios_pll + 0x08);
907 par->constants.ref_divider = BIOS_IN16(bios_pll + 0x10);
908 par->constants.ref_clk = BIOS_IN16(bios_pll + 0x0e);
911 par->constants.ppll_max, par->constants.ppll_min,
912 par->constants
[all...]
/linux-master/drivers/crypto/cavium/zip/
H A Dzip_main.c128 union zip_constants constants; local
146 constants.u_reg64 = zip_reg_read(zip->reg_base + ZIP_CONSTANTS);
147 zip->depth = constants.s.depth;
148 zip->onfsize = constants.s.onfsize;
149 zip->ctxsize = constants.s.ctxsize;
/linux-master/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_symbol.c466 * Put constants at the end.
470 symlist_t constants; local
487 SLIST_INIT(&constants);
509 symlist_add(&constants, cursym,
652 while (SLIST_FIRST(&constants) != NULL) {
655 curnode = SLIST_FIRST(&constants);
656 SLIST_REMOVE_HEAD(&constants, links);

Completed in 210 milliseconds

123