Home
last modified time | relevance | path

Searched defs:dst (Results 1 – 6 of 6) sorted by relevance

/kvm-unit-tests/lib/
H A Dcpumask.h76 static inline bool cpumask_and(cpumask_t *dst, const cpumask_t *src1, const cpumask_t *src2) in cpumask_and()
83 cpumask_bits(dst)[i] = cpumask_bits(src1)[i] & cpumask_bits(src2)[i]; in cpumask_and() local
87 cpumask_bits(dst)[i] = (cpumask_bits(src1)[i] & cpumask_bits(src2)[i]) & lastmask; in cpumask_and() local
92 static inline void cpumask_or(cpumask_t *dst, const cpumask_t *src1, const cpumask_t *src2) in cpumask_or()
98 cpumask_bits(dst)[i] = cpumask_bits(src1)[i] | cpumask_bits(src2)[i]; in cpumask_or() local
100 cpumask_bits(dst)[i] = (cpumask_bits(src1)[i] | cpumask_bits(src2)[i]) & lastmask; in cpumask_or() local
103 static inline void cpumask_xor(cpumask_t *dst, const cpumask_t *src1, const cpumask_t *src2) in cpumask_xor()
109 cpumask_bits(dst)[i] = cpumask_bits(src1)[i] ^ cpumask_bits(src2)[i]; in cpumask_xor() local
111 cpumask_bits(dst)[i] = (cpumask_bits(src1)[i] ^ cpumask_bits(src2)[i]) & lastmask; in cpumask_xor() local
115 static inline bool cpumask_andnot(cpumask_t *dst, const cpumask_t *src1, const cpumask_t *src2) in cpumask_andnot()
[all …]
/kvm-unit-tests/s390x/
H A Dmvpg-sie.c28 static uint8_t *dst; variable
H A Dskrf.c77 uint8_t *dst = pagebuf + PAGE_SIZE; in test_mvcos() local
/kvm-unit-tests/powerpc/
H A Dspapr_hcall.c55 u8 *dst, *src; in test_h_page_init() local
/kvm-unit-tests/x86/
H A Demulator64.c6 unsigned long src, dst; in test_cr8() local
H A Dhyperv_connections.c248 ulong dst = (i + dst_add) % ncpus; in run_test() local