/xen/xen/lib/ |
A D | list-sort.c | 31 struct list_head *b), in merge() 60 struct list_head *b), in merge_and_restore_back_links() 116 struct list_head *b)) in list_sort()
|
A D | divmod.c | 100 #define COMBINE(a, b) (((unsigned long)(a) << HALF_BITS) | (b)) argument 327 s64 __divdi3(s64 a, s64 b) in __divdi3() 341 u64 __udivdi3(u64 a, u64 b) in __udivdi3() 349 u64 __umoddi3(u64 a, u64 b) in __umoddi3() 364 s64 __moddi3(s64 a, s64 b) in __moddi3() 377 s64 __ldivmod_helper(s64 a, s64 b, s64 *r) in __ldivmod_helper()
|
A D | muldiv64.c | 4 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c) in muldiv64()
|
/xen/tools/libs/ctrl/ |
A D | xc_hcall_buf.c | 29 void *xc__hypercall_buffer_alloc_pages(xc_interface *xch, xc_hypercall_buffer_t *b, int nr_pages) in xc__hypercall_buffer_alloc_pages() 41 void xc__hypercall_buffer_free_pages(xc_interface *xch, xc_hypercall_buffer_t *b, int nr_pages) in xc__hypercall_buffer_free_pages() 46 void *xc__hypercall_buffer_alloc(xc_interface *xch, xc_hypercall_buffer_t *b, size_t size) in xc__hypercall_buffer_alloc() 58 void xc__hypercall_buffer_free(xc_interface *xch, xc_hypercall_buffer_t *b) in xc__hypercall_buffer_free() 63 int xc__hypercall_bounce_pre(xc_interface *xch, xc_hypercall_buffer_t *b) in xc__hypercall_bounce_pre() 92 void xc__hypercall_bounce_post(xc_interface *xch, xc_hypercall_buffer_t *b) in xc__hypercall_bounce_post()
|
/xen/tools/tests/x86_emulator/ |
A D | simd-fma.c | 88 # define _cmul_vs(a, b, c) ({ \ argument 96 # define cmadd_vv(a, b, c) BR2(vfmaddcph, , a, b, c) argument 97 # define cmadd_vs(a, b, c) ({ \ argument 113 # define _cmul_vv(a, b, c) ({ \ argument 119 # define _cmul_vs(a, b, c) ({ \ argument 126 # define cmadd_vv(a, b, c) ({ \ argument 131 # define cmadd_vs(a, b, c) ({ \ argument 138 # define cmul_vv(a, b) _cmul_vv(a, b, ) argument 139 # define cmulc_vv(a, b) _cmul_vv(a, b, c) argument 140 # define cmul_vs(a, b) _cmul_vs(a, b, ) argument [all …]
|
/xen/xen/arch/arm/include/asm/ |
A D | bug.h | 24 #define bug_loc(b) ((const void *)(b) + (b)->loc_disp) argument 25 #define bug_file(b) ((const void *)(b) + (b)->file_disp); argument 26 #define bug_line(b) ((b)->line) argument 27 #define bug_msg(b) ((const char *)(b) + (b)->msg_disp) argument
|
/xen/tools/xenstored/ |
A D | utils.h | 13 #define streq(a,b) (strcmp((a),(b)) == 0) argument 16 #define strstarts(a,b) (strncmp((a),(b),strlen(b)) == 0) argument 19 static inline bool strends(const char *a, const char *b) in strends()
|
/xen/xen/include/xen/ |
A D | sort.h | 25 void sort(void *base, size_t num, size_t size, in sort() 26 int (*cmp)(const void *a, const void *b), in sort()
|
A D | bug.h | 33 #define bug_loc(b) ((unsigned long)(b) + (b)->loc_disp) argument 35 #define bug_ptr(b) ((const void *)(b) + (b)->ptr_disp) argument 37 #define bug_line(b) (((((b)->line_hi + ((b)->loc_disp < 0)) & \ argument 43 #define bug_msg(b) ((const char *)(b) + (b)->msg_disp[1]) argument
|
A D | types.h | 67 #define test_and_set_bool(b) xchg(&(b), true) argument 68 #define test_and_clear_bool(b) xchg(&(b), false) argument
|
A D | macros.h | 34 #define PASTE_(a, b) a ## b argument 35 #define PASTE(a, b) PASTE_(a, b) argument 75 #define SWAP(a, b) \ argument
|
/xen/xen/include/acpi/ |
A D | acglobal.h | 55 #define ACPI_INIT_GLOBAL(a,b) a=b argument 58 #define ACPI_INIT_GLOBAL(a,b) a argument
|
A D | acmacros.h | 57 #define ACPI_MIN(a,b) (((a)<(b))?(a):(b)) argument 58 #define ACPI_MAX(a,b) (((a)>(b))?(a):(b)) argument 354 #define ACPI_INIT_UUID(a,b,c,d0,d1,d2,d3,d4,d5,d6,d7) \ argument 402 #define ARGI_LIST2(a,b) (ARG_1(b)|ARG_2(a)) argument 409 #define ARGP_LIST2(a,b) (ARG_1(a)|ARG_2(b)) argument 577 #define ACPI_FUNCTION_TRACE_PTR(a,b) argument 578 #define ACPI_FUNCTION_TRACE_U32(a,b) argument 579 #define ACPI_FUNCTION_TRACE_STR(a,b) argument 625 #define ACPI_FUNCTION_TRACE_PTR(a,b) do { } while(0) argument 626 #define ACPI_FUNCTION_TRACE_U32(a,b) do { } while(0) argument [all …]
|
/xen/xen/common/ |
A D | xmalloc_tlsf.c | 186 struct bhdr *b = NULL; in FIND_SUITABLE_BLOCK() local 209 static inline void EXTRACT_BLOCK_HDR(struct bhdr *b, struct xmem_pool *p, int fl, in EXTRACT_BLOCK_HDR() 231 static inline void EXTRACT_BLOCK(struct bhdr *b, struct xmem_pool *p, int fl, in EXTRACT_BLOCK() 265 static inline void INSERT_BLOCK(struct bhdr *b, struct xmem_pool *p, int fl, int sl) in INSERT_BLOCK() 288 struct bhdr *b, *lb; in ADD_REGION() local 387 struct bhdr *b, *b2, *next_b, *region; in xmem_pool_alloc() local 468 struct bhdr *b, *tmp_b; in xmem_pool_free() local 578 const struct bhdr *b = p - BHDR_OVERHEAD; in strip_padding() local 597 struct bhdr *b = q - BHDR_OVERHEAD; in add_padding() local 675 const struct bhdr *b; in _xrealloc() local
|
A D | bug.c | 27 const struct bug_frame *b; in do_bug_frame() local
|
/xen/xen/common/xz/ |
A D | dec_stream.c | 157 static bool __init fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() 218 static enum xz_ret __init dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block() 281 static void __init index_update(struct xz_dec *s, const struct xz_buf *b) in index_update() 296 static enum xz_ret __init dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index() 346 static enum xz_ret __init crc32_validate(struct xz_dec *s, struct xz_buf *b) in crc32_validate() 370 static bool __init check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip() 549 static enum xz_ret __init dec_main(struct xz_dec *s, struct xz_buf *b) in dec_main() 762 XZ_EXTERN enum xz_ret __init xz_dec_run(struct xz_dec *s, struct xz_buf *b) in xz_dec_run()
|
A D | dec_bcj.c | 83 static inline int __init bcj_x86_test_msbyte(uint8_t b) in bcj_x86_test_msbyte() 101 uint8_t b; in bcj_x86() local 399 static void __init bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) in bcj_flush() 419 struct xz_buf *b) in xz_dec_bcj_run()
|
/xen/xen/arch/riscv/include/asm/ |
A D | asm.h | 17 #define __REG_SEL(a, b) __ASM_STR(a) argument 19 #define __REG_SEL(a, b) __ASM_STR(b) argument
|
/xen/tools/xl/ |
A D | xl_utils.h | 50 #define STR_HAS_PREFIX( a, b ) \ argument 52 #define STR_SKIP_PREFIX( a, b ) \ argument
|
/xen/xen/arch/x86/include/asm/ |
A D | pt-contig-markers.h | 40 #define IS_CONTIG(kind, pt, i, idx, shift, b) \ argument 54 unsigned int b, i = idx; in pt_update_contig_markers() local
|
/xen/xen/common/gzip/ |
A D | inflate.c | 133 uch b; /* number of bits in this code or subcode */ member 279 unsigned *b, unsigned n, unsigned s, const ush *d, const ush *e, in huft_build() 548 register ulg b; /* bit buffer */ in inflate_codes() local 651 register ulg b; /* bit buffer */ in inflate_stored() local 786 register ulg b; /* bit buffer */ in inflate_dynamic() local 965 register ulg b; /* bit buffer */ in inflate_block() local
|
/xen/tools/libs/light/ |
A D | libxl_x86_acpi.h | 22 static inline int test_bit(unsigned int b, const void *p) in test_bit()
|
/xen/xen/tools/kconfig/ |
A D | nconf.h | 25 #define max(a, b) ({\ argument 30 #define min(a, b) ({\ argument
|
/xen/tools/libfsimage/zfs/ |
A D | zfs_fletcher.c | 67 uint64_t a, b, c, d; in fletcher_4_native() local 84 uint64_t a, b, c, d; in fletcher_4_byteswap() local
|
/xen/tools/misc/ |
A D | xenlockprof.c | 26 double l, b, sl, sb; in main() local
|