Home
last modified time | relevance | path

Searched refs:int128_not (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/host/include/generic/host/
H A Dstore-insert-al16.h.inc29 msk = int128_not(msk);
40 msk = int128_not(msk);
/openbmc/qemu/util/
H A Dhost-utils.c417 unsig_hi = int128_not(unsig_hi); in divs256()
435 *phigh = int128_not(unsig_hi); in divs256()
/openbmc/qemu/include/qemu/
H A Dint128.h67 static inline Int128 int128_not(Int128 a) in int128_not() function
299 static inline Int128 int128_not(Int128 a) in int128_not() function
/openbmc/qemu/target/ppc/
H A Dint_helper.c1861 conj = int128_not(a->s128); in helper_XXEVAL()
1866 conj = int128_and(conj, int128_not(b->s128)); in helper_XXEVAL()
1871 conj = int128_and(conj, int128_not(c->s128)); in helper_XXEVAL()
2129 r->VsrD(1) = int128_ult(int128_not(a->s128), b->s128); in helper_VADDCUQ()
2135 bool carry_out = int128_ult(int128_not(a->s128), b->s128), in helper_VADDECUQ()
2154 r->s128 = int128_add(int128_add(a->s128, int128_not(b->s128)), in helper_VSUBEUQM()
2160 Int128 tmp = int128_not(b->s128); in helper_VSUBCUQ()
2162 r->VsrD(1) = int128_ult(int128_not(a->s128), tmp) || in helper_VSUBCUQ()
2169 Int128 tmp = int128_not(b->s128); in helper_VSUBECUQ()
2170 bool carry_out = int128_ult(int128_not(a->s128), tmp), in helper_VSUBECUQ()
/openbmc/qemu/target/riscv/
H A Dcsr.c4856 new_value = int128_or(int128_and(old_value, int128_not(write_mask)), in riscv_csrrw_do128()