Home
last modified time | relevance | path

Searched refs:BSONObjMaxInternalSize (Results 1 – 9 of 9) sorted by relevance

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/query/
H A Dquery_knobs.cpp100 if (newVal < BSONObjMaxInternalSize) { in __anon608281350302()
103 std::to_string(BSONObjMaxInternalSize)); in __anon608281350302()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/mmap_v1/
H A Ddur.cpp155 MONGO_STATIC_ASSERT(UncommittedBytesLimit > BSONObjMaxInternalSize * 3);
156 MONGO_STATIC_ASSERT(sizeof(void*) == 4 || UncommittedBytesLimit > BSONObjMaxInternalSize * 6);
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/scripting/mozjs/
H A Dobjectwrapper.cpp541 << BSONObjMaxInternalSize in toBSON()
543 sizeWithEOO <= BSONObjMaxInternalSize); in toBSON()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/write_ops/
H A Dbatch_write_op.cpp68 const int kEstUpdateOverheadBytes = (BSONObjMaxInternalSize - BSONObjMaxUserSize) / 100;
69 const int kEstDeleteOverheadBytes = (BSONObjMaxInternalSize - BSONObjMaxUserSize) / 100;
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/util/net/
H A Dmessage.h313 if (getLen() <= 0 || getLen() > (4 * BSONObjMaxInternalSize)) in valid()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/bson/util/
H A Dbuilder.h75 const int BSONObjMaxInternalSize = BSONObjMaxUserSize + (16 * 1024); variable
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/bson/
H A Dbsonobj.h102 constexpr static int MaxSize = BSONObjMaxInternalSize;
H A Dbsonobj.cpp95 << "Size must be between 0 and " << BSONObjMaxInternalSize << "(" in _assertInvalid()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/wiredtiger/
H A Dwiredtiger_record_store.cpp153 unsigned long long numStones = maxSize / BSONObjMaxInternalSize; in OplogStones()
443 unsigned long long numStones = maxSize / BSONObjMaxInternalSize; in adjust()