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

  /src/usr.bin/tail/
reverse.c 174 #define BSZ (128 * 1024)
190 (tl->l = malloc(BSZ)) == NULL) {
212 len < BSZ && (ch = getc(fp)) != EOF; ++len)
  /src/usr.bin/fsplit/
fsplit.c 84 #define BSZ 512
85 static char buf[BSZ];
277 for (ptr = buf; ptr < &buf[BSZ]; ) {
289 warnx("Line truncated to %d characters.", BSZ);
  /src/games/gomoku/
gomoku.h 43 * The gomoku 'board' mainly consists of the playing area of BSZ x BSZ spots.
50 #define BSZ 19
51 #define BAREA ((1 + BSZ + 1) * (BSZ + 1) + 1)
57 #define FAREA (2 * BSZ * (BSZ - 4) + 2 * (BSZ - 4) * (BSZ - 4))
71 #define PT(x, y) ((x) + (BSZ + 1) * (y)
    [all...]

Completed in 12 milliseconds