Lines Matching refs:mOffset
379 inline constexpr uint32_t offset() const { return mOffset; } in offset()
380 inline constexpr uint32_t endOffset() const { return mOffset + mSize; } in endOffset()
384 return C2Segment(mOffset, mSize); in C2Segment()
391 mOffset(c2_min(offset, capacity())), in _C2LinearRangeAspect()
392 mSize(c2_min(size, capacity() - mOffset)) { in _C2LinearRangeAspect()
399 mOffset(other.offset()), in _C2LinearRangeAspect()
406 mOffset(0), in _C2LinearRangeAspect()
413 mOffset(c2_min(offset, capacity())), in _C2LinearRangeAspect()
414 mSize(c2_min(size, capacity() - mOffset)) { in _C2LinearRangeAspect()
420 mOffset(c2_min(c2_max(offset, parent == nullptr ? 0 : parent->offset()), capacity())), in _C2LinearRangeAspect()
421 … mSize(std::min(c2_min(size, parent == nullptr ? 0 : parent->size()), capacity() - mOffset)) { in _C2LinearRangeAspect()
428 c2_min(c2_max(offset, mOffset), capacity()) - mOffset, in childRange()
429 c2_min(c2_min(size, mSize), capacity() - c2_min(c2_max(offset, mOffset), capacity()))); in childRange()
434 uint32_t mOffset; variable
493 if (offset > mOffset + mSize) { in setOffset()
496 mSize = mOffset + mSize - offset; in setOffset()
498 mOffset = offset; in setOffset()
510 if (size > capacity() - mOffset) { in setSize()
537 mSize = c2_min(size, capacity() - mOffset); in setSize_be()
1055 uint32_t mOffset; /**< offset into the linear block backing this read view */ variable