Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:remains

1650                   Int remains = vev->result;
1655 if (nReadThisBuf > remains) nReadThisBuf = remains;
1657 remains -= nReadThisBuf;
1658 if (remains < 0) VG_(core_panic)("io_getevents(PREADV): remains < 0");
3547 Int remains = RES;
3552 if (nReadThisBuf > remains) nReadThisBuf = remains;
3554 remains -= nReadThisBuf;
3555 if (remains < 0) VG_(core_panic)("preadv: remains < 0");
3628 UInt remains = RES;
3631 UInt nReadThisBuf = vec[i].iov_len <= remains ?
3632 vec[i].iov_len : remains;
3634 remains -= nReadThisBuf;