Home
last modified time | relevance | path

Searched refs:rStart_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/commonlibrary/c_utils/base/src/
H A Dmapped_file.cpp241 rStart_ = reinterpret_cast<char*>(data); in Map()
243 rEnd_ = rStart_ + (RoundSize(size_) - 1LL); in Map()
245 data_ = rStart_; in Map()
267 rStart_ = nullptr; in Unmap()
343 rStart_ = reinterpret_cast<char*>(newData); in Resize()
346 rEnd_ = rStart_ + RoundSize(size_) - 1; in Resize()
348 data_ = rStart_; in Resize()
402 hint_ = rStart_; in TurnNext()
442 rStart_ = nullptr; in Reset()
492 : data_(other.data_), rStart_(other.rStart_), rEnd_(other.rEnd_), isMapped_(other.isMapped_), in MappedFile()
[all …]
/ohos5.0/commonlibrary/c_utils/base/include/
H A Dmapped_file.h103 return rStart_; in RegionStart()
162 char* rStart_ = nullptr; variable