Searched defs:dst (Results 1 – 6 of 6) sorted by relevance
/kvm-unit-tests/lib/ |
H A D | cpumask.h | 76 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 D | mvpg-sie.c | 28 static uint8_t *dst; variable
|
H A D | skrf.c | 77 uint8_t *dst = pagebuf + PAGE_SIZE; in test_mvcos() local
|
/kvm-unit-tests/powerpc/ |
H A D | spapr_hcall.c | 55 u8 *dst, *src; in test_h_page_init() local
|
/kvm-unit-tests/x86/ |
H A D | emulator64.c | 6 unsigned long src, dst; in test_cr8() local
|
H A D | hyperv_connections.c | 248 ulong dst = (i + dst_add) % ncpus; in run_test() local
|