Lines Matching defs:bytes
1754 * @size: number of bytes to zap
1787 * @size: number of bytes to zap
3575 * @holelen: size of prospective hole in bytes. This will be rounded
5813 int bytes, offset;
5838 bytes = 0;
5841 bytes = vma->vm_ops->access(vma, addr, buf,
5844 if (bytes <= 0)
5847 bytes = len;
5849 if (bytes > PAGE_SIZE-offset)
5850 bytes = PAGE_SIZE-offset;
5855 maddr + offset, buf, bytes);
5859 buf, maddr + offset, bytes);
5864 len -= bytes;
5865 buf += bytes;
5866 addr += bytes;
5878 * @len: number of bytes to transfer
5883 * Return: number of bytes copied from source to destination.