Lines Matching refs:SEGMENT
67 static void *hash_realloc(SEGMENT **, size_t, size_t);
219 "SEGMENT SIZE ", hashp->SGSIZE,
220 "SEGMENT SHIFT ", hashp->SSHIFT,
840 /* Check if we need a new segment */
845 dirsize = hashp->DSIZE * sizeof(SEGMENT *);
853 calloc((size_t)hashp->SGSIZE, sizeof(SEGMENT))) == NULL)
883 hash_realloc(SEGMENT **p_ptr, size_t oldsize, size_t newsize)
909 * Allocate segment table. On error, destroy the table and set errno.
917 SEGMENT store;
921 hashp->dir = calloc((size_t)hashp->DSIZE, sizeof(SEGMENT *));
932 store = calloc((size_t)(nsegs << hashp->SSHIFT), sizeof(SEGMENT));