Searched defs:WORDSIZE (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/look/
H A Dlook.c27 #define WORDSIZE 257 macro
28 char entry[WORDSIZE];
29 char word[WORDSIZE];
30 char key[WORDSIZE];
161 int avail = WORDSIZE - 1;
181 int avail = WORDSIZE - 1;
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmallint.h62 #define WORDSIZE (sizeof (WORD)) macro
64 #define ROUND(s) if (s % WORDSIZE) s += (WORDSIZE - (s % WORDSIZE))
142 #define DATA(b) ((char *)(((uintptr_t)(b)) + WORDSIZE))
143 #define BLOCK(d) ((TREE *)(((uintptr_t)(d)) - WORDSIZE))
145 #define LAST(b) (*((TREE **)(((uintptr_t)(b)) - WORDSIZE)))
146 #define NEXT(b) ((TREE *)(((uintptr_t)(b)) + SIZE(b) + WORDSIZE))
147 #define BOTTOM(b) ((DATA(b) + SIZE(b) + WORDSIZE) == Baddr)
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmallint.h61 #define WORDSIZE (sizeof (WORD)) macro
63 #define ROUND(s) if ((s)%WORDSIZE) (s) += (WORDSIZE - ((s)%WORDSIZE))
112 #define DATA(b) (((char *)(b)) + WORDSIZE)
113 #define BLOCK(d) ((TREE *)(((char *)(d)) - WORDSIZE))
116 #define NEXT(b) ((TREE *)(((char *)(b)) + RSIZE(b) + WORDSIZE))
117 #define BOTTOM(b) ((DATA(b) + RSIZE(b) + WORDSIZE) == Baddr)
/illumos-gate/usr/src/cmd/fs.d/
H A Dpreenlib.c91 #define WORDSIZE (NBBY * sizeof (uint_t)) macro
378 newsize = howmany(unit+1, WORDSIZE);
392 devp->unitmap[unit / WORDSIZE] |= (1 << (unit % WORDSIZE));
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c102 #define WORDSIZE sizeof (int) macro

Completed in 64 milliseconds