Home
last modified time | relevance | path

Searched refs:estSize (Results 1 – 25 of 62) sorted by relevance

123

/dports/graphics/libbpg/libbpg-0.9.8/x265/source/encoder/
H A Dnal.cpp178 uint32_t estSize = 0; in serializeSubstreams() local
180 estSize += streams[s].getNumberOfWrittenBytes(); in serializeSubstreams()
181 estSize += estSize >> 1; in serializeSubstreams()
183 if (estSize > m_extraAllocSize) in serializeSubstreams()
185 uint8_t *temp = X265_MALLOC(uint8_t, estSize); in serializeSubstreams()
190 m_extraAllocSize = estSize; in serializeSubstreams()
/dports/multimedia/handbrake/x265_3.5/source/encoder/
H A Dnal.cpp179 uint32_t estSize = 0; in serializeSubstreams() local
181 estSize += streams[s].getNumberOfWrittenBytes(); in serializeSubstreams()
182 estSize += estSize >> 1; in serializeSubstreams()
184 if (estSize > m_extraAllocSize) in serializeSubstreams()
186 uint8_t *temp = X265_MALLOC(uint8_t, estSize); in serializeSubstreams()
191 m_extraAllocSize = estSize; in serializeSubstreams()
/dports/multimedia/x265/source/encoder/
H A Dnal.cpp179 uint32_t estSize = 0; in serializeSubstreams() local
181 estSize += streams[s].getNumberOfWrittenBytes(); in serializeSubstreams()
182 estSize += estSize >> 1; in serializeSubstreams()
184 if (estSize > m_extraAllocSize) in serializeSubstreams()
186 uint8_t *temp = X265_MALLOC(uint8_t, estSize); in serializeSubstreams()
191 m_extraAllocSize = estSize; in serializeSubstreams()
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/cleaner/
H A DUtilizationCalculator.java749 estTotalSize += avg.estSize; in updateObsoleteLNSizeCorrectionFactor()
832 final int estSize; field in UtilizationCalculator.AverageSize
835 AverageSize(int size, int count, int estSize, int estCount) { in AverageSize() argument
838 this.estSize = estSize; in AverageSize()
849 estSize == o.estSize && estCount == o.estCount; in equals()
854 return size + count + estSize + estCount; in hashCode()
860 " estSize=" + estSize + " estCount=" + estCount; in toString()
H A DCleanerLogSummary.java62 size += LogUtils.getPackedIntLogSize(avg.estSize); in getLogSize()
75 LogUtils.writePackedInt(logBuffer, avg.estSize); in writeToLog()
87 final int estSize = LogUtils.readPackedInt(logBuffer); in readFromLog() local
90 (new AverageSize(size, count, estSize, estCount)); in readFromLog()
138 sb.append(avg.estSize); in dumpLog()
/dports/java/jflex/jflex-1.8.1/src/main/java/jflex/core/
H A DNFA.java78 private final int estSize; field in NFA
90 public NFA(int numInput, int estSize) { in NFA() argument
92 this.estSize = estSize; in NFA()
94 epsilon = new StateSet[estSize]; in NFA()
95 action = new Action[estSize]; in NFA()
96 isFinal = new boolean[estSize]; in NFA()
97 table = new StateSet[estSize][numInput]; in NFA()
317 else table[start][input] = new StateSet(estSize, dest); in addTransition()
326 else epsilon[start] = new StateSet(estSize, dest); in addEpsilonTransition()
/dports/audio/audiocd-kio/audiocd-kio-21.12.3/
H A Daudiocd.cpp1025 unsigned long estSize = (processed / cur) * end; in paranoiaRead() local
1029 unsigned long guess = (long)((100 / (float)size) * estSize); in paranoiaRead()
1030 if ((guess > 97 && guess < 103) || estSize == 0) { in paranoiaRead()
1038 diff = estSize - lastSize; in paranoiaRead()
1048 if (lastSize < estSize) { in paranoiaRead()
1051 totalSize(estSize + diff); in paranoiaRead()
1052 lastSize = estSize + diff; in paranoiaRead()
1059 if (estSize < low) { in paranoiaRead()
1062 totalSize(estSize); in paranoiaRead()
1063 lastSize = estSize; in paranoiaRead()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/write_ops/
H A Dbatch_write_op.cpp174 auto estSize = item.getUpdate().getQ().objsize() + item.getUpdate().getU().objsize() + in getWriteSizeBytes() local
176 dassert(estSize >= item.getUpdate().toBSON().objsize()); in getWriteSizeBytes()
177 return estSize; in getWriteSizeBytes()
182 auto estSize = item.getDelete().getQ().objsize() + collationSize + kEstDeleteOverheadBytes; in getWriteSizeBytes() local
183 dassert(estSize >= item.getDelete().toBSON().objsize()); in getWriteSizeBytes()
184 return estSize; in getWriteSizeBytes()
/dports/games/iortcw/iortcw-1.51c/MP/code/renderer/
H A Dtr_image.c176 int estSize; in R_ImageList_f() local
187 estSize /= 2; in R_ImageList_f()
204 estSize /= 2; in R_ImageList_f()
217 estSize /= 2; in R_ImageList_f()
227 estSize *= 4; in R_ImageList_f()
243 estSize *= 3; in R_ImageList_f()
251 estSize *= 2; in R_ImageList_f()
258 estSize *= 3; in R_ImageList_f()
264 estSize *= 4; in R_ImageList_f()
275 estSize *= 2; in R_ImageList_f()
[all …]
/dports/games/iortcw/iortcw-1.51c/SP/code/renderer/
H A Dtr_image.c177 int estSize; in R_ImageList_f() local
188 estSize /= 2; in R_ImageList_f()
205 estSize /= 2; in R_ImageList_f()
218 estSize /= 2; in R_ImageList_f()
228 estSize *= 4; in R_ImageList_f()
244 estSize *= 3; in R_ImageList_f()
252 estSize *= 2; in R_ImageList_f()
259 estSize *= 3; in R_ImageList_f()
265 estSize *= 4; in R_ImageList_f()
276 estSize *= 2; in R_ImageList_f()
[all …]
/dports/graphics/exiv2/exiv2-0.27.5-Source/xmpsdk/src/
H A DXMPUtils.cpp480 size_t estSize = 0; in EstimateSizeForJPEG() local
486 if ( includeName ) estSize += (nameSize + 3); // Assume attribute form. in EstimateSizeForJPEG()
487 estSize += xmpNode->value.size(); in EstimateSizeForJPEG()
492 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
494 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
495 estSize += arraySize * (8 + 9); // The rdf:li tags. in EstimateSizeForJPEG()
497 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
503 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
504 estSize += 25; // The rdf:parseType="Resource" attribute. in EstimateSizeForJPEG()
507 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
[all …]
/dports/graphics/dcp2icc/dcp2icc-0.1/XMP-Toolkit-SDK-4.4.2/source/XMPCore/
H A DXMPUtils.cpp465 size_t estSize = 0; in EstimateSizeForJPEG() local
471 if ( includeName ) estSize += (nameSize + 3); // Assume attribute form. in EstimateSizeForJPEG()
472 estSize += xmpNode->value.size(); in EstimateSizeForJPEG()
477 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
479 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
480 estSize += arraySize * (8 + 9); // The rdf:li tags. in EstimateSizeForJPEG()
482 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
488 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
489 estSize += 25; // The rdf:parseType="Resource" attribute. in EstimateSizeForJPEG()
492 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
[all …]
/dports/graphics/photoflow/PhotoFlow-8472024f/src/external/exiv2/xmpsdk/src/
H A DXMPUtils.cpp465 size_t estSize = 0; in EstimateSizeForJPEG() local
471 if ( includeName ) estSize += (nameSize + 3); // Assume attribute form. in EstimateSizeForJPEG()
472 estSize += xmpNode->value.size(); in EstimateSizeForJPEG()
477 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
479 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
480 estSize += arraySize * (8 + 9); // The rdf:li tags. in EstimateSizeForJPEG()
482 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
488 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
489 estSize += 25; // The rdf:parseType="Resource" attribute. in EstimateSizeForJPEG()
492 estSize += EstimateSizeForJPEG ( xmpNode->children[i] ); in EstimateSizeForJPEG()
[all …]
/dports/games/iortcw/iortcw-1.51c/MP/code/rend2/
H A Dtr_image.c177 int estSize; in R_ImageList_f() local
187 estSize /= 2; in R_ImageList_f()
204 estSize /= 2; in R_ImageList_f()
209 estSize /= 2; in R_ImageList_f()
222 estSize /= 2; in R_ImageList_f()
227 estSize *= 8; in R_ImageList_f()
232 estSize *= 8; in R_ImageList_f()
239 estSize *= 4; in R_ImageList_f()
251 estSize *= 3; in R_ImageList_f()
257 estSize *= 2; in R_ImageList_f()
[all …]
/dports/games/iortcw/iortcw-1.51c/SP/code/rend2/
H A Dtr_image.c177 int estSize; in R_ImageList_f() local
187 estSize /= 2; in R_ImageList_f()
204 estSize /= 2; in R_ImageList_f()
209 estSize /= 2; in R_ImageList_f()
222 estSize /= 2; in R_ImageList_f()
227 estSize *= 8; in R_ImageList_f()
232 estSize *= 8; in R_ImageList_f()
239 estSize *= 4; in R_ImageList_f()
251 estSize *= 3; in R_ImageList_f()
257 estSize *= 2; in R_ImageList_f()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/dngwriter/extra/xmp_sdk/XMPCore/source/
H A DXMPUtils.cpp1609 size_t estSize = 0; in EstimateSizeForJPEG() local
1616 estSize += xmpNode->value.size(); in EstimateSizeForJPEG()
1621 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
1623 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
1632 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
1641 return estSize; in EstimateSizeForJPEG()
1657 size_t estSize = 0; in EstimateSizeForJPEG() local
1674 if (includeName) estSize += (2 * nameSize + 5); in EstimateSizeForJPEG()
1677 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
1689 if (includeName) estSize += (2 * nameSize + 5); in EstimateSizeForJPEG()
[all …]
/dports/textproc/exempi/exempi-2.5.2/XMPCore/source/
H A DXMPUtils.cpp1600 size_t estSize = 0; in EstimateSizeForJPEG() local
1607 estSize += xmpNode->value.size(); in EstimateSizeForJPEG()
1612 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
1614 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
1623 if ( includeName ) estSize += (2*nameSize + 5); in EstimateSizeForJPEG()
1632 return estSize; in EstimateSizeForJPEG()
1648 size_t estSize = 0; in EstimateSizeForJPEG() local
1665 if (includeName) estSize += (2 * nameSize + 5); in EstimateSizeForJPEG()
1668 estSize += 9 + 10; // The rdf:Xyz tags. in EstimateSizeForJPEG()
1680 if (includeName) estSize += (2 * nameSize + 5); in EstimateSizeForJPEG()
[all …]
/dports/textproc/redisearch16/RediSearch-1.6.16/src/util/
H A Dkhtable.c12 void KHTable_Init(KHTable *table, const KHTableProcs *procs, void *ctx, size_t estSize) { in KHTable_Init() argument
16 if (*p > estSize) { in KHTable_Init()
H A Dkhtable.h92 void KHTable_Init(KHTable *table, const KHTableProcs *procs, void *ctx, size_t estSize);
/dports/textproc/redisearch/RediSearch-2.2.5/src/util/
H A Dkhtable.c12 void KHTable_Init(KHTable *table, const KHTableProcs *procs, void *ctx, size_t estSize) { in KHTable_Init() argument
16 if (*p > estSize) { in KHTable_Init()
/dports/textproc/redisearch20/RediSearch-2.0.15/src/util/
H A Dkhtable.c12 void KHTable_Init(KHTable *table, const KHTableProcs *procs, void *ctx, size_t estSize) { in KHTable_Init() argument
16 if (*p > estSize) { in KHTable_Init()
H A Dkhtable.h92 void KHTable_Init(KHTable *table, const KHTableProcs *procs, void *ctx, size_t estSize);
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/
H A DvtkIncrementalPointLocator.h91 vtkIdType estSize ) = 0;
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/
H A DvtkIncrementalPointLocator.h93 vtkIdType estSize ) = 0;
/dports/math/vtk9/VTK-9.1.0/Common/DataModel/
H A DvtkIncrementalPointLocator.h91 virtual int InitPointInsertion(vtkPoints* newPts, const double bounds[6], vtkIdType estSize) = 0;

123