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

  /src/external/gpl2/mkhybrid/dist/libfile/
file.h 41 #ifndef HOWMANY
42 # define HOWMANY 8192 /* how much of the file to look at */
lfile.c 116 unsigned char buf[HOWMANY+1]; /* one extra for terminating '\0' */
132 * try looking at the first HOWMANY bytes
134 if ((nbytes = read(fd, (char *)buf, HOWMANY)) == -1)
  /src/external/bsd/tradcpp/dist/
utils.h 45 #define HOWMANY(arr) (sizeof(arr)/sizeof((arr)[0]))
main.c 777 static const unsigned num_ignore_options = HOWMANY(ignore_options);
801 static const unsigned num_flag_options = HOWMANY(flag_options);
817 static const unsigned num_act_options = HOWMANY(act_options);
826 static const unsigned num_prefix_options = HOWMANY(prefix_options);
845 static const unsigned num_arg_options = HOWMANY(arg_options);
eval.c 105 static const unsigned num_tokens_2 = HOWMANY(tokens_2);
128 static const unsigned num_tokens_1 = HOWMANY(tokens_1);
directive.c 595 static const unsigned numdirectives = HOWMANY(directives);
  /src/usr.bin/vndcompress/
common.h 92 #define HOWMANY(X, N) (((X) + ((N) - 1))/(N))
93 #define TOOMANY(T, X, N, M) (!ADD_OK(T, X, (N) - 1) || HOWMANY(X, N) > (M))
vndcompress.c 481 S->n_blocks = HOWMANY(S->size, S->blocksize);

Completed in 25 milliseconds