Lines Matching defs:total
454 * total number of file nodes if we run out and we can keep doing this until
1709 s64 total = 0;
1764 s64 ret = ntfs_attr_pread(na, offset, size, buf + total);
1775 total += ret;
1778 res = total;
1801 int res, total = 0;
1831 s64 ret = ntfs_attr_pwrite(na, offset, size, buf + total);
1838 total += ret;
1840 res = total;
3728 size_t total;
3932 total = 0;
3936 part = ntfs_attr_pwrite(na, position + total,
3937 size - total, &value[total]);
3939 total += part;
3940 } while ((part > 0) && (total < size));
3942 if ((total != size) || ntfs_attr_pclose(na))