/xen/xen/include/xen/ |
A D | linkage.h | 21 #define SYM_L_GLOBAL(name) .globl name; .hidden name argument 22 #define SYM_L_WEAK(name) .weak name argument 23 #define SYM_L_LOCAL(name) /* nothing */ argument 29 #define SYM(name, typ, linkage, align...) \ argument 35 #define END(name) .size name, . - name argument 49 #define FUNC(name, align...) \ argument 51 #define LABEL(name, align...) \ argument 53 #define DATA(name, align...) \ argument 56 #define FUNC_LOCAL(name, align...) \ argument 58 #define LABEL_LOCAL(name, align...) \ argument [all …]
|
A D | percpu.h | 4 #define DECLARE_PER_CPU(type, name) \ argument 7 #define __DEFINE_PER_CPU(attr, type, name) \ argument 16 #define DEFINE_PER_CPU(type, name) \ argument 19 #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ argument 25 #define DEFINE_PER_CPU_READ_MOSTLY(type, name) \ argument
|
A D | kexec.h | 68 #define VMCOREINFO_SYMBOL(name) \ argument 70 #define VMCOREINFO_SYMBOL_ALIAS(alias, name) \ argument 72 #define VMCOREINFO_STRUCT_SIZE(name) \ argument 74 #define VMCOREINFO_OFFSET(name, field) \ argument 77 #define VMCOREINFO_OFFSET_SUB(name, sub, field) \ argument
|
A D | errno.h | 6 #define XEN_ERRNO(name, value) name = (value), argument 13 #define XEN_ERRNO(name, value) .equ name, value argument
|
A D | compat.h | 17 #define __DEFINE_COMPAT_HANDLE(name, type) \ argument 27 #define DEFINE_COMPAT_HANDLE(name) \ argument 29 #define COMPAT_HANDLE(name) __compat_handle_ ## name argument 136 #define CHECK_NAME(name, tag) __check ## tag ## name argument 139 #define CHECK_TYPE(name) \ argument 154 #define CHECK_SIZE(name) \ argument 167 #define CHECK_FIELD_COMMON(name, t, f) \ argument 174 #define CHECK_FIELD_COMMON_(k, name, n, f) \ argument
|
A D | tasklet.h | 28 #define _DECLARE_TASKLET(name, func, data, softirq) \ argument 31 #define DECLARE_TASKLET(name, func, data) \ argument 33 #define DECLARE_SOFTIRQ_TASKLET(name, func, data) \ argument
|
A D | livepatch_elf.h | 14 const char *name; /* Human readable name hooked in member 24 const char *name; member 29 const char *name; /* Pointer to payload->name. */ member
|
/xen/xen/arch/arm/include/asm/arm32/ |
A D | sysregs.h | 10 #define CP32(r, name...) __CP32(r, name) argument 11 #define CP64(r, name...) __CP64(r, name) argument 14 #define LOAD_CP32(r, name...) "mrc " __stringify(CP32(%r, name)) ";" argument 15 #define STORE_CP32(r, name...) "mcr " __stringify(CP32(%r, name)) ";" argument 16 #define LOAD_CP64(r, name...) "mrrc " __stringify(CP64(%r, %H##r, name)) ";" argument 17 #define STORE_CP64(r, name...) "mcrr " __stringify(CP64(%r, %H##r, name)) ";" argument 21 #define CMD_CP32(name...) "mcr " __stringify(CP32(r0, name)) ";" argument 26 #define READ_CP32(name...) ({ \ argument 31 #define WRITE_CP32(v, name...) do { \ argument 36 #define READ_CP64(name...) ({ \ argument [all …]
|
/xen/docs/misra/ |
A D | safe.json | 10 "name": "Rule 8.6: linker script defined symbols", string 18 "name": "Rule 8.4: asm-only definition", string 26 "name": "MC3R1.R10.1: use of an enumeration constant in an arithmetic operation", string 34 …"name": "MC3R1.R20.4: allow the definition of a macro with the same name as a keyword in some spec… string 42 …"name": "Rule 17.1: internal helper functions made to break long running hypercalls into multiple … string 50 …"name": "MC3R1.R16.2: using a case label when the most closely-enclosing compound statement is not… string 58 "name": "MC3R1.R20.12: use of a macro argument that deliberately violates the Rule", string 66 "name": "MC3R1.R20.7: deliberately non-parenthesized macro argument", string 72 "name": "Sentinel", string
|
/xen/xen/include/xen/libfdt/ |
A D | libfdt.h | 253 #define fdt_set_hdr_(name) \ argument 709 const char *name, in fdt_get_property_w() 769 const char *name, int namelen, in fdt_getprop_namelen_w() 808 const char *name, int *lenp) in fdt_getprop_w() 1311 const char *name, uint32_t val) in fdt_setprop_inplace_u32() 1346 const char *name, uint64_t val) in fdt_setprop_inplace_u64() 1363 const char *name, uint32_t val) in fdt_setprop_inplace_cell() 1499 #define fdt_property_string(fdt, name, str) \ argument 1856 const char *name, uint32_t val) in fdt_appendprop_u32() 1891 const char *name, uint64_t val) in fdt_appendprop_u64() [all …]
|
/xen/xen/include/public/ |
A D | arch-riscv.h | 16 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \ argument 29 #define __DEFINE_XEN_GUEST_HANDLE(name, type) \ argument 32 #define DEFINE_XEN_GUEST_HANDLE(name) __DEFINE_XEN_GUEST_HANDLE(name, name) argument 33 #define __XEN_GUEST_HANDLE(name) __guest_handle_64_ ## name argument 34 #define XEN_GUEST_HANDLE(name) __XEN_GUEST_HANDLE(name) argument 35 #define XEN_GUEST_HANDLE_PARAM(name) __guest_handle_ ## name argument
|
A D | arch-ppc.h | 20 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \ argument 26 #define __DEFINE_XEN_GUEST_HANDLE(name, type) \ argument 29 #define DEFINE_XEN_GUEST_HANDLE(name) __DEFINE_XEN_GUEST_HANDLE(name, name) argument 30 #define __XEN_GUEST_HANDLE(name) __guest_handle_64_ ## name argument 31 #define XEN_GUEST_HANDLE(name) __XEN_GUEST_HANDLE(name) argument 32 #define XEN_GUEST_HANDLE_PARAM(name) __guest_handle_ ## name argument
|
/xen/xen/tools/ |
A D | compat-xlat-header.py | 50 def build_enums(name, tokens): argument 99 def handle_field(prefix, name, id, type, fields): argument 202 def handle_array(prefix, name, id, array, type, fields): argument 220 def build_body(name, tokens): argument 291 def check_field(kind, name, field, extrafields): argument 346 def build_check(name, tokens): argument
|
/xen/xen/arch/x86/include/asm/ |
A D | cpufeatureset.h | 8 #define XEN_CPUFEATURE(name, value) X86_FEATURE_##name = (value), argument 15 #define XEN_CPUFEATURE(name, value) asm (".equ X86_FEATURE_" #name ", " \ argument 22 #define XEN_CPUFEATURE(name, value) .equ X86_FEATURE_##name, value argument
|
/xen/tools/firmware/hvmloader/ |
A D | hypercall.h | 38 #define hcall_addr(name) \ argument 41 #define _hypercall0(type, name) \ argument 52 #define _hypercall1(type, name, a1) \ argument 64 #define _hypercall2(type, name, a1, a2) \ argument 76 #define _hypercall3(type, name, a1, a2, a3) \ argument 90 #define _hypercall4(type, name, a1, a2, a3, a4) \ argument 104 #define _hypercall5(type, name, a1, a2, a3, a4, a5) \ argument
|
/xen/xen/arch/arm/include/asm/arm64/ |
A D | flushtlb.h | 31 #define TLB_HELPER(name, tlbop, sh) \ argument 55 #define TLB_HELPER_VA(name, tlbop) \ argument
|
/xen/xen/tools/kconfig/ |
A D | preprocess.c | 39 char *name; member 44 static void env_add(const char *name, const char *value) in env_add() 64 static char *env_expand(const char *name) in env_expand() 106 const char *name; member 202 static char *function_expand(const char *name, int argc, char *argv[]) in function_expand() 232 char *name; member 239 static struct variable *variable_lookup(const char *name) in variable_lookup() 251 static char *variable_expand(const char *name, int argc, char *argv[]) in variable_expand() 279 void variable_add(const char *name, const char *value, in variable_add() 348 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local
|
/xen/xen/common/ |
A D | perfc.c | 13 #define PERFCOUNTER( var, name ) { name, TYPE_SINGLE, 0 }, argument 14 #define PERFCOUNTER_ARRAY( var, name, size ) { name, TYPE_ARRAY, size }, argument 15 #define PERFSTATUS( var, name ) { name, TYPE_S_SINGLE, 0 }, argument 16 #define PERFSTATUS_ARRAY( var, name, size ) { name, TYPE_S_ARRAY, size }, argument 18 const char *name; member
|
/xen/xen/arch/riscv/include/asm/ |
A D | guest_atomics.h | 7 #define guest_testop(name) \ argument 15 #define guest_bitop(name) \ argument
|
/xen/tools/misc/ |
A D | xen-livepatch.c | 75 char *name = NULL; in list_func() local 181 static int get_name(int argc, char *argv[], char *name) in get_name() 200 char name[XEN_LIVEPATCH_NAME_SIZE]; in upload_func() local 281 const char *name; member 317 const char *name; member 393 char name[XEN_LIVEPATCH_NAME_SIZE]; in action_func() local 505 char **apply_argv, *path, *name, *lastdot; in load_func() local 554 const char *name; member
|
/xen/tools/pygrub/src/fsimage/ |
A D | fsimage.c | 125 fsimage_file_getattr(fsimage_file_t *file, char *name) in fsimage_file_getattr() 161 char *name; in fsimage_fs_open_file() local 188 char *name; in fsimage_fs_file_exists() local 218 fsimage_fs_getattr(fsimage_fs_t *fs, char *name) in fsimage_fs_getattr() 253 char *name; in fsimage_open() local
|
/xen/xen/arch/arm/ |
A D | bootfdt.c | 53 const char *name; in device_tree_node_matches() local 211 const char *name = fdt_get_name(fdt, node, NULL); in device_tree_for_each_node() local 244 const char *name, int depth, in process_memory_node() 253 const char *name, int depth, in process_reserved_memory_node() 269 const char *name, int depth, in process_reserved_memory() 278 const char *name, in process_multiboot_node() 358 const char *name, in process_chosen_node() 422 const char *name, in process_domain_node() 440 int node, const char *name, int depth, in early_scan_node()
|
/xen/xen/common/libfdt/ |
A D | fdt_rw.c | 184 static int fdt_resize_property_(void *fdt, int nodeoffset, const char *name, in fdt_resize_property_() 202 static int fdt_add_property_(void *fdt, int nodeoffset, const char *name, in fdt_add_property_() 235 int fdt_set_name(void *fdt, int nodeoffset, const char *name) in fdt_set_name() 258 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name, in fdt_setprop_placeholder() 276 int fdt_setprop(void *fdt, int nodeoffset, const char *name, in fdt_setprop() 291 int fdt_appendprop(void *fdt, int nodeoffset, const char *name, in fdt_appendprop() 318 int fdt_delprop(void *fdt, int nodeoffset, const char *name) in fdt_delprop() 334 const char *name, int namelen) in fdt_add_subnode_namelen() 377 int fdt_add_subnode(void *fdt, int parentoffset, const char *name) in fdt_add_subnode()
|
A D | fdt_wip.c | 14 const char *name, int namelen, in fdt_setprop_inplace_namelen_partial() 33 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, in fdt_setprop_inplace() 59 int fdt_nop_property(void *fdt, int nodeoffset, const char *name) in fdt_nop_property()
|
/xen/xen/arch/arm/include/asm/ |
A D | config.h | 57 #define ENTRY(name) \ argument 61 #define GLOBAL(name) \ argument 64 #define ENDPROC(name) \ argument
|