Searched refs:reserved_bytes (Results 1 – 8 of 8) sorted by relevance
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | WriteBatch.java | 40 public WriteBatch(final int reserved_bytes) { in WriteBatch() argument 41 super(newWriteBatch(reserved_bytes)); in WriteBatch() 263 private native static long newWriteBatch(final int reserved_bytes); in newWriteBatch() argument
|
| /rocksdb-6.9/utilities/write_batch_with_index/ |
| D | write_batch_with_index_internal.h | 88 explicit ReadableWriteBatch(size_t reserved_bytes = 0, size_t max_bytes = 0) 89 : WriteBatch(reserved_bytes, max_bytes) {} in WriteBatch() argument
|
| D | write_batch_with_index.cc | 435 explicit Rep(const Comparator* index_comparator, size_t reserved_bytes = 0, in Rep() 437 : write_batch(reserved_bytes, max_bytes), in Rep() 634 const Comparator* default_index_comparator, size_t reserved_bytes, in WriteBatchWithIndex() argument 636 : rep(new Rep(default_index_comparator, reserved_bytes, max_bytes, in WriteBatchWithIndex()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | write_batch.h | 63 explicit WriteBatch(size_t reserved_bytes = 0, size_t max_bytes = 0); 64 explicit WriteBatch(size_t reserved_bytes, size_t max_bytes, size_t ts_sz);
|
| D | c.h | 541 size_t reserved_bytes,
|
| /rocksdb-6.9/db/ |
| D | write_batch.cc | 246 WriteBatch::WriteBatch(size_t reserved_bytes, size_t max_bytes) in WriteBatch() argument 248 rep_.reserve((reserved_bytes > WriteBatchInternal::kHeader) in WriteBatch() 249 ? reserved_bytes in WriteBatch() 254 WriteBatch::WriteBatch(size_t reserved_bytes, size_t max_bytes, size_t ts_sz) in WriteBatch() argument 256 rep_.reserve((reserved_bytes > WriteBatchInternal::kHeader) ? in WriteBatch() 257 reserved_bytes : WriteBatchInternal::kHeader); in WriteBatch()
|
| D | c.cc | 1595 rocksdb_writebatch_wi_t* rocksdb_writebatch_wi_create(size_t reserved_bytes, unsigned char overwrit… in rocksdb_writebatch_wi_create() argument 1597 b->rep = new WriteBatchWithIndex(BytewiseComparator(), reserved_bytes, overwrite_key); in rocksdb_writebatch_wi_create()
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | write_batch_with_index.h | 99 size_t reserved_bytes = 0, bool overwrite_key = false,
|