Home
last modified time | relevance | path

Searched refs:currentSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DBPSectionOrdererBase.inc182 uint64_t currentSize = 0, cutoffSize = 1;
197 currentSize += D::getSize(*sections[*sectionIdxs.begin()]);
208 if (timestamp >= cutoffTimestamp || currentSize >= cutoffSize) {
210 cutoffSize = 2 * currentSize;
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c1051 U32 currentSize = 0; in ZDICT_trainFromBuffer_unsafe_legacy() local
1053 currentSize += dictList[n].length; in ZDICT_trainFromBuffer_unsafe_legacy()
1054 if (currentSize > targetDictSize) { currentSize -= dictList[n].length; break; } in ZDICT_trainFromBuffer_unsafe_legacy()
1057 dictContentSize = currentSize; in ZDICT_trainFromBuffer_unsafe_legacy()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c60721 i64 currentSize, newSize; local
60725 rc = sqlite3OsFileSize(pPager->fd, &currentSize);
60727 if( rc==SQLITE_OK && currentSize!=newSize ){
60728 if( currentSize>newSize ){
60730 }else if( (currentSize+szPage)<=newSize ){
60733 testcase( (newSize-szPage) == currentSize );
60734 testcase( (newSize-szPage) > currentSize );