Home
last modified time | relevance | path

Searched refs:UINT64SZ (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/sun4u/starcat/io/
H A Diosram.c747 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 …]
/titanic_50/usr/src/uts/sun4u/starcat/sys/
H A Diosramvar.h42 #define UINT64SZ sizeof (uint64_t) macro