Lines Matching defs:tocopy
1486 int tocopy;
1498 tocopy = sb->s_blocksize - offset < toread ?
1507 memset(data, 0, tocopy);
1512 memcpy(data, bh->b_data+offset, tocopy);
1516 toread -= tocopy;
1517 data += tocopy;
1531 int tocopy;
1537 tocopy = sb->s_blocksize - offset < towrite ?
1545 if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1554 memcpy(bh->b_data+offset, data, tocopy);
1561 towrite -= tocopy;
1562 data += tocopy;