| /kernel/linux/linux-5.10/tools/power/pm-graph/ |
| D | Makefile | 2 PREFIX ?= /usr macro 9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph 10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config 13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config 14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config [all …]
|
| /kernel/linux/linux-6.6/tools/power/pm-graph/ |
| D | Makefile | 2 PREFIX ?= /usr macro 9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph 10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph 12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config 13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config 14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config [all …]
|
| /kernel/linux/linux-6.6/lib/zstd/common/ |
| D | error_private.c | 24 case PREFIX(no_error): return "No error detected"; in ERR_getErrorString() 25 case PREFIX(GENERIC): return "Error (generic)"; in ERR_getErrorString() 26 case PREFIX(prefix_unknown): return "Unknown frame descriptor"; in ERR_getErrorString() 27 case PREFIX(version_unsupported): return "Version not supported"; in ERR_getErrorString() 28 case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter"; in ERR_getErrorString() 29 … case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding"; in ERR_getErrorString() 30 case PREFIX(corruption_detected): return "Corrupted block detected"; in ERR_getErrorString() 31 case PREFIX(checksum_wrong): return "Restored data doesn't match checksum"; in ERR_getErrorString() 32 case PREFIX(parameter_unsupported): return "Unsupported parameter"; in ERR_getErrorString() 33 case PREFIX(parameter_outOfBound): return "Parameter is out of bound"; in ERR_getErrorString() [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/mm/ |
| D | hugetlb-read-hwpoison.c | 16 #define PREFIX " ... " macro 61 printf(PREFIX ERROR_PREFIX "check fail: buf[%lu] = %u != %u\n", in verify_chunk() 78 printf(PREFIX PREFIX "init val=%u with offset=0x%lx\n", val, offset); in seek_read_hugepage_filemap() 79 printf(PREFIX PREFIX "expect to read 0x%lx bytes of data in total\n", in seek_read_hugepage_filemap() 82 perror(PREFIX ERROR_PREFIX "seek failed"); in seek_read_hugepage_filemap() 89 printf(PREFIX PREFIX "read reach end of the file\n"); in seek_read_hugepage_filemap() 92 perror(PREFIX ERROR_PREFIX "read failed"); in seek_read_hugepage_filemap() 101 printf(PREFIX PREFIX "actually read 0x%lx bytes of data in total\n", in seek_read_hugepage_filemap() 115 printf(PREFIX PREFIX "expect to read 0x%lx bytes of data in total\n", in read_hugepage_filemap() 120 printf(PREFIX PREFIX "read reach end of the file\n"); in read_hugepage_filemap() [all …]
|
| /kernel/linux/linux-6.6/drivers/regulator/ |
| D | mc13xxx.h | 55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument 56 [prefix ## _name] = { \ 63 .id = prefix ## _name, \ 66 .reg = prefix ## _reg, \ 67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 68 .vsel_reg = prefix ## _vsel_reg, \ 69 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\ 70 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\ 73 #define MC13xxx_FIXED_DEFINE(prefix, _name, _node, _reg, _voltages, _ops) \ argument 74 [prefix ## _name] = { \ [all …]
|
| /kernel/linux/linux-5.10/drivers/regulator/ |
| D | mc13xxx.h | 55 #define MC13xxx_DEFINE(prefix, _name, _node, _reg, _vsel_reg, _voltages, _ops) \ argument 56 [prefix ## _name] = { \ 63 .id = prefix ## _name, \ 66 .reg = prefix ## _reg, \ 67 .enable_bit = prefix ## _reg ## _ ## _name ## EN, \ 68 .vsel_reg = prefix ## _vsel_reg, \ 69 .vsel_shift = prefix ## _vsel_reg ## _ ## _name ## VSEL,\ 70 .vsel_mask = prefix ## _vsel_reg ## _ ## _name ## VSEL_M,\ 73 #define MC13xxx_FIXED_DEFINE(prefix, _name, _node, _reg, _voltages, _ops) \ argument 74 [prefix ## _name] = { \ [all …]
|
| /kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
| D | f_mass_storage.h | 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ 35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ [all …]
|
| /kernel/linux/linux-6.6/drivers/usb/gadget/function/ |
| D | f_mass_storage.h | 21 #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ argument 22 module_param_array_named(prefix ## name, params.name, type, \ 23 &prefix ## params.name ## _count, \ 25 MODULE_PARM_DESC(prefix ## name, desc) 27 #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ argument 28 module_param_named(prefix ## name, params.name, type, \ 30 MODULE_PARM_DESC(prefix ## name, desc) 32 #define __FSG_MODULE_PARAMETERS(prefix, params) \ argument 33 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ 35 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ [all …]
|
| /kernel/linux/linux-6.6/Documentation/hwmon/ |
| D | lm90.rst | 8 Prefix: 'lm84' 16 Prefix: 'lm90' 26 Prefix: 'lm89' (no auto-detection) 36 Prefix: 'lm99' 46 Prefix: 'lm86' 56 Prefix: 'adm1020' 64 Prefix: 'adm1021' 72 Prefix: 'adm1023' 80 Prefix: 'adm1032' 90 Prefix: 'adt7461' [all …]
|
| D | isl68137.rst | 8 Prefix: 'isl68137' 19 Prefix: 'isl68220' 29 Prefix: 'isl68221' 39 Prefix: 'isl68222' 49 Prefix: 'isl68223' 59 Prefix: 'isl68224' 69 Prefix: 'isl68225' 79 Prefix: 'isl68226' 89 Prefix: 'isl68227' 99 Prefix: 'isl68229' [all …]
|
| D | ltc2978.rst | 8 Prefix: 'ltc2972' 16 Prefix: 'ltc2974' 24 Prefix: 'ltc2975' 32 Prefix: 'ltc2977' 40 Prefix: 'ltc2978' 50 Prefix: 'ltc2979' 58 Prefix: 'ltc2980' 66 Prefix: 'ltc3880' 74 Prefix: 'ltc3882' 82 Prefix: 'ltc3883' [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/tc-tests/actions/ |
| D | xt.json | 4 "name": "Add xt action with log-prefix", 17 "cmdUnderTest": "$TC action add action xt -j LOG --log-prefix PONG index 100", 20 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 100 ref", 28 "name": "Replace xt action log-prefix", 41 "$TC action add action xt -j LOG --log-prefix PONG index 1", 47 "cmdUnderTest": "$TC action replace action xt -j LOG --log-prefix WIN index 1", 50 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"WIN\".*index 1 ref", 71 "$TC action add action xt -j LOG --log-prefix PONG index 1000", 80 … "matchPattern": "action order [0-9]*:.*target LOG level warning prefix \"PONG\".*index 1000 ref", 101 "$TC action add action xt -j LOG --log-prefix PONG index 1000", [all …]
|
| /kernel/linux/linux-6.6/drivers/firmware/broadcom/ |
| D | bcm47xx_sprom.c | 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 41 else if (prefix) in create_key() 42 snprintf(buf, len, "%s%s", prefix, name); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var() 66 static void nvram_read_ ## type(const char *prefix, \ 74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
| /kernel/linux/linux-5.10/drivers/firmware/broadcom/ |
| D | bcm47xx_sprom.c | 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 41 else if (prefix) in create_key() 42 snprintf(buf, len, "%s%s", prefix, name); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 58 if (fallback && err == -ENOENT && prefix) { in get_nvram_var() 66 static void nvram_read_ ## type(const char *prefix, \ 74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
| /kernel/linux/linux-5.10/Documentation/hwmon/ |
| D | isl68137.rst | 8 Prefix: 'isl68137' 19 Prefix: 'isl68220' 29 Prefix: 'isl68221' 39 Prefix: 'isl68222' 49 Prefix: 'isl68223' 59 Prefix: 'isl68224' 69 Prefix: 'isl68225' 79 Prefix: 'isl68226' 89 Prefix: 'isl68227' 99 Prefix: 'isl68229' [all …]
|
| D | lm90.rst | 8 Prefix: 'lm90' 18 Prefix: 'lm89' (no auto-detection) 28 Prefix: 'lm99' 38 Prefix: 'lm86' 48 Prefix: 'adm1032' 58 Prefix: 'adt7461' 68 Prefix: 'adt7461a' 78 Prefix: 'nct1008' 88 Prefix: 'max6646' 98 Prefix: 'max6646' [all …]
|
| D | ltc2978.rst | 8 Prefix: 'ltc2972' 16 Prefix: 'ltc2974' 24 Prefix: 'ltc2975' 32 Prefix: 'ltc2977' 40 Prefix: 'ltc2978' 50 Prefix: 'ltc2979' 58 Prefix: 'ltc2980' 66 Prefix: 'ltc3880' 74 Prefix: 'ltc3882' 82 Prefix: 'ltc3883' [all …]
|
| /kernel/linux/linux-5.10/arch/riscv/include/asm/ |
| D | atomic.h | 54 #define ATOMIC_OP(op, asm_op, I, asm_type, c_type, prefix) \ argument 56 void atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \ 88 #define ATOMIC_FETCH_OP(op, asm_op, I, asm_type, c_type, prefix) \ in ATOMIC_OPS() argument 90 c_type atomic##prefix##_fetch_##op##_relaxed(c_type i, \ in ATOMIC_OPS() 91 atomic##prefix##_t *v) \ in ATOMIC_OPS() 102 c_type atomic##prefix##_fetch_##op(c_type i, atomic##prefix##_t *v) \ 113 #define ATOMIC_OP_RETURN(op, asm_op, c_op, I, asm_type, c_type, prefix) \ argument 115 c_type atomic##prefix##_##op##_return_relaxed(c_type i, \ 116 atomic##prefix##_t *v) \ 118 return atomic##prefix##_fetch_##op##_relaxed(i, v) c_op I; \ [all …]
|
| /kernel/linux/linux-6.6/net/ipv6/ |
| D | addrlabel.c | 33 struct in6_addr prefix; member 45 * prefix addr_type label 67 const struct in6_addr *prefix; member 72 .prefix = &in6addr_any, 75 .prefix = &(struct in6_addr){ { { 0xfc } } } , 79 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } }, 83 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } }, 87 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } }, 91 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } }, 95 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } }, [all …]
|
| /kernel/linux/linux-5.10/net/ipv6/ |
| D | addrlabel.c | 33 struct in6_addr prefix; member 45 * prefix addr_type label 67 const struct in6_addr *prefix; member 72 .prefix = &in6addr_any, 75 .prefix = &(struct in6_addr){ { { 0xfc } } } , 79 .prefix = &(struct in6_addr){ { { 0xfe, 0xc0 } } }, 83 .prefix = &(struct in6_addr){ { { 0x20, 0x02 } } }, 87 .prefix = &(struct in6_addr){ { { 0x3f, 0xfe } } }, 91 .prefix = &(struct in6_addr){ { { 0x20, 0x01 } } }, 95 .prefix = &(struct in6_addr){ { { 0x20, 0x01, 0x00, 0x10 } } }, [all …]
|
| /kernel/linux/linux-6.6/tools/bootconfig/scripts/ |
| D | ftrace2bconf.sh | 74 emit_kv $PREFIX.event.kprobes.$event.probes += $args 80 emit_kv $PREFIX.event.synthetic.$event.fields = `echo $fields | sed "s/;/,/g"` 117 emit_kv $PREFIX.event.$group.$event.actions += \'$action\' 121 emit_kv $PREFIX.event.$group.$event.enable 125 emit_kv $PREFIX.event.$group.$event.filter = "$val" 140 # PREFIX and INSTANCE must be set 141 if [ $PREFIX = "ftrace" ]; then 148 emit_kv $PREFIX.event.enable 156 emit_kv $PREFIX.event.$group.enable 212 PREFIX="ftrace" [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | btf_ids.h | 51 #define __ID(prefix) \ argument 52 __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) 58 #define BTF_ID(prefix, name) \ argument 59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), "") 61 #define ____BTF_ID_FLAGS(prefix, name, flags) \ argument 62 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__), ".long " #flags "\n") 63 #define __BTF_ID_FLAGS(prefix, name, flags, ...) \ argument 64 ____BTF_ID_FLAGS(prefix, name, flags) 65 #define BTF_ID_FLAGS(prefix, name, ...) \ argument 66 __BTF_ID_FLAGS(prefix, name, ##__VA_ARGS__, 0) [all …]
|
| /kernel/linux/linux-6.6/scripts/ |
| D | syscallhdr.sh | 19 …echo >&2 "usage: $0 [--abis ABIS] [--emit-nr] [--offset OFFSET] [--prefix PREFIX] INFILE OUTFILE" … 28 echo >&2 " --prefix PREFIX The prefix to the macro like __NR_<PREFIX><NAME>" 36 prefix= 50 --prefix) 51 prefix=$2 86 echo "#define __NR_$prefix$name $nr" 92 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
| D | syscallnr.sh | 18 echo >&2 "usage: $0 [--abis ABIS] [--prefix PREFIX] INFILE OUTFILE" >&2 25 echo >&2 " --prefix PREFIX The prefix to the macro like __NR_<PREFIX><NAME>" 31 prefix= 39 --prefix) 40 prefix=$2 71 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
| /kernel/linux/linux-6.6/sound/soc/generic/ |
| D | simple-card.c | 23 #define PREFIX "simple-audio-card," macro 125 asoc_simple_parse_convert(top, PREFIX, adata); in simple_parse_convert() 126 asoc_simple_parse_convert(node, PREFIX, adata); in simple_parse_convert() 136 char *prefix) in simple_parse_mclk_fs() argument 141 snprintf(prop, sizeof(prop), "%smclk-fs", PREFIX); in simple_parse_mclk_fs() 144 snprintf(prop, sizeof(prop), "%smclk-fs", prefix); in simple_parse_mclk_fs() 154 char *prefix, in simple_parse_node() argument 173 simple_parse_mclk_fs(top, np, dai_props, prefix); in simple_parse_node() 194 char *prefix, char *name) in simple_link_init() argument 201 prefix, &dai_link->dai_fmt); in simple_link_init() [all …]
|