HomeSort by relevance Sort by last modified time
    Searched defs:WORDSIZE (Results 1 - 5 of 5) sorted by null

  /onnv/onnv-gate/usr/src/cmd/look/
look.c 27 #define WORDSIZE 257
28 char entry[WORDSIZE];
29 char word[WORDSIZE];
30 char key[WORDSIZE];
161 int avail = WORDSIZE - 1;
181 int avail = WORDSIZE - 1;
  /onnv/onnv-gate/usr/src/cmd/fs.d/
preenlib.c 91 #define WORDSIZE (NBBY * sizeof (uint_t))
378 newsize = howmany(unit+1, WORDSIZE);
392 devp->unitmap[unit / WORDSIZE] |= (1 << (unit % WORDSIZE));
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
mallint.h 62 #define WORDSIZE (sizeof (WORD))
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)
  /onnv/onnv-gate/usr/src/lib/watchmalloc/common/
mallint.h 61 #define WORDSIZE (sizeof (WORD))
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)
  /onnv/onnv-gate/usr/src/psm/stand/boot/common/
heap_kmem.c 102 #define WORDSIZE sizeof (int)

Completed in 180 milliseconds