Home
last modified time | relevance | path

Searched refs:y (Results 1 – 9 of 9) sorted by relevance

/hypervisor/include/lib/
A Dutil.h16 #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
/hypervisor/
A DMakefile68 ifeq (y, $(CONFIG_RELOC))
98 ifeq (y, $(CONFIG_MULTIBOOT2))
102 ifeq (y, $(CONFIG_RELOC))
110 ifeq (y, $(CONFIG_RELOC))
121 ifeq (y, $(CONFIG_RELEASE))
196 ifeq ($(CONFIG_MULTIBOOT2),y)
242 ifeq ($(CONFIG_SCHED_NOOP),y)
245 ifeq ($(CONFIG_SCHED_IORR),y)
248 ifeq ($(CONFIG_SCHED_BVT),y)
375 ifneq ($(CONFIG_RELEASE),y)
[all …]
/hypervisor/lib/crypto/mbedtls/
A Dsha256.c110 static inline uint32_t majority(uint32_t x, uint32_t y, uint32_t z) in majority() argument
112 return ((x & y) | (z & (x | y))); in majority()
115 static inline uint32_t choice_alg(uint32_t x, uint32_t y, uint32_t z) in choice_alg() argument
117 return (z ^ (x & (y ^ z))); in choice_alg()
/hypervisor/release/
A DMakefile12 ifeq ($(CONFIG_RELEASE),y)
/hypervisor/debug/
A DMakefile12 ifneq ($(CONFIG_RELEASE),y)
/hypervisor/include/public/
A Dacrn_hv_defs.h22 #define BASE_HC_ID(x, y) (((x)<<24U)|(y)) argument
/hypervisor/scripts/makefile/
A Dcfg_update.mk26 ifeq ($(RELEASE_IN_XML),y)
A Dconfig.mk101 ifeq ($(RELEASE),y)
145 override RELEASE := y
/hypervisor/arch/x86/guest/
A Dinstr_emul.c735 static uint64_t name(type x, type y) \
740 "=r" (rflags), "+r" (x) : "m" (y)); \
751 static uint64_t getcc(uint8_t opsize, uint64_t x, uint64_t y) in build_getcc()
756 rflags = getcc8((uint8_t) x, (uint8_t) y); in build_getcc()
759 rflags = getcc16((uint16_t) x, (uint16_t) y); in build_getcc()
762 rflags = getcc32((uint32_t) x, (uint32_t) y); in build_getcc()
765 rflags = getcc64(x, y); in build_getcc()

Completed in 16 milliseconds