Lines Matching refs:desc
61 const char *desc; /* description of statistic */ member
68 #define VMM_STAT_FDEFINE(type, nelems, desc, func, scope) \ argument
70 { -1, nelems, desc, func, scope } \
74 #define VMM_STAT_DEFINE(type, nelems, desc, scope) \ argument
75 VMM_STAT_FDEFINE(type, nelems, desc, NULL, scope)
80 #define VMM_STAT(type, desc) \ argument
81 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_ANY)
82 #define VMM_STAT_INTEL(type, desc) \ argument
83 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_INTEL)
84 #define VMM_STAT_AMD(type, desc) \ argument
85 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_AMD)
87 #define VMM_STAT_FUNC(type, desc, func) \ argument
88 VMM_STAT_FDEFINE(type, 1, desc, func, VMM_STAT_SCOPE_ANY)
90 #define VMM_STAT_ARRAY(type, nelems, desc) \ argument
91 VMM_STAT_DEFINE(type, nelems, desc, VMM_STAT_SCOPE_ANY)