Home
last modified time | relevance | path

Searched refs:maxElems (Results 1 – 25 of 113) sorted by relevance

12345

/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/joblist/
H A Dtdriver-hashjoin.cpp95 uint64_t maxElems = 32655; in HashJoin_1() local
152 uint64_t maxElems = 100; in HashJoin_2() local
194 uint64_t maxElems = 100; in HashJoin_3() local
235 uint64_t maxElems = 32655; in HashJoin_4() local
294 uint64_t maxElems = 32655; in HashJoin_5() local
345 uint64_t maxElems = 32655; in LeftOuterJoin_1() local
433 el2.first = idx + maxElems; in LeftOuterJoin_2()
497 el2.first = idx + maxElems; in LeftOuterJoin_3()
561 el2.first = idx + maxElems; in LeftOuterJoin_4()
599 uint64_t maxElems = 32655; in RightOuterJoin_1() local
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/joblist/
H A Dtdriver-hashjoin.cpp95 uint64_t maxElems = 32655; in HashJoin_1() local
152 uint64_t maxElems = 100; in HashJoin_2() local
194 uint64_t maxElems = 100; in HashJoin_3() local
235 uint64_t maxElems = 32655; in HashJoin_4() local
294 uint64_t maxElems = 32655; in HashJoin_5() local
345 uint64_t maxElems = 32655; in LeftOuterJoin_1() local
433 el2.first = idx + maxElems; in LeftOuterJoin_2()
497 el2.first = idx + maxElems; in LeftOuterJoin_3()
561 el2.first = idx + maxElems; in LeftOuterJoin_4()
599 uint64_t maxElems = 32655; in RightOuterJoin_1() local
[all …]
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/BBGE/
H A DMemoryAllocatorSmallBlock.cpp51 blk->maxElems, blk->maxElems - blk->freeElems, blk->elemSize); in ~SmallBlockAllocator()
98 blk->maxElems = elemCount; in _AllocBlock()
113 DD("SBA: _FreeBlock: elemCount = %u, elemSize = %u", blk->maxElems, blk->elemSize); in _FreeBlock()
139 elemsPerBlock = blk->maxElems * 2; // new block is double the size in _AppendBlock()
194 if(ptr >= pp + (maxElems * elemSize)) in contains()
203 ASSERT(freeElems < maxElems); // make sure the block is not all free in freeElem()
270 if(blk->freeElems == blk->maxElems) in _Free()
H A DMemoryAllocatorSmallBlock.h42 unsigned short maxElems; member
61 return getPtr() + (maxElems * elemSize); in getEndPtr()
65 return getPtr() + (maxElems * elemSize); in getEndPtr()
/dports/benchmarks/vegeta/vegeta-12.8.4/vendor/pgregory.net/rapid/
H A Dstrings.go158 func StringOfN(elem *Generator, minElems int, maxElems int, maxLen int) *Generator {
159 assertValidRange(minElems, maxElems)
161 …maxLen < 0 || maxLen >= maxElems, "maximum length (%v) should not be less than maximum number of e…
166 maxElems: maxElems,
174 maxElems int member
180 if g.minElems < 0 && g.maxElems < 0 && g.maxLen < 0 {
183 …return fmt.Sprintf("StringN(minRunes=%v, maxRunes=%v, maxLen=%v)", g.minElems, g.maxElems, g.maxLe…
186 if g.minElems < 0 && g.maxElems < 0 && g.maxLen < 0 {
189 …ntf("StringOfN(%v, minElems=%v, maxElems=%v, maxLen=%v)", g.elem, g.minElems, g.maxElems, g.maxLen)
199 repeat := newRepeat(g.minElems, g.maxElems, -1)
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dscrypt.cpp243 const word128 maxElems = static_cast<word128>(SIZE_MAX); in ValidateParameters() local
244 bool bLimit = (maxElems >= static_cast<word128>(cost) * blockSize * 128U); in ValidateParameters()
245 bool xyLimit = (maxElems >= static_cast<word128>(parallelization) * blockSize * 128U); in ValidateParameters()
246 bool vLimit = (maxElems >= static_cast<word128>(blockSize) * 256U + 64U); in ValidateParameters()
248 const word64 maxElems = static_cast<word64>(SIZE_MAX); in ValidateParameters() local
249 bool bLimit = (blockSize < maxElems / 128U / cost); in ValidateParameters()
250 bool xyLimit = (blockSize < maxElems / 128U / parallelization); in ValidateParameters()
251 bool vLimit = (blockSize < (maxElems - 64U) / 256U); in ValidateParameters()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dscrypt.cpp243 const word128 maxElems = static_cast<word128>(SIZE_MAX); in ValidateParameters() local
244 bool bLimit = (maxElems >= static_cast<word128>(cost) * blockSize * 128U); in ValidateParameters()
245 bool xyLimit = (maxElems >= static_cast<word128>(parallelization) * blockSize * 128U); in ValidateParameters()
246 bool vLimit = (maxElems >= static_cast<word128>(blockSize) * 256U + 64U); in ValidateParameters()
248 const word64 maxElems = static_cast<word64>(SIZE_MAX); in ValidateParameters() local
249 bool bLimit = (blockSize < maxElems / 128U / cost); in ValidateParameters()
250 bool xyLimit = (blockSize < maxElems / 128U / parallelization); in ValidateParameters()
251 bool vLimit = (blockSize < (maxElems - 64U) / 256U); in ValidateParameters()
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dscrypt.cpp243 const word128 maxElems = static_cast<word128>(SIZE_MAX); in ValidateParameters() local
244 bool bLimit = (maxElems >= static_cast<word128>(cost) * blockSize * 128U); in ValidateParameters()
245 bool xyLimit = (maxElems >= static_cast<word128>(parallelization) * blockSize * 128U); in ValidateParameters()
246 bool vLimit = (maxElems >= static_cast<word128>(blockSize) * 256U + 64U); in ValidateParameters()
248 const word64 maxElems = static_cast<word64>(SIZE_MAX); in ValidateParameters() local
249 bool bLimit = (blockSize < maxElems / 128U / cost); in ValidateParameters()
250 bool xyLimit = (blockSize < maxElems / 128U / parallelization); in ValidateParameters()
251 bool vLimit = (blockSize < (maxElems - 64U) / 256U); in ValidateParameters()
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dscrypt.cpp243 const word128 maxElems = static_cast<word128>(SIZE_MAX); in ValidateParameters() local
244 bool bLimit = (maxElems >= static_cast<word128>(cost) * blockSize * 128U); in ValidateParameters()
245 bool xyLimit = (maxElems >= static_cast<word128>(parallelization) * blockSize * 128U); in ValidateParameters()
246 bool vLimit = (maxElems >= static_cast<word128>(blockSize) * 256U + 64U); in ValidateParameters()
248 const word64 maxElems = static_cast<word64>(SIZE_MAX); in ValidateParameters() local
249 bool bLimit = (blockSize < maxElems / 128U / cost); in ValidateParameters()
250 bool xyLimit = (blockSize < maxElems / 128U / parallelization); in ValidateParameters()
251 bool vLimit = (blockSize < (maxElems - 64U) / 256U); in ValidateParameters()
/dports/audio/audacity/audacity-Audacity-3.1.3/lib-src/soundtouch/source/SoundStretch/
H A DWavFile.h191 int read(unsigned char *buffer, int maxElems);
199 int maxElems ///< Size of 'buffer' array (number of array elements).
209 int maxElems ///< Size of 'buffer' array (number of array elements).
H A DWavFile.cpp271 int WavInFile::read(unsigned char *buffer, int maxElems) in read() argument
283 numBytes = maxElems; in read()
300 int WavInFile::read(short *buffer, int maxElems) in read() argument
312 unsigned char *temp = (unsigned char*)getConvBuffer(maxElems); in read()
315 numElems = read(temp, maxElems); in read()
330 numBytes = maxElems * 2; in read()
364 int WavInFile::read(float *buffer, int maxElems) in read() argument
383 numBytes = maxElems * bytesPerSample; in read()
/dports/audio/soundtouch/soundtouch-2.3.1/source/SoundStretch/
H A DWavFile.h193 int read(unsigned char *buffer, int maxElems);
201 int maxElems ///< Size of 'buffer' array (number of array elements).
211 int maxElems ///< Size of 'buffer' array (number of array elements).
H A DWavFile.cpp263 int WavInFile::read(unsigned char *buffer, int maxElems) in read() argument
275 numBytes = maxElems; in read()
292 int WavInFile::read(short *buffer, int maxElems) in read() argument
304 unsigned char *temp = (unsigned char*)getConvBuffer(maxElems); in read()
307 numElems = read(temp, maxElems); in read()
322 numBytes = maxElems * 2; in read()
356 int WavInFile::read(float *buffer, int maxElems) in read() argument
375 numBytes = maxElems * bytesPerSample; in read()
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/util/
H A DRefVectorOf.c36 RefVectorOf<TElem>::RefVectorOf(const XMLSize_t maxElems, in RefVectorOf() argument
39 : BaseRefVectorOf<TElem>(maxElems, adoptElems, manager) in RefVectorOf()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/util/
H A DRefVectorOf.c36 RefVectorOf<TElem>::RefVectorOf(const XMLSize_t maxElems, in RefVectorOf() argument
39 : BaseRefVectorOf<TElem>(maxElems, adoptElems, manager) in RefVectorOf()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp288 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
293 if (minElems || maxElems) { in buildQTypeFromMinMax()
295 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
298 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
301 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp290 auto maxElems = maxAttr.dyn_cast<DenseFPElementsAttr>(); in buildQTypeFromMinMax() local
295 if (minElems || maxElems) { in buildQTypeFromMinMax()
297 if (minElems.getNumElements() != maxElems.getNumElements()) in buildQTypeFromMinMax()
300 max.reserve(maxElems.getNumElements()); in buildQTypeFromMinMax()
303 for (auto i : maxElems) in buildQTypeFromMinMax()
/dports/math/vtk8/VTK-8.2.0/IO/XML/
H A DvtkXMLPartitionedDataSetReader.cxx71 unsigned int maxElems = element->GetNumberOfNestedElements(); in ReadComposite() local
72 for (unsigned int cc=0; cc < maxElems; ++cc) in ReadComposite()
H A DvtkXMLMultiBlockDataReader.cxx118 unsigned int maxElems = element->GetNumberOfNestedElements(); in ReadComposite() local
119 for (unsigned int cc=0; cc < maxElems; ++cc) in ReadComposite()
227 unsigned int maxElems = element->GetNumberOfNestedElements(); in FillMetaData() local
228 for (unsigned int cc=0; cc < maxElems; ++cc) in FillMetaData()
/dports/math/vtk9/VTK-9.1.0/IO/XML/
H A DvtkXMLPartitionedDataSetReader.cxx68 unsigned int maxElems = element->GetNumberOfNestedElements(); in ReadComposite() local
69 for (unsigned int cc = 0; cc < maxElems; ++cc) in ReadComposite()

12345