| /hypervisor/include/lib/ |
| A D | util.h | 16 #define INT_DIV_ROUNDUP(x, y) ((((x)+(y))-1)/(y)) argument 19 #define roundup(x, y) (((x) + ((y) - 1UL)) & (~((y) - 1UL))) argument 21 #define min(x, y) (((x) < (y)) ? (x) : (y)) argument 23 #define max(x, y) (((x) < (y)) ? (y) : (x)) argument 29 #define STRINGIFY(x) #x argument
|
| A D | types.h | 11 #define __aligned(x) __attribute__((aligned(x))) argument
|
| /hypervisor/lib/crypto/mbedtls/ |
| A D | sha256.c | 82 return ((x & 0xFFFFFFFFU) >> n); in shr() 87 return (shr(x, n) | (x << (32U - n))); in rotr() 90 static inline uint32_t sigma0(uint32_t x) in sigma0() argument 92 return (rotr(x, 7U) ^ rotr(x, 18U) ^ shr(x, 3U)); in sigma0() 95 static inline uint32_t sigma1(uint32_t x) in sigma1() argument 97 return (rotr(x, 17U) ^ rotr(x, 19U) ^ shr(x, 10U)); in sigma1() 100 static inline uint32_t sigma2(uint32_t x) in sigma2() argument 102 return (rotr(x, 2U) ^ rotr(x, 13U) ^ rotr(x, 22U)); in sigma2() 107 return (rotr(x, 6U) ^ rotr(x, 11U) ^ rotr(x, 25U)); in sigma3() 112 return ((x & y) | (z & (x | y))); in majority() [all …]
|
| A D | ChangeLog | 3 = mbed TLS x.x.x branch released xxxx-xx-xx 1521 * Ciphersuites using SHA-256 or SHA-384 now require TLS 1.x (there is no 1523 * Ciphersuites using RSA-PSK key exchange new require TLS 1.x (the spec is
|
| /hypervisor/include/arch/x86/asm/ |
| A D | pgtable.h | 259 static inline void *hpa2hva_early(uint64_t x) in hpa2hva_early() argument 261 return (void *)x; in hpa2hva_early() 284 static inline uint64_t hva2hpa_early(void *x) in hva2hpa_early() argument 286 return (uint64_t)x; in hva2hpa_early() 308 static inline void *hpa2hva(uint64_t x) in hpa2hva() argument 310 return (void *)x; in hpa2hva() 332 static inline uint64_t hva2hpa(const void *x) in hva2hpa() argument 334 return (uint64_t)x; in hva2hpa()
|
| A D | msr.h | 610 static inline bool is_pat_mem_type_invalid(uint64_t x) in is_pat_mem_type_invalid() argument 612 return (((x & PAT_FIELD_RSV_BITS) != 0UL) || ((x & 0x6UL) == 0x2UL)); in is_pat_mem_type_invalid()
|
| /hypervisor/include/arch/x86/asm/lib/ |
| A D | spinlock.h | 81 #define spinlock_obtain(x) spinlock_obtain lock = (x) argument 88 #define spinlock_release(x) spinlock_release lock = (x) argument
|
| /hypervisor/arch/x86/guest/ |
| A D | instr_emul.c | 1763 switch (x) { in segment_override() 1820 uint8_t x, i; in decode_prefixes() local 1872 uint8_t x; in decode_two_byte_opcode() local 1893 uint8_t x; in decode_opcode() local 1917 uint8_t x; in decode_modrm() local 2008 uint8_t x; in decode_sib() local 2089 uint8_t n, i, x; in decode_displacement() local 2111 u.buf[i] = x; in decode_displacement() 2130 uint8_t i, n, x; in decode_immediate() local 2172 u.buf[i] = x; in decode_immediate() [all …]
|
| A D | guest_memory.c | 416 void *gpa2hva(struct acrn_vm *vm, uint64_t x) in gpa2hva() argument 418 uint64_t hpa = gpa2hpa(vm, x); in gpa2hva()
|
| /hypervisor/include/debug/ |
| A D | logmsg.h | 35 #define ASSERT(x, ...) \ argument 37 if (!(x)) {\ 44 #define ASSERT(x, ...) do { } while (0) argument
|
| /hypervisor/include/arch/x86/asm/guest/ |
| A D | vlapic.h | 146 static inline uint32_t prio(uint32_t x) in prio() argument 148 return (x >> 4U); in prio()
|
| A D | guest_memory.h | 37 void *gpa2hva(struct acrn_vm *vm, uint64_t x);
|
| /hypervisor/lib/ |
| A D | sprintf.c | 78 static const char *get_param(const char *s_arg, uint32_t *x) in get_param() argument 81 *x = 0U; in get_param() 91 *x = ((*x) * 10U) + (uint32_t)delta; in get_param()
|
| /hypervisor/include/public/ |
| A D | acrn_hv_defs.h | 22 #define BASE_HC_ID(x, y) (((x)<<24U)|(y)) argument
|
| /hypervisor/ |
| A D | Makefile | 524 @if [ "$(BUILD_VERSION)"x = x ];then \ 536 if [ x$(CONFIG_RELEASE) = "xy" ];then BUILD_TYPE="REL";else BUILD_TYPE="DBG";fi;\
|