/linux/drivers/accel/habanalabs/include/gaudi/ |
H A D | gaudi_async_ids_map_extended.h | 20 char name[64]; member 24 { .fc_id = 0, .cpu_id = 0, .valid = 0, .name = "" }, 25 { .fc_id = 1, .cpu_id = 1, .valid = 0, .name = "" }, 26 { .fc_id = 2, .cpu_id = 2, .valid = 0, .name = "" }, 27 { .fc_id = 3, .cpu_id = 3, .valid = 0, .name = "" }, 28 { .fc_id = 4, .cpu_id = 4, .valid = 0, .name = "" }, 29 { .fc_id = 5, .cpu_id = 5, .valid = 0, .name = "" }, 30 { .fc_id = 6, .cpu_id = 6, .valid = 0, .name = "" }, 31 { .fc_id = 7, .cpu_id = 7, .valid = 0, .name = "" }, 32 { .fc_id = 8, .cpu_id = 8, .valid = 0, .name = "" }, [all …]
|
/linux/include/rv/ |
H A D | da_monitor.h | 21 #define DECLARE_RV_REACTING_HELPERS(name, type) \ argument 22 static char REACT_MSG_##name[1024]; \ 24 static inline char *format_react_msg_##name(type curr_state, type event) \ 26 snprintf(REACT_MSG_##name, 1024, \ 28 #name, \ 29 model_get_event_name_##name(event), \ 30 model_get_state_name_##name(curr_state)); \ 31 return REACT_MSG_##name; \ 34 static void cond_react_##name(char *msg) \ 36 if (rv_##name.react) \ [all …]
|
/linux/drivers/clk/bcm/ |
H A D | clk-bcm63xx-gate.c | 17 const char * const name; member 31 .name = "mac", 34 .name = "tc", 37 .name = "us_top", 40 .name = "ds_top", 43 .name = "acm", 46 .name = "spi", 49 .name = "usbs", 52 .name = "bmu", 55 .name = "pcm", [all …]
|
/linux/drivers/clk/st/ |
H A D | clk-flexgen.c | 20 const char *name; member 206 static struct clk *clk_register_flexgen(const char *name, in clk_register_flexgen() argument 220 init.name = name; in clk_register_flexgen() 308 { .name = "clk-ic-lmi0", .flags = CLK_IS_CRITICAL }, 318 { .name = "clk-ic-lmi0", .flags = CLK_IS_CRITICAL }, 319 { .name = "clk-ic-lmi1", .flags = CLK_IS_CRITICAL }, 328 { .name = "clk-icn-gpu", }, 329 { .name = "clk-fdma", }, 330 { .name = "clk-nand", }, 331 { .name = "clk-hva", }, [all …]
|
/linux/drivers/scsi/lpfc/ |
H A D | lpfc_attr.h | 24 #define LPFC_ATTR(name, defval, minval, maxval, desc) \ argument 25 static uint lpfc_##name = defval;\ 26 module_param(lpfc_##name, uint, S_IRUGO);\ 27 MODULE_PARM_DESC(lpfc_##name, desc);\ 28 lpfc_param_init(name, defval, minval, maxval) 30 #define LPFC_ATTR_R(name, defval, minval, maxval, desc) \ argument 31 static uint lpfc_##name = defval;\ 32 module_param(lpfc_##name, uint, S_IRUGO);\ 33 MODULE_PARM_DESC(lpfc_##name, desc);\ 34 lpfc_param_show(name)\ [all …]
|
/linux/include/linux/ |
H A D | static_call.h | 146 #define STATIC_CALL_TRAMP_ADDR(name) &STATIC_CALL_TRAMP(name) argument 149 #define STATIC_CALL_TRAMP_ADDR(name) NULL argument 152 #define static_call_update(name, func) \ argument 154 typeof(&STATIC_CALL_TRAMP(name)) __F = (func); \ 155 __static_call_update(&STATIC_CALL_KEY(name), \ 156 STATIC_CALL_TRAMP_ADDR(name), __F); \ 159 #define static_call_query(name) (READ_ONCE(STATIC_CALL_KEY(name).func)) argument 187 #define DEFINE_STATIC_CALL(name, _func) \ argument 188 DECLARE_STATIC_CALL(name, _func); \ 189 struct static_call_key STATIC_CALL_KEY(name) = { \ [all …]
|
H A D | linkage.h | 33 #define SYSCALL_ALIAS(alias, name) asm( \ argument 36 __stringify(name)) 98 #define SYM_L_GLOBAL(name) .globl name 99 #define SYM_L_WEAK(name) .weak name 100 #define SYM_L_LOCAL(name) /* nothing */ 111 #define GLOBAL(name) \ 112 .globl name ASM_NL \ 113 name: 118 #define ENTRY(name) \ 119 SYM_FUNC_START(name) [all …]
|
H A D | moduleparam.h | 23 #define __MODULE_INFO(tag, name, info) \ argument 24 static const char __UNIQUE_ID(name)[] \ 28 #define __MODULE_PARM_TYPE(name, _type) \ argument 29 __MODULE_INFO(parmtype, name##type, #name ":" _type) 70 const char *name; member 126 #define module_param(name, type, perm) \ argument 127 module_param_named(name, name, type, perm) 135 #define module_param_unsafe(name, type, perm) \ argument 136 module_param_named_unsafe(name, name, type, perm) 149 #define module_param_named(name, value, type, perm) \ argument [all …]
|
H A D | tracepoint.h | 151 #define __TRACEPOINT_ENTRY(name) \ argument 154 " .long __tracepoint_" #name " - . \n" \ 162 #define __TRACEPOINT_ENTRY(name) \ argument 163 static tracepoint_ptr_t __tracepoint_ptr_##name __used \ 164 __section("__tracepoints_ptrs") = &__tracepoint_##name 197 #define __DO_TRACE_CALL(name, args) \ argument 202 rcu_dereference_raw((&__tracepoint_##name)->funcs); \ 205 static_call(tp_func_##name)(__data, args); \ 209 #define __DO_TRACE_CALL(name, args) __traceiter_##name(NULL, args) argument 217 #define DEFINE_RUST_DO_TRACE(name, proto, args) argument [all …]
|
H A D | static_call_types.h | 12 #define STATIC_CALL_KEY(name) __PASTE(STATIC_CALL_KEY_PREFIX, name) argument 13 #define STATIC_CALL_KEY_STR(name) __stringify(STATIC_CALL_KEY(name)) argument 18 #define STATIC_CALL_TRAMP(name) __PASTE(STATIC_CALL_TRAMP_PREFIX, name) argument 19 #define STATIC_CALL_TRAMP_STR(name) __stringify(STATIC_CALL_TRAMP(name)) argument 37 #define DECLARE_STATIC_CALL(name, func) \ argument 38 extern struct static_call_key STATIC_CALL_KEY(name); \ 39 extern typeof(func) STATIC_CALL_TRAMP(name); 43 #define __raw_static_call(name) (&STATIC_CALL_TRAMP(name)) argument 52 #define __STATIC_CALL_ADDRESSABLE(name) \ argument 53 __ADDRESSABLE(STATIC_CALL_KEY(name)) [all …]
|
/linux/drivers/accel/habanalabs/include/gaudi2/ |
H A D | gaudi2_async_ids_map_extended.h | 28 char name[64]; member 33 .name = "" }, 35 .name = "" }, 37 .name = "" }, 39 .name = "" }, 41 .name = "" }, 43 .name = "" }, 45 .name = "" }, 47 .name = "" }, 49 .name = "" }, [all …]
|
/linux/fs/nilfs2/ |
H A D | sysfs.h | 53 #define NILFS_COMMON_ATTR_STRUCT(name) \ argument 54 struct nilfs_##name##_attr { \ 64 #define NILFS_DEV_ATTR_STRUCT(name) \ argument 65 struct nilfs_##name##_attr { \ 67 ssize_t (*show)(struct nilfs_##name##_attr *, struct the_nilfs *, \ 69 ssize_t (*store)(struct nilfs_##name##_attr *, struct the_nilfs *, \ 80 #define NILFS_CP_ATTR_STRUCT(name) \ argument 81 struct nilfs_##name##_attr { \ 83 ssize_t (*show)(struct nilfs_##name##_attr *, struct nilfs_root *, \ 85 ssize_t (*store)(struct nilfs_##name##_attr *, struct nilfs_root *, \ [all …]
|
/linux/arch/x86/include/asm/ |
H A D | syscall_wrapper.h | 85 #define __SYS_STUB0(abi, name) \ argument 86 long __##abi##_##name(const struct pt_regs *regs); \ 87 ALLOW_ERROR_INJECTION(__##abi##_##name, ERRNO); \ 88 long __##abi##_##name(const struct pt_regs *regs) \ 89 __alias(__do_##name); 91 #define __SYS_STUBx(abi, name, ...) \ argument 92 long __##abi##_##name(const struct pt_regs *regs); \ 93 ALLOW_ERROR_INJECTION(__##abi##_##name, ERRNO); \ 94 long __##abi##_##name(const struct pt_regs *regs) \ 96 return __se_##name(__VA_ARGS__); \ [all …]
|
/linux/sound/soc/codecs/ |
H A D | arizona.h | 141 #define ARIZONA_GAINMUX_CONTROLS(name, base) \ argument 142 SOC_SINGLE_RANGE_TLV(name " Input Volume", base + 1, \ 146 #define ARIZONA_MIXER_CONTROLS(name, base) \ argument 147 SOC_SINGLE_RANGE_TLV(name " Input 1 Volume", base + 1, \ 150 SOC_SINGLE_RANGE_TLV(name " Input 2 Volume", base + 3, \ 153 SOC_SINGLE_RANGE_TLV(name " Input 3 Volume", base + 5, \ 156 SOC_SINGLE_RANGE_TLV(name " Input 4 Volume", base + 7, \ 160 #define ARIZONA_MUX_ENUM_DECL(name, reg) \ argument 162 name, reg, 0, 0xff, arizona_mixer_texts, arizona_mixer_values) 164 #define ARIZONA_MUX_CTL_DECL(name) \ argument [all …]
|
H A D | madera.h | 188 #define MADERA_GAINMUX_CONTROLS(name, base) \ argument 189 SOC_SINGLE_RANGE_TLV(name " Input Volume", base + 1, \ 193 #define MADERA_MIXER_CONTROLS(name, base) \ argument 194 SOC_SINGLE_RANGE_TLV(name " Input 1 Volume", base + 1, \ 197 SOC_SINGLE_RANGE_TLV(name " Input 2 Volume", base + 3, \ 200 SOC_SINGLE_RANGE_TLV(name " Input 3 Volume", base + 5, \ 203 SOC_SINGLE_RANGE_TLV(name " Input 4 Volume", base + 7, \ 207 #define MADERA_MUX_ENUM_DECL(name, reg) \ argument 209 name, reg, 0, 0xff, madera_mixer_texts, madera_mixer_values) 211 #define MADERA_MUX_CTL_DECL(name) \ argument [all …]
|
/linux/drivers/clk/imx/ |
H A D | clk.h | 95 struct clk_hw *imx_clk_fracn_gppll(const char *name, const char *parent_name, void __iomem *base, 97 struct clk_hw *imx_clk_fracn_gppll_integer(const char *name, const char *parent_name, 104 #define imx_clk_cpu(name, parent_name, div, mux, pll, step) \ argument 105 to_clk(imx_clk_hw_cpu(name, parent_name, div, mux, pll, step)) 107 #define clk_register_gate2(dev, name, parent_name, flags, reg, bit_idx, \ argument 109 to_clk(clk_hw_register_gate2(dev, name, parent_name, flags, reg, bit_idx, \ 112 #define imx_clk_pllv3(type, name, parent_name, base, div_mask) \ argument 113 to_clk(imx_clk_hw_pllv3(type, name, parent_name, base, div_mask)) 115 #define imx_clk_pfd(name, parent_name, reg, idx) \ argument 116 to_clk(imx_clk_hw_pfd(name, parent_name, reg, idx)) [all …]
|
/linux/include/trace/events/ |
H A D | regulator.h | 12 * Events which just log themselves and the regulator name for enable/disable 17 TP_PROTO(const char *name), 19 TP_ARGS(name), 22 __string( name, name ) 26 __assign_str(name); 29 TP_printk("name=%s", __get_str(name)) 35 TP_PROTO(const char *name), 37 TP_ARGS(name) [all...] |
/linux/drivers/power/supply/ |
H A D | max1720x_battery.c | 44 #define MAX172XX_DEV_NAME 0x21 /* Device name */ 149 { .name = "nXTable0", .offset = 0, .bytes = 2, }, 150 { .name = "nXTable1", .offset = 2, .bytes = 2, }, 151 { .name = "nXTable2", .offset = 4, .bytes = 2, }, 152 { .name = "nXTable3", .offset = 6, .bytes = 2, }, 153 { .name = "nXTable4", .offset = 8, .bytes = 2, }, 154 { .name = "nXTable5", .offset = 10, .bytes = 2, }, 155 { .name = "nXTable6", .offset = 12, .bytes = 2, }, 156 { .name = "nXTable7", .offset = 14, .bytes = 2, }, 157 { .name [all...] |
/linux/drivers/clk/pxa/ |
H A D | clk-pxa.h | 17 #define PARENTS(name) \ argument 18 static const char *const name ## _parents[] __initconst 19 #define MUX_RO_RATE_RO_OPS(name, clk_name) \ argument 20 static struct clk_hw name ## _mux_hw; \ 21 static struct clk_hw name ## _rate_hw; \ 22 static const struct clk_ops name ## _mux_ops = { \ 23 .get_parent = name ## _get_parent, \ 26 static const struct clk_ops name ## _rate_ops = { \ 27 .recalc_rate = name ## _get_rate, \ 29 static struct clk * __init clk_register_ ## name(void) \ [all …]
|
/linux/drivers/memory/tegra/ |
H A D | tegra194.c | 15 .name = "ptcr", 25 .name = "miu7r", 35 .name = "miu7w", 45 .name = "hdar", 55 .name = "host1xdmar", 65 .name = "nvencsrd", 75 .name = "satar", 85 .name = "mpcorer", 95 .name = "nvencswr", 105 .name = "hdaw", [all …]
|
/linux/tools/include/linux/ |
H A D | btf_ids.h | 58 #define BTF_ID(prefix, name) \ argument 59 __BTF_ID(__ID(__BTF_ID__##prefix##__##name##__)) 76 #define __BTF_ID_LIST(name, scope) \ argument 79 "." #scope " " #name "; \n" \ 80 #name ":; \n" \ 83 #define BTF_ID_LIST(name) \ argument 84 __BTF_ID_LIST(name, local) \ 85 extern u32 name[]; 87 #define BTF_ID_LIST_GLOBAL(name, n) \ argument 88 __BTF_ID_LIST(name, globl) [all …]
|
H A D | static_call_types.h | 12 #define STATIC_CALL_KEY(name) __PASTE(STATIC_CALL_KEY_PREFIX, name) argument 13 #define STATIC_CALL_KEY_STR(name) __stringify(STATIC_CALL_KEY(name)) argument 18 #define STATIC_CALL_TRAMP(name) __PASTE(STATIC_CALL_TRAMP_PREFIX, name) argument 19 #define STATIC_CALL_TRAMP_STR(name) __stringify(STATIC_CALL_TRAMP(name)) argument 37 #define DECLARE_STATIC_CALL(name, func) \ argument 38 extern struct static_call_key STATIC_CALL_KEY(name); \ 39 extern typeof(func) STATIC_CALL_TRAMP(name); 43 #define __raw_static_call(name) (&STATIC_CALL_TRAMP(name)) argument 52 #define __STATIC_CALL_ADDRESSABLE(name) \ argument 53 __ADDRESSABLE(STATIC_CALL_KEY(name)) [all …]
|
/linux/tools/perf/util/include/linux/ |
H A D | linkage.h | 27 #define SYM_L_GLOBAL(name) .globl name argument 28 #define SYM_L_WEAK(name) .weak name argument 29 #define SYM_L_LOCAL(name) /* nothing */ argument 37 #define SYM_ENTRY(name, linkage, align...) \ argument 38 linkage(name) ASM_NL \ 40 name: 45 #define SYM_START(name, linkage, align...) \ argument 46 SYM_ENTRY(name, linkage, align) 51 #define SYM_END(name, sym_type) \ argument 52 .type name sym_type ASM_NL \ [all …]
|
/linux/drivers/infiniband/hw/bnxt_re/ |
H A D | hw_counters.c | 52 [BNXT_RE_ACTIVE_PD].name = "active_pds", 53 [BNXT_RE_ACTIVE_AH].name = "active_ahs", 54 [BNXT_RE_ACTIVE_QP].name = "active_qps", 55 [BNXT_RE_ACTIVE_RC_QP].name = "active_rc_qps", 56 [BNXT_RE_ACTIVE_UD_QP].name = "active_ud_qps", 57 [BNXT_RE_ACTIVE_SRQ].name = "active_srqs", 58 [BNXT_RE_ACTIVE_CQ].name = "active_cqs", 59 [BNXT_RE_ACTIVE_MR].name = "active_mrs", 60 [BNXT_RE_ACTIVE_MW].name = "active_mws", 61 [BNXT_RE_WATERMARK_PD].name = "watermark_pds", [all …]
|
/linux/arch/arm/mach-omap2/ |
H A D | powerdomains3xxx_data.c | 33 .name = "iva2_pwrdm", 50 .voltdm = { .name = "mpu_iva" }, 54 .name = "mpu_pwrdm", 66 .voltdm = { .name = "mpu_iva" }, 70 .name = "mpu_pwrdm", 82 .voltdm = { .name = "mpu_iva" }, 96 .name = "core_pwrdm", 109 .voltdm = { .name = "core" }, 113 .name = "core_pwrdm", 131 .voltdm = { .name = "core" }, [all …]
|