HomeSort by: relevance | last modified time | path
    Searched refs:MINSIZE (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/m4/lib/
ohash_int.h 22 #define MINSIZE (1UL << 4)
ohash_init.c 26 if (h->size < MINSIZE)
27 h->size = MINSIZE;
ohash_do.c 37 if (ns < MINSIZE)
38 ns = MINSIZE;
  /src/bin/sh/
memalloc.c 110 #define MINSIZE 504 /* minimum size of a block */
114 char space[MINSIZE];
121 int stacknleft = MINSIZE;
135 if (blocksize < MINSIZE)
136 blocksize = MINSIZE;
138 sp = ckmalloc(sizeof(struct stack_block) - MINSIZE + blocksize);
233 sizeof(struct stack_block) - MINSIZE + newlen);
  /src/usr.sbin/makefs/chfs/
chfs_mkfs.c 126 #define MINSIZE MAX(MAX(CHFS_EB_EC_HDR_SIZE, CHFS_EB_HDR_NOR_SIZE), \
128 if ((uint32_t)opts->pagesize < MINSIZE)
129 errx(EXIT_FAILURE, "pagesize cannot be less than %zu", MINSIZE);

Completed in 19 milliseconds