Lines Matching defs:total
1689 size_t total = payload->len;
1698 vec[i].iov_len = min_t(size_t, total, first->iov_len);
1699 total -= vec[i].iov_len;
1703 while (total) {
1705 vec[i].iov_len = min_t(size_t, total, PAGE_SIZE);
1706 total -= vec[i].iov_len;
1721 * @total: total length of the pathname argument
1728 void *p, size_t total)
1733 result = kmalloc(total + 1, GFP_KERNEL);
1738 remaining = total;
1740 len = min_t(size_t, total, first->iov_len);
1758 if (strlen(result) != total) {