Lines Matching refs:cache_bytes
79 static int cache_bytes = 0, cache_size = 0; variable
322 while(cache_bytes >= SQUASHFS_METADATA_SIZE) { in get_xattr_space()
339 cache_bytes - SQUASHFS_METADATA_SIZE); in get_xattr_space()
340 cache_bytes -= SQUASHFS_METADATA_SIZE; in get_xattr_space()
346 data_space = cache_size - cache_bytes; in get_xattr_space()
357 *disk = ((long long) xattr_bytes << 16) | cache_bytes; in get_xattr_space()
358 cache_bytes += req_size; in get_xattr_space()
359 return data_cache + cache_bytes - req_size; in get_xattr_space()
502 while(cache_bytes) { in write_xattrs()
512 avail_bytes = cache_bytes > SQUASHFS_METADATA_SIZE ? in write_xattrs()
513 SQUASHFS_METADATA_SIZE : cache_bytes; in write_xattrs()
520 cache_bytes -= avail_bytes; in write_xattrs()
792 sdata_cache = malloc(cache_bytes); in save_xattrs()
796 memcpy(sdata_cache, data_cache, cache_bytes); in save_xattrs()
797 scache_bytes = cache_bytes; in save_xattrs()
815 cache_bytes = scache_bytes; in restore_xattrs()