Searched refs:curSize (Results 1 - 1 of 1) sorted by relevance

/gem5/src/base/
H A Dchunk_generator.hh65 unsigned curSize; member in class:ChunkGenerator
106 curSize = std::min(totalSize, left_in_chunk);
107 sizeLeft = totalSize - curSize;
113 unsigned size() const { return curSize; }
123 bool done() const { return (curSize == 0); }
140 curSize = 0;
145 curSize = std::min(sizeLeft, chunkSize);
146 sizeLeft -= curSize;
147 nextAddr += curSize;

Completed in 3 milliseconds