Searched refs:toSize (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Ddecmpfs.c1486 decmpfs_decompress_file(vnode_t vp, decmpfs_cnode *cp, off_t toSize, int truncate_okay, int skiplock) argument
1551 if (toSize == -1)
1552 toSize = hdr->uncompressed_size;
1554 if (toSize == 0) {
1557 } else if ((uint64_t)toSize > hdr->uncompressed_size) {
1559 toSize = hdr->uncompressed_size;
1562 allocSize = MIN(64*1024, toSize);
1576 remaining = toSize;
1619 if (offset != toSize) {
1620 ErrorLog("file decompressed to %lld instead of %lld\n", offset, toSize);
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Ddecmpfs.h120 int decmpfs_decompress_file(vnode_t vp, decmpfs_cnode *cp, off_t toSize, int truncate_okay, int skiplock); /* if toSize == -1, decompress the entire file */

Completed in 26 milliseconds