Lines Matching refs:tmp64
567 uint64_t tmp64; in perf_stop_counters() local
575 tmp64 = (userbuf[21] << 22) & 0x00000000ffc00000; in perf_stop_counters()
576 tmp64 |= (userbuf[22] >> 42) & 0x00000000003fffff; in perf_stop_counters()
578 tmp64 |= (userbuf[22] >> 10) & 0x0000000080000000; in perf_stop_counters()
579 raddr[0] = (uint32_t)tmp64; in perf_stop_counters()
582 tmp64 = (userbuf[22] >> 9) & 0x00000000ffffffff; in perf_stop_counters()
584 tmp64 |= (userbuf[22] << 23) & 0x0000000080000000; in perf_stop_counters()
585 raddr[1] = (uint32_t)tmp64; in perf_stop_counters()
588 tmp64 = (userbuf[22] << 24) & 0x00000000ff000000; in perf_stop_counters()
589 tmp64 |= (userbuf[23] >> 40) & 0x0000000000ffffff; in perf_stop_counters()
591 tmp64 |= (userbuf[23] >> 8) & 0x0000000080000000; in perf_stop_counters()
592 raddr[2] = (uint32_t)tmp64; in perf_stop_counters()
595 tmp64 = (userbuf[23] >> 7) & 0x00000000ffffffff; in perf_stop_counters()
597 tmp64 |= (userbuf[23] << 25) & 0x0000000080000000; in perf_stop_counters()
598 raddr[3] = (uint32_t)tmp64; in perf_stop_counters()
751 uint64_t *intrigue_bitmask, tmp64, proc_hpa, *ptr64; in perf_write_image() local
779 tmp64 = *intrigue_bitmask & *memaddr++; in perf_write_image()
780 tmp64 |= (~(*intrigue_bitmask++)) & *bptr; in perf_write_image()
781 *bptr++ = tmp64; in perf_write_image()
807 tmp64 = __raw_readq((u64 *)ptr64) & 0xffecffffffffffff; in perf_write_image()
808 __raw_writeq(tmp64 | (*memaddr++ & 0x0013000000000000), (u64 *)ptr64); in perf_write_image()