Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 6 of 6) sorted by relevance

/hypervisor/arch/x86/
A Dpage.c28 uint64_t loop_idx, idx, bit; in alloc_page() local
35 bit = ffz64(*(pool->bitmap + idx)); in alloc_page()
36 bitmap_set_nolock(bit, pool->bitmap + idx); in alloc_page()
37 page = pool->start_page + ((idx << 6U) + bit); in alloc_page()
65 uint64_t idx, bit; in free_page() local
69 bit = (page - pool->start_page) & 0x3fUL; in free_page()
70 bitmap_clear_nolock(bit, pool->bitmap + idx); in free_page()
A Dcpu_caps.c79 bool pcpu_has_cap(uint32_t bit) in pcpu_has_cap() argument
81 uint32_t feat_idx = bit >> 5U; in pcpu_has_cap()
82 uint32_t feat_bit = bit & 0x1fU; in pcpu_has_cap()
/hypervisor/include/arch/x86/asm/guest/
A Dvmcs.h44 static inline void clear_vmcs_bit(uint32_t vmcs_field, uint64_t bit) in clear_vmcs_bit() argument
49 val64 &= ~bit; in clear_vmcs_bit()
53 static inline void set_vmcs_bit(uint32_t vmcs_field, uint64_t bit) in set_vmcs_bit() argument
58 val64 |= bit; in set_vmcs_bit()
/hypervisor/dm/
A Dvpic.c67 uint32_t bit, pin, i; in vpic_get_highest_isrpin() local
73 bit = (1U << pin); in vpic_get_highest_isrpin()
75 if ((i8259->service & bit) != 0U) { in vpic_get_highest_isrpin()
80 if ((i8259->smm != 0U) && ((i8259->mask & bit) != 0U)) { in vpic_get_highest_isrpin()
97 uint32_t bit, pin, tmp; in vpic_get_highest_irrpin() local
123 bit = (1U << pin); in vpic_get_highest_irrpin()
129 if ((serviced & bit) != 0U) { in vpic_get_highest_irrpin()
137 if (((i8259->request & bit) != 0U) && ((i8259->mask & bit) == 0U)) { in vpic_get_highest_irrpin()
394 uint32_t pin, i, bit; in vpic_ocw1() local
405 bit = (1U << pin); in vpic_ocw1()
[all …]
/hypervisor/include/arch/x86/asm/
A Dcpu_caps.h53 bool pcpu_has_cap(uint32_t bit);
/hypervisor/lib/crypto/mbedtls/
A DChangeLog127 * Fix compilation warnings with IAR toolchain, on 32 bit platform.
329 * Fix test_suite_pk to work on 64-bit ILP32 systems. #849
402 leaking 1 bit of the private key. Reported by prashantkspatil.
637 64-bit division. This is useful on embedded platforms where 64-bit division
2150 * Fixes for 64-bit compilation with MS Visual Studio
2504 displays actual bit size of the value.
2511 platform (32-bit / 64-bit) (Fixes ticket #19, found by Mads
2688 * Fixed Camellia and XTEA for 64-bit Windows systems.
2717 * Fixed compatibility of XTEA and Camellia on a 64-bit system
2795 * Fixed a bug in mpi_read_binary() on 64-bit platforms
[all …]

Completed in 26 milliseconds