Searched refs:UINT64SZ (Results 1 – 2 of 2) sorted by relevance
747 if ((len >= UINT64SZ) && in iosram_rd()748 ((((uintptr_t)iosramp | (uintptr_t)buf) & (UINT64SZ - 1)) == 0)) { in iosram_rd()752 int cnt = len/UINT64SZ; in iosram_rd()759 iosramp += cnt * UINT64SZ; in iosram_rd()760 buf += cnt * UINT64SZ; in iosram_rd()761 len -= cnt * UINT64SZ; in iosram_rd()955 if ((len >= UINT64SZ) && in _iosram_write()956 ((((uintptr_t)iosramp | (uintptr_t)buf) & (UINT64SZ - 1)) == 0)) { in _iosram_write()960 int cnt = len/UINT64SZ; in _iosram_write()967 iosramp += cnt * UINT64SZ; in _iosram_write()[all …]
42 #define UINT64SZ sizeof (uint64_t) macro