HelenOS sources

TAR_BLOCK_SIZE     64 boot/generic/include/tar.h _Static_assert(sizeof(tar_header_raw_t) == TAR_BLOCK_SIZE, "Wrong size for tar header.");
TAR_BLOCK_SIZE     83 boot/generic/src/payload.c 	const uint8_t *data = *cstart + TAR_BLOCK_SIZE;
TAR_BLOCK_SIZE     84 boot/generic/src/payload.c 	*cstart += TAR_BLOCK_SIZE + ALIGN_UP(packed_size, TAR_BLOCK_SIZE);
TAR_BLOCK_SIZE    149 boot/generic/src/payload.c 		if (gzip_check(start + TAR_BLOCK_SIZE, packed_size))
TAR_BLOCK_SIZE    150 boot/generic/src/payload.c 			sz += gzip_size(start + TAR_BLOCK_SIZE, packed_size);
TAR_BLOCK_SIZE    154 boot/generic/src/payload.c 		start += TAR_BLOCK_SIZE + ALIGN_UP(packed_size, TAR_BLOCK_SIZE);
TAR_BLOCK_SIZE     77 boot/generic/src/tar.c 	if (end - start < TAR_BLOCK_SIZE) {
TAR_BLOCK_SIZE     88 boot/generic/src/tar.c 	if (end - start < TAR_BLOCK_SIZE + len) {
TAR_BLOCK_SIZE     45 uspace/lib/untar/untar.c 	return (bytes + TAR_BLOCK_SIZE - 1) / TAR_BLOCK_SIZE;
TAR_BLOCK_SIZE     78 uspace/lib/untar/untar.c 		uint8_t block[TAR_BLOCK_SIZE];
TAR_BLOCK_SIZE     79 uspace/lib/untar/untar.c 		size_t actually_read = tar_read(tar, block, TAR_BLOCK_SIZE);
TAR_BLOCK_SIZE     80 uspace/lib/untar/untar.c 		if (actually_read != TAR_BLOCK_SIZE)
TAR_BLOCK_SIZE    106 uspace/lib/untar/untar.c 		uint8_t block[TAR_BLOCK_SIZE];
TAR_BLOCK_SIZE    107 uspace/lib/untar/untar.c 		size_t actually_read = tar_read(tar, block, TAR_BLOCK_SIZE);
TAR_BLOCK_SIZE    108 uspace/lib/untar/untar.c 		if (actually_read != TAR_BLOCK_SIZE) {
TAR_BLOCK_SIZE    115 uspace/lib/untar/untar.c 		size_t to_write = TAR_BLOCK_SIZE;
TAR_BLOCK_SIZE    116 uspace/lib/untar/untar.c 		if (bytes_remaining < TAR_BLOCK_SIZE)
TAR_BLOCK_SIZE    128 uspace/lib/untar/untar.c 		bytes_remaining -= TAR_BLOCK_SIZE;
HelenOS homepage, sources at GitHub