Searched refs:UINT32SZ (Results 1 – 2 of 2) sorted by relevance
664 uchar_t cbuf[UINT32SZ]; in iosram_rd()732 if ((boff = ((uintptr_t)iosramp & (UINT32SZ - 1))) != 0) { in iosram_rd()733 int cnt = UINT32SZ - boff; in iosram_rd()766 if (len >= UINT32SZ) { in iosram_rd()772 iosramp += UINT32SZ; in iosram_rd()773 buf += UINT32SZ; in iosram_rd()774 len -= UINT32SZ; in iosram_rd()781 } else if ((len >= UINT32SZ) && in iosram_rd()782 ((((uintptr_t)iosramp | (uintptr_t)buf) & (UINT32SZ - 1)) == 0)) { in iosram_rd()786 int cnt = len/UINT32SZ; in iosram_rd()[all …]
40 #ifndef UINT32SZ41 #define UINT32SZ sizeof (uint32_t) macro