HomeSort by relevance Sort by last modified time
    Searched refs:IOBUF_SIZE (Results 1 - 2 of 2) sorted by null

  /external/freetype/builds/amiga/src/base/
ftsystem.c 58 #define IOBUF_SIZE 512
68 UBYTE iobuf[IOBUF_SIZE];
327 if ( count <= IOBUF_SIZE )
330 read_bytes = Read( sysfile->file, sysfile->iobuf, IOBUF_SIZE );
349 ** to do a single big read, and then copy the last IOBUF_SIZE
361 bufsize = ( read_bytes > IOBUF_SIZE ) ? IOBUF_SIZE : read_bytes;
  /external/toybox/toys/other/
bzcat.c 55 #define IOBUF_SIZE 4096
89 char outbuf[IOBUF_SIZE];
120 if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE)))
564 if (bd->outbufPos == IOBUF_SIZE) flush_bunzip_outbuf(bd, out_fd);
612 if (!len) i += IOBUF_SIZE;

Completed in 212 milliseconds