Lines Matching defs:tocopy
742 int tocopy;
754 tocopy = sb->s_blocksize - offset < toread ?
763 memset(data, 0, tocopy);
768 memcpy(data, bh->b_data+offset, tocopy);
772 toread -= tocopy;
773 data += tocopy;
787 int tocopy;
794 tocopy = sb->s_blocksize - offset < towrite ?
802 if (offset || tocopy != sb->s_blocksize)
811 memcpy(bh->b_data+offset, data, tocopy);
818 towrite -= tocopy;
819 data += tocopy;