Lines Matching defs:cur
950 const wchar_t *cur = path.Ptr(pos + 1);
955 if (IsString1PrefixedByString2_NoCase_Ascii(cur, ext))
959 ConvertStringToUInt32(cur, &end);
960 if ((size_t)(end - cur) != num)
1527 UInt32 cur = (size < _rem ? size : (UInt32)_rem);
1530 result = _stream->Write(data, cur, &cur);
1532 _crc = CrcUpdate(_crc, data, cur);
1534 *processedSize += cur;
1535 data = (const Byte *)data + cur;
1536 size -= cur;
1537 _rem -= cur;
1544 if (cur == 0)
1603 UInt32 cur = (size < _rem ? size : (UInt32)_rem);
1611 if (cur > kTempBufSize)
1612 cur = kTempBufSize;
1615 const HRESULT result = _inStream->Read(buf, cur, &cur);
1616 _crc = CrcUpdate(_crc, buf, cur);
1617 _rem -= cur;
1621 data = (Byte *)data + cur;
1622 size -= cur;
1624 *processedSize += cur;
1638 if (cur == 0)