Searched defs:BLOCKSIZE (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/contrib/vm/
H A Dserial-console89 use constant BLOCKSIZE => 8192; constant
244 sysread ( STDIN, my $data, BLOCKSIZE )
249 if ( $pty->sysread ( my $data, BLOCKSIZE ) ) {
/vbox/src/libs/liblzf-3.4/
H A Dlzf.c53 #define BLOCKSIZE (1024 * 64 - 1) macro
54 #define MAX_BLOCKSIZE BLOCKSIZE
64 static long blocksize = BLOCKSIZE;
461 blocksize = BLOCKSIZE;
500 blocksize = BLOCKSIZE;
/vbox/src/libs/zlib-1.2.6/contrib/untgz/
H A Duntgz.c65 #define BLOCKSIZE 512 macro
91 char buffer[BLOCKSIZE];
394 char fname[BLOCKSIZE];
404 len = gzread(in, &buffer, BLOCKSIZE);
411 if (len != BLOCKSIZE)
506 if (remaining < 0 || remaining >= BLOCKSIZE)
511 len = gzread(in, fname, BLOCKSIZE);
514 if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
529 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE
[all...]

Completed in 47 milliseconds