HomeSort by: relevance | last modified time | path
    Searched defs:BUF_SIZE (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.bin/fmt/
buffer.h 38 #define BUF_SIZE BUFSIZ
48 buf->ptr = buf->bptr = calloc(BUF_SIZE, sizeof(*buf->ptr));
51 buf->eptr = buf->ptr + BUF_SIZE;
65 (minsize > BUF_SIZE ? minsize : BUF_SIZE);
  /src/sbin/iscsictl/
iscsic_globals.h 61 #define BUF_SIZE 8192
76 extern uint8_t buf[BUF_SIZE]; /* buffer for daemon comm and driver I/O */
  /src/dist/pf/sbin/pfctl/
pfctl_radix.c 51 #define BUF_SIZE 256
55 static int pfr_next_token(char buf[BUF_SIZE], FILE *);
562 char buf[BUF_SIZE];
585 pfr_next_token(char buf[BUF_SIZE], FILE *fp)
609 if (i < BUF_SIZE)
613 if (i >= BUF_SIZE) {
  /src/bin/ksh/
shf.c 807 #define BUF_SIZE 128
  /src/usr.sbin/npf/npfctl/
npf_show.c 628 #define BUF_SIZE 40
636 char buf[BUF_SIZE];
680 ctx->fpos += fprintf(ctx->fp, "user %s ", print_guid(buf, rid, BUF_SIZE));
684 ctx->fpos += fprintf(ctx->fp, "group %s ", print_guid(buf, rid, BUF_SIZE));
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitLir.c 107 #define BUF_SIZE 4096
383 compiler->buf = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, allocator_data);
534 if (compiler->buf->used_size + size <= (BUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory))) {
539 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, compiler->allocator_data);

Completed in 14 milliseconds