/xen-4.10.0-shim-comet/tools/include/xen-external/ |
A D | bsd-sys-queue.h | 192 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 210 SLIST_NEXT(SLIST_NEXT(elm, field), field); \ 368 LIST_NEXT((elm), field)->field.le_prev != \ 404 LIST_NEXT((listelm), field)->field.le_prev = \ 412 (elm)->field.le_prev = (listelm)->field.le_prev; \ 426 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument 434 LIST_NEXT((elm), field)->field.le_prev = \ 436 *(elm)->field.le_prev = LIST_NEXT((elm), field); \ 489 TAILQ_NEXT((elm), field)->field.tqe_prev != \ 549 TAILQ_NEXT((elm), field)->field.tqe_prev = \ [all …]
|
/xen-4.10.0-shim-comet/xen/include/xen/ |
A D | shared.h | 18 #define __shared_info(d, s, field) \ argument 20 (typeof(&(s)->compat.field))&(s)->native.field : \ 21 &(s)->compat.field)) 29 #define __vcpu_info(v, i, field) \ argument 31 (typeof(&(i)->compat.field))&(i)->native.field : \ 32 &(i)->compat.field)) 37 #define __shared_info(d, s, field) ((s)->field) argument 40 #define __vcpu_info(v, i, field) ((i)->field) argument 46 #define shared_info(d, field) __shared_info(d, (d)->shared_info, field) argument 47 #define vcpu_info(v, field) __vcpu_info(v, (v)->vcpu_info, field) argument
|
A D | compat.h | 73 #define copy_field_to_compat(hnd, ptr, field) ({ \ argument 74 const typeof(&(ptr)->field) _s = &(ptr)->field; \ 75 void *_d = &((typeof(**(hnd)._) *)(full_ptr_t)(hnd).c)->field; \ 76 ((void)(&((typeof(**(hnd)._) *)(full_ptr_t)(hnd).c)->field == \ 77 &(ptr)->field)); \ 82 #define copy_field_from_compat(ptr, hnd, field) ({ \ argument 83 const typeof(&(ptr)->field) _s = \ 84 &((typeof(**(hnd)._) *)(full_ptr_t)(hnd).c)->field; \ 85 typeof(&(ptr)->field) _d = &(ptr)->field; \ 118 const typeof(&(ptr)->field) _s = &(ptr)->field; \ [all …]
|
A D | kexec.h | 73 #define VMCOREINFO_OFFSET(name, field) \ argument 74 vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \ 75 (unsigned long)offsetof(struct name, field)) 76 #define VMCOREINFO_OFFSET_SUB(name, sub, field) \ argument 77 vmcoreinfo_append_str("OFFSET(%s.%s)=%lu\n", #name, #field, \ 78 (unsigned long)offsetof(struct name, sub.field))
|
A D | xenoprof.h | 64 #define xenoprof_buf(d, b, field) ((b)->field) argument 67 #define xenoprof_buf(d, b, field) (*(!(d)->xenoprof->is_compat ? \ argument 68 &(b)->native.field : \ 69 &(b)->compat.field))
|
A D | dmi.h | 39 bool dmi_get_date(int field, int *yearp, int *monthp, int *dayp);
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/ |
A D | shared.h | 8 #define GET_SET_SHARED(type, field) \ argument 9 static inline type arch_get_##field(const struct domain *d) \ 12 d->shared_info->native.arch.field : \ 13 d->shared_info->compat.arch.field; \ 15 static inline void arch_set_##field(struct domain *d, \ 19 d->shared_info->native.arch.field = val; \ 21 d->shared_info->compat.arch.field = val; \ 24 #define GET_SET_VCPU(type, field) \ argument 25 static inline type arch_get_##field(const struct vcpu *v) \ 28 v->vcpu_info->native.arch.field : \ [all …]
|
A D | guest_access.h | 110 #define copy_field_to_guest(hnd, ptr, field) ({ \ argument 111 const typeof(&(ptr)->field) _s = &(ptr)->field; \ 112 void *_d = &(hnd).p->field; \ 113 ((void)(&(hnd).p->field == &(ptr)->field)); \ 118 #define copy_field_from_guest(ptr, hnd, field) ({ \ argument 119 const typeof(&(ptr)->field) _s = &(hnd).p->field; \ 120 typeof(&(ptr)->field) _d = &(ptr)->field; \ 156 const typeof(&(ptr)->field) _s = &(ptr)->field; \ 158 ((void)(&(hnd).p->field == &(ptr)->field)); \ 163 const typeof(&(ptr)->field) _s = &(hnd).p->field; \ [all …]
|
A D | asm_defns.h | 130 #define STACK_CPUINFO_FIELD(field) (1 - CPUINFO_sizeof + CPUINFO_##field) argument 135 #define GET_CPUINFO_FIELD(field, reg) \ argument 137 addq $STACK_CPUINFO_FIELD(field), %r##reg
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/ |
A D | guest_access.h | 96 #define copy_field_to_guest(hnd, ptr, field) ({ \ argument 97 const typeof(&(ptr)->field) _s = &(ptr)->field; \ 98 void *_d = &(hnd).p->field; \ 99 ((void)(&(hnd).p->field == &(ptr)->field)); \ 104 #define copy_field_from_guest(ptr, hnd, field) ({ \ argument 105 const typeof(&(ptr)->field) _s = &(hnd).p->field; \ 106 typeof(&(ptr)->field) _d = &(ptr)->field; \ 136 const typeof(&(ptr)->field) _s = &(ptr)->field; \ 138 ((void)(&(hnd).p->field == &(ptr)->field)); \ 143 const typeof(&(ptr)->field) _s = &(hnd).p->field; \ [all …]
|
/xen-4.10.0-shim-comet/tools/blktap2/vhd/lib/ |
A D | vhd-util-set-field.c | 42 char *name, *field; in vhd_util_set_field() local 47 field = NULL; in vhd_util_set_field() 59 field = optarg; in vhd_util_set_field() 71 if (!name || !field || optind != argc || err) in vhd_util_set_field() 74 if (strnlen(field, 25) >= 25) { in vhd_util_set_field() 79 if (strcmp(field, "hidden")) { in vhd_util_set_field() 80 printf("invalid field %s\n", field); in vhd_util_set_field()
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | gentypes.py | 212 def libxl_C_type_member_init(ty, field): argument 216 ku = field.type 278 elif isinstance(field.type, idl.Array) and field.deprecated_by: 280 elif isinstance(field.type, idl.Struct) and field.type.copy_fn is None: 284 elif field.deprecated_by is not None: 301 if field.type.copy_fn is not None: 307 if field.type.dispose_fn is not None: 312 if field.type.init_fn is not None: 314 elif field.type.init_val is not None: 619 ku = field.type [all …]
|
A D | idl.txt | 155 Each field has the following properties: 161 Field.init_val The initialisation value for this field. Takes 197 idl.Aggregate and will contain the length of the array. The field
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/hvm/vmx/ |
A D | vmx.h | 364 static always_inline void __vmread(unsigned long field, unsigned long *value) in __vmread() argument 378 : "r" (field), in __vmread() 381 : "a" (field), in __vmread() 387 static always_inline void __vmwrite(unsigned long field, unsigned long value) in __vmwrite() argument 401 : "r" (field) , "rm" (value), in __vmwrite() 403 : "a" (field) , "c" (value), in __vmwrite() 409 static inline enum vmx_insn_errno vmread_safe(unsigned long field, in vmread_safe() argument 422 : [field] GAS_VMX_OP("r", "a") (field)); in vmread_safe() 432 static inline enum vmx_insn_errno vmwrite_safe(unsigned long field, in vmwrite_safe() argument 444 : [field] GAS_VMX_OP("r", "a") (field), in vmwrite_safe()
|
/xen-4.10.0-shim-comet/tools/xenstat/xentop/ |
A D | TODO | 9 Like Top, f feature, field select of domain columns, toggle the display of 10 field by typing the letter associated with field, if displayed it shows in 12 field, if not selected for display letter is lowercase, no leading asterisk 13 and field is not bolded.
|
/xen-4.10.0-shim-comet/xen/include/public/ |
A D | memory.h | 495 #define XENMEM_SHARING_OP_FIELD_MAKE_GREF(field, val) \ argument 496 (field) = (XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG | val) 497 #define XENMEM_SHARING_OP_FIELD_IS_GREF(field) \ argument 498 ((field) & XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG) 499 #define XENMEM_SHARING_OP_FIELD_GET_GREF(field) \ argument 500 ((field) & (~XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG))
|
/xen-4.10.0-shim-comet/xen/arch/x86/cpu/ |
A D | intel.c | 146 #define LAZY(msr, field) \ in intel_ctxt_switch_masking() argument 148 if (unlikely(these_masks->field != masks->field) && \ in intel_ctxt_switch_masking() 151 wrmsrl((msr), masks->field); \ in intel_ctxt_switch_masking() 152 these_masks->field = masks->field; \ in intel_ctxt_switch_masking()
|
A D | amd.c | 232 #define LAZY(cap, msr, field) \ in amd_ctxt_switch_masking() argument 234 if (unlikely(these_masks->field != masks->field) && \ in amd_ctxt_switch_masking() 237 wrmsr_amd(msr, masks->field); \ in amd_ctxt_switch_masking() 238 these_masks->field = masks->field; \ in amd_ctxt_switch_masking()
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/hvm/svm/ |
A D | amd-iommu-proto.h | 143 u32 field; in get_field_from_reg_u32() local 144 field = (reg_value & mask) >> shift; in get_field_from_reg_u32() 145 return field; in get_field_from_reg_u32() 148 static inline u32 set_field_in_reg_u32(u32 field, u32 reg_value, in set_field_in_reg_u32() argument 152 reg_value |= (field << shift) & mask; in set_field_in_reg_u32()
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | td.c | 158 get_field(char *field) in get_field() argument 163 if (!strcmp(field, td_vdi_fields[i].name)) in get_field() 549 struct vdi_field *field; in td_set_field() local 572 field = get_field(argv[optind]); in td_set_field() 573 if (!field || field->id != TD_FIELD_HIDDEN) { in td_set_field() 586 cargv[cargc++] = field->name; in td_set_field()
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | extable.c | 13 #define EX_FIELD(ptr, field) ((unsigned long)&(ptr)->field + (ptr)->field) argument
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | vgic-v3.c | 367 uint64_t field = (reg & field_mask) >> field_shift; in vgic_sanitise_field() local 369 field = sanitise_fn(field) << field_shift; in vgic_sanitise_field() 371 return (reg & ~field_mask) | field; in vgic_sanitise_field() 375 static uint64_t vgic_sanitise_shareability(uint64_t field) in vgic_sanitise_shareability() argument 377 switch ( field ) in vgic_sanitise_shareability() 382 return field; in vgic_sanitise_shareability() 387 static uint64_t vgic_sanitise_inner_cacheability(uint64_t field) in vgic_sanitise_inner_cacheability() argument 389 switch ( field ) in vgic_sanitise_inner_cacheability() 395 return field; in vgic_sanitise_inner_cacheability() 402 switch ( field ) in vgic_sanitise_outer_cacheability() [all …]
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/vmx/ |
A D | vvmx.c | 564 return get_vvmcs(v, field) | host_value; in __shadow_control() 571 __vmwrite(field, __shadow_control(v, field, host_value)); in set_shadow_control() 952 __vmwrite(field, get_vvmcs(v, field)); in vvmcs_to_shadow() 974 __vmread(field[i], &value[i]); in vvmcs_to_shadow_bulk() 978 __vmwrite(field[i], value[i]); in vvmcs_to_shadow_bulk() 984 vvmcs_to_shadow(v, field[i]); in vvmcs_to_shadow_bulk() 991 if ( vmread_safe(field, &value) == 0 ) in shadow_to_vvmcs() 992 set_vvmcs(v, field, value); in shadow_to_vvmcs() 1013 __vmread(field[i], &value[i]); in shadow_to_vvmcs_bulk() 1017 __vmwrite(field[i], value[i]); in shadow_to_vvmcs_bulk() [all …]
|
/xen-4.10.0-shim-comet/tools/blktap2/ |
A D | README | 201 A few words about what these mean. The first field must be the disk 202 type number you claimed in step (2). The second field is a string 204 field is the name of your disk as will be used by the tapdisk2 utility 210 have one driver for each device that is created. The final field 227 your file. Use the same name you specified in the third field of step 257 The private_data_size field is used to provide a structure to store 271 in in the .private_data_size field of your struct tap_disk (above).
|
/xen-4.10.0-shim-comet/xen/include/xen/libfdt/ |
A D | libfdt.h | 163 #define fdt_get_header(fdt, field) \ argument 164 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
|