/linux/Documentation/userspace-api/netlink/ |
H A D | c-code-gen.rst | 36 ``max-by-define`` selects if max values for enums are defined as a 49 Enums and flags 52 Enums are named ``$family-$enum``. The full name can be set directly 59 (which are enabled by default for attribute enums). 66 Attribute enums are traditionally unnamed in netlink headers. 76 Attribute enums end with two special values ``__$pfx-MAX`` and ``$pfx-MAX`` 91 Similarly to attribute enums operation enums end with special count and max
|
/linux/Documentation/sphinx/ |
H A D | parse-headers.pl | 27 my %enums; 101 $enums{$s} = "enum :c:type:`$s`\\ "; 165 delete $enums{$1} if (exists($enums{$1})); 216 $enums{$old} = $new if (exists($enums{$old})); 231 print Data::Dumper->Dump([\%enums], [qw(*enums)]) if (%enums); 290 foreach my $r (keys %enums) { 291 my $s = $enums{$r}; 341 enums and defines and create cross-references to a Sphinx book. 378 enums and enum symbols and create cross-references for all of them.
|
/linux/include/trace/events/ |
H A D | tlb.h | 19 * First define the enums in TLB_FLUSH_REASON to be exported to userspace 30 * Now redefine the EM() and EMe() macros to map the enums to the strings
|
H A D | 9p.h | 87 /* Define EM() to export the enums to userspace via TRACE_DEFINE_ENUM() */ 96 /* And also use EM/EMe to define helper enums -- once */ 111 * Now redefine the EM() and EMe() macros to map the enums to the strings
|
H A D | mmflags.h | 274 * First define the enums in the above macros to be exported to userspace 284 /* COMPACTION_FEEDBACK are defines not enums. Not needed here. */ 289 * Now redefine the EM() and EMe() macros to map the enums to the strings
|
H A D | rpm.h | 111 /* Enums require being exported to userspace, for user tool parsing. */ 120 * Now redefine the EM() and EMe() macros to map the enums to the strings that
|
H A D | migrate.h | 29 * First define the enums in the above macros to be exported to userspace 41 * Now redefine the EM() and EMe() macros to map the enums to the strings
|
H A D | fscache.h | 17 * Define enums for tracing information. 108 * Declare tracing information enums and their string mappings for display. 202 * Now redefine the EM() and E_() macros to map the enums to the strings that
|
/linux/arch/hexagon/ |
H A D | Makefile | 10 # Do not use single-byte enums; these will overflow. 11 KBUILD_CFLAGS += -fno-short-enums
|
/linux/drivers/gpu/drm/hisilicon/kirin/ |
H A D | kirin_ade_reg.h | 106 * ADE regs relevant enums 176 * LDI regs relevant enums 203 * ADE media bus service relevant enums
|
/linux/tools/bpf/bpftool/ |
H A D | btf_dumper.c | 151 const struct btf_enum *enums = btf_enum(t); in btf_dumper_enum() local 173 if (value == enums[i].val) { in btf_dumper_enum() 176 enums[i].name_off)); in btf_dumper_enum() 189 const struct btf_enum64 *enums = btf_enum64(t); in btf_dumper_enum64() local 199 if (val_lo32 == enums[i].val_lo32 && val_hi32 == enums[i].val_hi32) { in btf_dumper_enum64() 202 enums[i].name_off)); in btf_dumper_enum64()
|
/linux/drivers/gpu/drm/amd/include/ |
H A D | soc21_enum.h | 47 * Chip Enums 548 * CNVC_CFG Enums 751 * CNVC_CUR Enums 813 * DSCL Enums 972 * CM Enums 1248 * DPP_TOP Enums 1335 * DC_PERFMON Enums 1679 * HUBP Enums 1990 * HUBPREQ Enums 2272 * HUBPRET Enums [all …]
|
H A D | soc24_enum.h | 1123 * CM Enums 1389 * DPP_TOP Enums 1465 * DC_PERFMON Enums 1809 * HUBP Enums 2088 * HUBPREQ Enums 2370 * HUBPRET Enums 2485 * CURSOR Enums 2696 * HUBBUB_SDPIF Enums 2717 * HUBBUB_RET_PATH Enums 2751 * MPC_CFG Enums [all …]
|
H A D | navi10_enum.h | 45 * GDS DATA_TYPE Enums 176 * Chip Enums 488 * CNVC_CFG Enums 638 * CNVC_CUR Enums 700 * DSCL Enums 850 * CM Enums 1069 * DPP_TOP Enums 1164 * DC_PERFMON Enums 1508 * HUBP Enums 1976 * HUBPREQ Enums [all …]
|
H A D | vega10_enum.h | 45 * GDS DATA_TYPE Enums 176 * Chip Enums 1300 * AZSTREAM Enums 1457 * BLNDV Enums 1707 * LBV Enums 1807 * CRTC Enums 3164 * FMT Enums 3427 * HPD Enums 3458 * LB Enums 3784 * DIG Enums [all …]
|
/linux/Documentation/core-api/ |
H A D | netlink.rst | 12 Attribute enums 20 Message enums
|
/linux/drivers/counter/ |
H A D | counter-sysfs.c | 222 static int counter_find_enum(u32 *const enum_item, const u32 *const enums, in counter_find_enum() argument 229 *enum_item = enums[index]; in counter_find_enum() 265 err = counter_find_enum(&data, avail->enums, avail->num_items, in counter_comp_u32_store() 269 err = counter_find_enum(&data, avail->enums, avail->num_items, in counter_comp_u32_store() 397 err = counter_find_enum(&data, element->avail->enums, in counter_comp_array_u32_store() 479 static ssize_t enums_available_show(const u32 *const enums, in enums_available_show() argument 487 len += sysfs_emit_at(buf, len, "%s\n", strs[enums[index]]); in enums_available_show() 525 return enums_available_show(avail->enums, avail->num_items, in counter_comp_available_show()
|
/linux/Documentation/doc-guide/ |
H A D | parse-headers.rst | 26 enums and defines and create cross-references to a Sphinx book. 73 enums and enum symbols and create cross-references for all of them.
|
/linux/drivers/comedi/drivers/ni_routing/ |
H A D | README | 19 gain any sense of intuition of which values, or even enums one should use 21 name enums such that a user might know which enums should be used for
|
/linux/tools/net/sunrpc/xdrgen/ |
H A D | xdr_ast.py | 18 enums = set() global() variable
|
/linux/include/linux/ |
H A D | rw_hint.h | 19 /* Sparse ignores __packed annotations on enums, hence the #ifndef below. */
|
/linux/drivers/gpu/drm/amd/pm/swsmu/inc/pmfw_if/ |
H A D | smu_v13_0_4_ppsmc.h | 31 @ref enums\n 111 * @defgroup enums Enum Definitions
|
/linux/drivers/staging/media/atomisp/pci/ |
H A D | system_global.h | 105 in the preprocessor, and that doesn't work with enums. 241 * ISP2401 specific enums
|
/linux/Documentation/userspace-api/media/ |
H A D | ca.h.rst.exceptions | 20 # some typedefs should point to struct/enums
|
/linux/drivers/media/platform/ti/omap3isp/ |
H A D | ispcsiphy.h | 30 /* mem resources - enums as defined in enum isp_mem_resources */
|