/xen/tools/tests/x86_emulator/ |
A D | simd-sha.c | 21 # define shift_s(d, x, n) ({ \ argument 59 # define rot_v(d, x, n) ({ \ argument 66 # define shift_s(d, x, n) ({ \ argument 71 # define vshift(d, x, n) \ argument 77 #define rol_c(x, n) rot_c(l, r, x, n) argument 78 #define rol_s(x, n) rot_s(l, r, x, n) argument 79 #define rol_v(x, n...) rot_v(l, x, n) argument 84 #define shl_s(x, n) shift_s(l, x, n) argument 86 #define shr_s(x, n) shift_s(r, x, n) argument 89 #define vshl(x, n) vshift(l, x, n) argument [all …]
|
A D | simd.h | 230 # define OVR(n) asm ( "override v" #n ) argument 231 # define OVR_SFP(n) OVR(n ## sd); OVR(n ## ss) argument 235 # define OVR_BW(n) OVR(p ## n ## b); OVR(p ## n ## w) argument 237 # define OVR_BW(n) argument 239 # define OVR_DQ(n) OVR(p ## n ## d); OVR(p ## n ## q) argument 240 # define OVR_VFP(n) OVR(n ## pd); OVR(n ## ps) argument 242 # define OVR_BW(n) argument 243 # define OVR_DQ(n) argument 244 # define OVR_VFP(n) argument 249 # define OVR_FP(n) OVR_VFP(n); OVR_SFP(n) argument [all …]
|
A D | simd-clmul.c | 42 # define lane_shr_i(x, n) ({ \ argument 47 # define lane_shr_v(x, n) ({ \ argument 60 # define lane_shr_v(x, n) ({ \ argument 127 unsigned int n; in clmul_test() local
|
/xen/xen/arch/x86/ |
A D | usercopy.c | 13 unsigned __copy_to_user_ll(void __user *to, const void *from, unsigned n) in __copy_to_user_ll() 52 unsigned __copy_from_user_ll(void *to, const void __user *from, unsigned n) in __copy_from_user_ll() 110 unsigned copy_to_user(void __user *to, const void *from, unsigned n) in copy_to_user() 127 unsigned clear_user(void __user *to, unsigned n) in clear_user() 168 unsigned copy_from_user(void *to, const void __user *from, unsigned n) in copy_from_user()
|
/xen/xen/include/asm-arm/ |
A D | div64.h | 27 # define do_div(n,base) ({ \ argument 45 #define __do_div_asm(n, base) \ argument 73 #define do_div(n, base) __do_div_asm(n, base) argument 87 #define do_div(n, base) \ argument
|
A D | atomic.h | 38 #define BYTE(n) #n argument 39 #define WORD(n) #n argument 40 #define DWORD(n) "" #n ",%H" #n argument 43 #define BYTE(n) "w" #n argument 44 #define WORD(n) "w" #n argument 45 #define DWORD(n) "" #n argument
|
/xen/xen/include/xen/ |
A D | string.h | 35 #define strncmp(s1, s2, n) __builtin_strncmp(s1, s2, n) argument 86 #define memset(s, c, n) __builtin_memset(s, c, n) argument 91 #define memcpy(d, s, n) __builtin_memcpy(d, s, n) argument 96 #define memmove(d, s, n) __builtin_memmove(d, s, n) argument 101 #define memcmp(s1, s2, n) __builtin_memcmp(s1, s2, n) argument 106 #define memchr(s, c, n) __builtin_memchr(s, c, n) argument
|
A D | list.h | 471 #define list_for_each_safe(pos, n, head) \ argument 640 #define list_for_each_safe_rcu(pos, n, head) \ argument 710 static inline void __hlist_del(struct hlist_node *n) in __hlist_del() 719 static inline void hlist_del(struct hlist_node *n) in hlist_del() 745 static inline void hlist_del_rcu(struct hlist_node *n) in hlist_del_rcu() 751 static inline void hlist_del_init(struct hlist_node *n) in hlist_del_init() 809 static inline void hlist_add_head_rcu(struct hlist_node *n, in hlist_add_head_rcu() 822 static inline void hlist_add_before(struct hlist_node *n, in hlist_add_before() 831 static inline void hlist_add_after(struct hlist_node *n, in hlist_add_after() 860 static inline void hlist_add_before_rcu(struct hlist_node *n, in hlist_add_before_rcu() [all …]
|
A D | compat.h | 134 #define CHECK_NAME_(k, n, tag) __check ## tag ## k ## _ ## n argument 143 #define CHECK_TYPE_(k, n) \ argument 154 #define CHECK_SIZE_(k, n) \ argument 165 #define CHECK_FIELD_COMMON_(k, name, n, f) \ argument 175 #define CHECK_FIELD_(k, n, f) \ argument 180 #define CHECK_SUBFIELD_1_(k, n, f1, f2) \ argument 187 #define CHECK_SUBFIELD_2_(k, n, f1, f2, f3) \ argument
|
A D | delay.h | 7 #define mdelay(n) (\ argument
|
/xen/xen/xsm/flask/ss/ |
A D | ebitmap.h | 42 struct ebitmap_node **n) in ebitmap_start_positive() 61 struct ebitmap_node **n, in ebitmap_next_positive() 84 static inline int ebitmap_node_get_bit(struct ebitmap_node *n, in ebitmap_node_get_bit() 96 static inline void ebitmap_node_set_bit(struct ebitmap_node *n, in ebitmap_node_set_bit() 106 static inline void ebitmap_node_clr_bit(struct ebitmap_node *n, in ebitmap_node_clr_bit() 116 #define ebitmap_for_each_positive_bit(e, n, bit) \ argument
|
A D | ebitmap.c | 46 struct ebitmap_node *n, *new, *prev; in ebitmap_cpy() local 109 struct ebitmap_node *n; in ebitmap_get_bit() local 127 struct ebitmap_node *n, *prev, *new; in ebitmap_set_bit() local 205 struct ebitmap_node *n, *temp; in ebitmap_destroy() local 225 struct ebitmap_node *n = NULL; in ebitmap_read() local
|
/xen/xen/include/acpi/platform/ |
A D | acenv.h | 235 #define ACPI_STRNCPY(d,s,n) (void) strncpy((d), (s), (acpi_size)(n)) argument 236 #define ACPI_STRNCMP(d,s,n) strncmp((d), (s), (acpi_size)(n)) argument 239 #define ACPI_STRNCAT(d,s,n) strncat((d), (s), (acpi_size)(n)) argument 240 #define ACPI_STRTOUL(d,s,n) strtoul((d), (s), (acpi_size)(n)) argument 242 #define ACPI_MEMCPY(d,s,n) (void) memcpy((d), (s), (acpi_size)(n)) argument 243 #define ACPI_MEMSET(d,s,n) (void) memset((d), (s), (acpi_size)(n)) argument 297 #define ACPI_STRNCMP(d,s,n) acpi_ut_strncmp ((d), (s), (acpi_size)(n)) argument 300 #define ACPI_STRNCAT(d,s,n) acpi_ut_strncat ((d), (s), (acpi_size)(n)) argument 301 #define ACPI_STRTOUL(d,s,n) acpi_ut_strtoul ((d), (s), (acpi_size)(n)) argument 303 #define ACPI_MEMCPY(d,s,n) (void) acpi_ut_memcpy ((d), (s), (acpi_size)(n)) argument [all …]
|
/xen/xen/include/asm-x86/ |
A D | string.h | 6 #define memcpy(d, s, n) __builtin_memcpy(d, s, n) argument 10 #define memmove(d, s, n) __builtin_memmove(d, s, n) argument 14 #define memset(s, c, n) __builtin_memset(s, c, n) argument
|
A D | hpet.h | 17 #define HPET_Tn_CFG(n) (0x100 + (n) * 0x20) argument 18 #define HPET_Tn_CMP(n) (0x108 + (n) * 0x20) argument 19 #define HPET_Tn_ROUTE(n) (0x110 + (n) * 0x20) argument
|
A D | delay.h | 11 #define udelay(n) __udelay(n) argument
|
/xen/tools/xenstore/ |
A D | list.h | 292 #define list_for_each_safe(pos, n, head) \ argument 338 #define list_for_each_entry_safe(pos, n, head, member) \ argument 375 static __inline__ void __hlist_del(struct hlist_node *n) in __hlist_del() 384 static __inline__ void hlist_del(struct hlist_node *n) in hlist_del() 402 static inline void hlist_del_rcu(struct hlist_node *n) in hlist_del_rcu() 408 static __inline__ void hlist_del_init(struct hlist_node *n) in hlist_del_init() 418 static __inline__ void hlist_add_head(struct hlist_node *n, struct hlist_head *h) in hlist_add_head() 428 static __inline__ void hlist_add_head_rcu(struct hlist_node *n, struct hlist_head *h) in hlist_add_head_rcu() 447 static __inline__ void hlist_add_after(struct hlist_node *n, in hlist_add_after() 461 #define hlist_for_each_safe(pos, n, head) \ argument [all …]
|
/xen/xen/arch/x86/hvm/ |
A D | hpet.c | 56 #define timer_config(h, n) (h->hpet.timers[n].config) argument 57 #define timer_enabled(h, n) (timer_config(h, n) & HPET_TN_ENABLE) argument 58 #define timer_is_periodic(h, n) (timer_config(h, n) & HPET_TN_PERIODIC) argument 59 #define timer_is_32bit(h, n) (timer_config(h, n) & HPET_TN_32BIT) argument 61 #define timer_level(h, n) (timer_config(h, n) & HPET_TN_LEVEL) argument 63 #define timer_int_route(h, n) MASK_EXTR(timer_config(h, n), HPET_TN_ROUTE) argument 65 #define timer_int_route_cap(h, n) \ argument 68 #define timer_int_route_valid(h, n) \ argument 362 #define set_stop_timer(n) (__set_bit((n), &stop_timers)) in hpet_write() argument 363 #define set_start_timer(n) (__set_bit((n), &start_timers)) in hpet_write() argument [all …]
|
/xen/xen/common/ |
A D | notifier.c | 22 struct notifier_head *nh, struct notifier_block *n) in notifier_chain_register() 47 struct notifier_head *nh, struct notifier_block *n) in notifier_chain_unregister()
|
A D | inflate.c | 139 ush n; /* literal, length base, or distance base */ member 230 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}} argument 231 #define DUMPBITS(n) {b>>=(n);k-=(n);} argument 320 unsigned n, /* number of codes (assumed <= N_MAX) */ in huft_build() 595 unsigned n, d; /* length and index for copy */ in inflate_codes() local 703 unsigned n; /* number of bytes in block */ in inflate_stored() local 832 unsigned n; /* number of lengths to get */ in inflate_dynamic() local
|
/xen/tools/firmware/rombios/32bit/ |
A D | util.c | 93 int strncmp(const char *s1, const char *s2, uint32_t n) in strncmp() 102 void *memcpy(void *dest, const void *src, unsigned n) in memcpy() 122 void *memmove(void *dest, const void *src, unsigned n) in memmove() 151 strncpy(char *dest, const char *src, unsigned n) in strncpy() 184 memset(void *s, int c, unsigned n) in memset() 195 memcmp(const void *s1, const void *s2, unsigned n) in memcmp() 284 unsigned long n; in printnum() local
|
/xen/tools/libxl/ |
A D | libxlu_cfg.c | 173 static XLU_ConfigSetting *find(const XLU_Config *cfg, const char *n) { in find() 184 static int find_atom(const XLU_Config *cfg, const char *n, in find_atom() 250 int xlu_cfg_get_string(const XLU_Config *cfg, const char *n, in xlu_cfg_get_string() 260 int xlu_cfg_replace_string(const XLU_Config *cfg, const char *n, in xlu_cfg_replace_string() 271 int xlu_cfg_get_bounded_long(const XLU_Config *cfg, const char *n, in xlu_cfg_get_bounded_long() 326 int xlu_cfg_get_long(const XLU_Config *cfg, const char *n, in xlu_cfg_get_long() 332 int xlu_cfg_get_defbool(const XLU_Config *cfg, const char *n, libxl_defbool *b, in xlu_cfg_get_defbool() 344 int xlu_cfg_get_list(const XLU_Config *cfg, const char *n, in xlu_cfg_get_list() 362 int xlu_cfg_get_list_as_string_list(const XLU_Config *cfg, const char *n, in xlu_cfg_get_list_as_string_list()
|
/xen/xen/common/libfdt/ |
A D | libfdt_internal.h | 78 static inline const struct fdt_reserve_entry *_fdt_mem_rsv(const void *fdt, int n) in _fdt_mem_rsv() 86 static inline struct fdt_reserve_entry *_fdt_mem_rsv_w(void *fdt, int n) in _fdt_mem_rsv_w()
|
/xen/xen/include/asm-arm/arm64/ |
A D | hsr.h | 51 #define HSR_SYSREG_DBGBVRn_EL1(n) HSR_SYSREG(2,0,c0,c##n,4) argument 52 #define HSR_SYSREG_DBGBCRn_EL1(n) HSR_SYSREG(2,0,c0,c##n,5) argument 53 #define HSR_SYSREG_DBGWVRn_EL1(n) HSR_SYSREG(2,0,c0,c##n,6) argument 54 #define HSR_SYSREG_DBGWCRn_EL1(n) HSR_SYSREG(2,0,c0,c##n,7) argument
|
/xen/xen/arch/arm/ |
A D | vgic.c | 50 struct vgic_irq_rank *vgic_rank_offset(struct vcpu *v, int b, int n, in vgic_rank_offset() 336 void vgic_disable_irqs(struct vcpu *v, uint32_t r, int n) in vgic_disable_irqs() 373 static inline unsigned int vgic_get_virq_type(struct vcpu *v, int n, int index) in vgic_get_virq_type() 386 void vgic_enable_irqs(struct vcpu *v, uint32_t r, int n) in vgic_enable_irqs() 488 struct pending_irq *n; in irq_to_pending() local 532 struct pending_irq *iter, *n; in vgic_inject_irq() local
|