Home
last modified time | relevance | path

Searched refs:dst_ (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/port/win/
Dio_win.cc263 dst_ = nullptr; in UnmapCurrentRegion()
333 dst_ = mapped_begin_; in MapNewRegion()
357 dst_(nullptr), in WinMmapFile()
403 memcpy(dst_, src, n); in Append()
404 dst_ += n; in Append()
412 size_t bytesToPad = Roundup(size_t(dst_), page_size_) - size_t(dst_); in Append()
414 memset(dst_, 0, bytesToPad); in Append()
479 if (dst_ > last_sync_) { in Sync()
481 assert(dst_); in Sync()
483 assert(dst_ < mapped_end_); in Sync()
[all …]
Dio_win.h172 char* dst_; // Where to write next (in range [mapped_begin_,mapped_end_]) variable
/rocksdb-6.9/env/
Dio_posix.cc890 dst_ = nullptr; in UnmapCurrentRegion()
928 dst_ = base_; in MapNewRegion()
937 if (dst_ == last_sync_) { in Msync()
944 last_sync_ = dst_; in Msync()
960 dst_(nullptr), in PosixMmapFile()
985 assert(base_ <= dst_); in Append()
986 assert(dst_ <= limit_); in Append()
1001 assert(dst_); in Append()
1002 memcpy(dst_, src, n); in Append()
1003 dst_ += n; in Append()
[all …]
Dio_posix.h299 char* dst_; // Where to write next (in range [base_,limit_]) variable