/Linux-v4.19/scripts/gdb/linux/ |
D | proc.py | 15 from linux import constants 117 FS_INFO = {constants.LX_MS_SYNCHRONOUS: ",sync", 118 constants.LX_MS_MANDLOCK: ",mand", 119 constants.LX_MS_DIRSYNC: ",dirsync", 120 constants.LX_MS_NOATIME: ",noatime", 121 constants.LX_MS_NODIRATIME: ",nodiratime"} 123 MNT_INFO = {constants.LX_MNT_NOSUID: ",nosuid", 124 constants.LX_MNT_NODEV: ",nodev", 125 constants.LX_MNT_NOEXEC: ",noexec", 126 constants.LX_MNT_NOATIME: ",noatime", [all …]
|
D | Makefile | 17 targets += constants.py 18 $(obj)/constants.py: $(SRCTREE)/$(obj)/constants.py.in FORCE 21 build_constants_py: $(obj)/constants.py 24 clean-files := *.pyc *.pyo $(if $(KBUILD_SRC),*.py) $(obj)/constants.py
|
D | .gitignore | 3 constants.py
|
D | constants.py.in | 4 * Kernel constants derived from include files.
|
/Linux-v4.19/crypto/ |
D | salsa20_generic.c | 118 const char *constants; in salsa20_setkey() local 130 constants = sigma; in salsa20_setkey() 132 constants = tau; in salsa20_setkey() 138 ctx->initial_state[0] = get_unaligned_le32(constants + 0); in salsa20_setkey() 139 ctx->initial_state[5] = get_unaligned_le32(constants + 4); in salsa20_setkey() 140 ctx->initial_state[10] = get_unaligned_le32(constants + 8); in salsa20_setkey() 141 ctx->initial_state[15] = get_unaligned_le32(constants + 12); in salsa20_setkey()
|
/Linux-v4.19/lib/ |
D | strnlen_user.c | 30 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; in do_strnlen_user() local 54 if (has_zero(c, &data, &constants)) { in do_strnlen_user() 55 data = prep_zero_mask(c, data, &constants); in do_strnlen_user()
|
D | strncpy_from_user.c | 28 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; in do_strncpy_from_user() local 48 if (has_zero(c, &data, &constants)) { in do_strncpy_from_user() 49 data = prep_zero_mask(c, data, &constants); in do_strncpy_from_user()
|
D | string.c | 180 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; in strscpy() local 207 if (has_zero(c, &data, &constants)) { in strscpy() 208 data = prep_zero_mask(c, data, &constants); in strscpy()
|
/Linux-v4.19/drivers/video/fbdev/aty/ |
D | aty128fb.c | 446 struct aty128_constants constants; /* PLL and others */ member 917 par->constants.ppll_max = BIOS_IN32(bios_pll + 0x16); in aty128_get_pllinfo() 918 par->constants.ppll_min = BIOS_IN32(bios_pll + 0x12); in aty128_get_pllinfo() 919 par->constants.xclk = BIOS_IN16(bios_pll + 0x08); in aty128_get_pllinfo() 920 par->constants.ref_divider = BIOS_IN16(bios_pll + 0x10); in aty128_get_pllinfo() 921 par->constants.ref_clk = BIOS_IN16(bios_pll + 0x0e); in aty128_get_pllinfo() 924 par->constants.ppll_max, par->constants.ppll_min, in aty128_get_pllinfo() 925 par->constants.xclk, par->constants.ref_divider, in aty128_get_pllinfo() 926 par->constants.ref_clk); in aty128_get_pllinfo() 969 if (!par->constants.ref_clk) in aty128_timings() [all …]
|
/Linux-v4.19/scripts/coccinelle/misc/ |
D | orplus.cocci | 1 /// Check for constants that are added but are used elsewhere as bitmasks 3 /// bits in the two constants are actually disjoint.
|
/Linux-v4.19/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_symbol.c | 473 symlist_t constants; in symtable_dump() local 490 SLIST_INIT(&constants); in symtable_dump() 512 symlist_add(&constants, cursym, in symtable_dump() 655 while (SLIST_FIRST(&constants) != NULL) { in symtable_dump() 658 curnode = SLIST_FIRST(&constants); in symtable_dump() 659 SLIST_REMOVE_HEAD(&constants, links); in symtable_dump()
|
/Linux-v4.19/drivers/crypto/cavium/zip/ |
D | zip_main.c | 123 union zip_constants constants; in zip_init_hw() local 141 constants.u_reg64 = zip_reg_read(zip->reg_base + ZIP_CONSTANTS); in zip_init_hw() 142 zip->depth = constants.s.depth; in zip_init_hw() 143 zip->onfsize = constants.s.onfsize; in zip_init_hw() 144 zip->ctxsize = constants.s.ctxsize; in zip_init_hw()
|
/Linux-v4.19/ |
D | Kbuild | 9 # 5) Generate constants.py (may need bounds.h) 75 # 5) Generate constants for Python GDB integration
|
/Linux-v4.19/scripts/gdb/ |
D | vmlinux-gdb.py | 33 import linux.constants
|
/Linux-v4.19/Documentation/isdn/ |
D | INTERFACE.fax | 64 (one of the constants ISDN_FAX_PHASE_[IDLE,A,B,C,D,E]) 71 Commands from LL to HL; possible constants : 83 Commands from HL to LL; possible constants :
|
D | INTERFACE | 63 field the constants ISDN_FEATURE..., declared in isdnif.h have to be 103 command = event-type. (one of the constants ISDN_STAT_...) 120 command = command to perform. (one of the constants ISDN_CMD_...) 371 protocol-Id is one of the constants ISDN_PROTO_L2... 385 current protocol-Id (one of the constants ISDN_L2_PROTO) 399 protocol-Id is one of the constants ISDN_PROTO_L3... 413 current protocol-Id (one of the constants ISDN_L3_PROTO)
|
/Linux-v4.19/Documentation/pcmcia/ |
D | driver.txt | 17 a bitwise or-ed combination from PCMCIA_DEV_ID_MATCH_* constants
|
/Linux-v4.19/Documentation/devicetree/bindings/hwmon/ |
D | lm90.txt | 39 constants.
|
/Linux-v4.19/arch/nds32/ |
D | Makefile | 66 CLEAN_FILES += include/asm-nds32/constants.h*
|
/Linux-v4.19/Documentation/driver-api/ |
D | mtdnand.rst | 358 Functions and constants 519 predefined constants from rawnand.h to define the options. 631 file include/mtd/mtd-abi.h contains constants to select ecc and 837 This chapter describes the constants which might be relevant for a 840 Chip option constants 846 These constants are defined in rawnand.h. They are OR-ed together to 868 These constants are defined in rawnand.h. They are OR-ed together to 877 ECC selection constants 880 Use these constants to select the ECC algorithm:: 896 Hardware control related constants [all …]
|
/Linux-v4.19/Documentation/gpu/ |
D | vga-switcheroo.rst | 43 Public constants
|
/Linux-v4.19/Documentation/i2c/ |
D | functionality | 14 For the most up-to-date list of functionality constants, please check 114 thumb, the functionality constants you test for with
|
/Linux-v4.19/Documentation/media/ |
D | dmx.h.rst.exceptions | 4 # Ignore limit constants
|
/Linux-v4.19/arch/powerpc/crypto/ |
D | crc32c-vpmsum_asm.S | 18 .constants: label
|
D | crct10dif-vpmsum_asm.S | 23 .constants: label
|