Home
last modified time | relevance | path

Searched refs:maxBufferSize (Results 1 – 10 of 10) sorted by relevance

/external/deqp/modules/glshared/
DglsMemoryStressCase.hpp48 int maxBufferSize; member
61 …Types, int minTextureSize, int maxTextureSize, int minBufferSize, int maxBufferSize, bool write, b…
DglsMemoryStressCase.cpp483 …int dummySize = deMax32(m_config.maxBufferSize, m_config.maxTextureSize*m_config.maxTextureSize*4); in MemObjectAllocator()
676 int size = rnd.getInt(m_config.minBufferSize, m_config.maxBufferSize); in allocateBuffer()
819 …Types, int minTextureSize, int maxTextureSize, int minBufferSize, int maxBufferSize, bool write, b… in MemoryStressCase() argument
831 m_config.maxBufferSize = maxBufferSize; in MemoryStressCase()
/external/perfetto/ui/src/frontend/
Dperf.ts77 get maxBufferSize() { method in RunningStatistics
91 `Avg${stat.maxBufferSize}: ${stat.bufferMean.toFixed(2)}ms`;
/external/deqp/modules/gles3/performance/
Des3pBufferDataUploadTests.cpp1068 …ploadSampleResult<DurationType> >* buckets, int numBuckets, int& minBufferSize, int& maxBufferSize) in bucketizeSamplesUniformly() argument
1071 maxBufferSize = 0; in bucketizeSamplesUniformly()
1079 if (!maxBufferSize || samples[sampleNdx].allocatedSize > maxBufferSize) in bucketizeSamplesUniformly()
1080 maxBufferSize = samples[sampleNdx].allocatedSize; in bucketizeSamplesUniformly()
1085 …= (float)(samples[sampleNdx].allocatedSize - minBufferSize) / (float)(maxBufferSize - minBufferSiz… in bucketizeSamplesUniformly()
1700 int maxBufferSize = 0; in analyzeSampleResults() local
1703 bucketizeSamplesUniformly(samples, &buckets[0], numBuckets, minBufferSize, maxBufferSize); in analyzeSampleResults()
1712 …fferSize + (int)(((float) bucketNdx / (float)numBuckets) * (float)(maxBufferSize - minBufferSiz… in analyzeSampleResults()
1713 …fferSize + (int)(((float)(bucketNdx+1) / (float)numBuckets) * (float)(maxBufferSize - minBufferSiz… in analyzeSampleResults()
2023 const int maxBufferSize = 16777216; in iterate() local
[all …]
/external/lz4/lib/
Dlz4frame.c213 size_t maxBufferSize; member
427 …cctx.maxBufferSize = 5 MB; /* mess with real buffer size to prevent dynamic allocation; works on… in LZ4F_compressFrame()
629 if (cctxPtr->maxBufferSize < requiredBuffSize) { in LZ4F_compressBegin_usingCDict()
630 cctxPtr->maxBufferSize = 0; in LZ4F_compressBegin_usingCDict()
634 cctxPtr->maxBufferSize = requiredBuffSize; in LZ4F_compressBegin_usingCDict()
874 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate()
927 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush()
964 cctxPtr->maxBufferSize = 0; /* reuse HC context */ in LZ4F_compressEnd()
997 size_t maxBufferSize; member
1270 if (dctx->dictSize + dstSize > dctx->maxBufferSize) { /* tmp buffer not large enough */ in LZ4F_updateDict()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferTests.cpp246 const VkDeviceSize maxBufferSize = deAlign64(availableBufferSize >> 1, memReqs.alignment); in bufferCreateAndAllocTest() local
248 size = std::min(size, maxBufferSize); in bufferCreateAndAllocTest()
462 const VkDeviceSize maxBufferSize = getMaxBufferSize(memoryHeap.size, in bufferCreateAndAllocTest() local
467 size = deAlign64(std::min(size, maxBufferSize >> 1), memReqs.memoryRequirements.alignment); in bufferCreateAndAllocTest()
/external/curl/tests/python_dependencies/impacket/
Dsmb3.py1074 …ing = '*', resumeIndex = 0, informationClass = FILENAMES_INFORMATION, maxBufferSize = None, enumRe… argument
1090 if maxBufferSize is None:
1091 maxBufferSize = self._Connection['MaxReadSize']
1092 queryDirectory['OutputBufferLength'] = maxBufferSize
1099 packet['CreditCharge'] = ( 1 + (maxBufferSize - 1) / 65536)
1381 …res = self.queryDirectory( treeId, fileId, ntpath.basename(path), maxBufferSize = 65535, informati…
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c1704 int32_t bufferSize, maxBufferSize; in TestConvertSafeClone() local
1803 maxBufferSize = 0; in TestConvertSafeClone()
1822 if(actualSizes[idx] > maxBufferSize) { in TestConvertSafeClone()
1823 maxBufferSize = actualSizes[idx]; in TestConvertSafeClone()
1897 sizeof(UConverter), maxBufferSize, maxName, (int)U_CNV_SAFECLONE_BUFFERSIZE); in TestConvertSafeClone()
1898 if(maxBufferSize > U_CNV_SAFECLONE_BUFFERSIZE) { in TestConvertSafeClone()
1900 maxBufferSize, maxName, (int)U_CNV_SAFECLONE_BUFFERSIZE); in TestConvertSafeClone()
/external/sonic/doc/
Dindex.md155 samplesRead = sonicReadShortFromStream(stream, outBuffer, maxBufferSize);
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryPipelineBarrierTests.cpp745 vk::VkDeviceSize maxBufferSize,
942 vk::VkDeviceSize maxBufferSize, in Memory() argument
949 , m_maxBufferSize (maxBufferSize) in Memory()
9448 const vk::VkDeviceSize maxBufferSize = bufferUsage != 0 in createCommandsAndAllocateMemory() local
9455 log << TestLog::Message << "Max buffer size: " << maxBufferSize << TestLog::EndMessage; in createCommandsAndAllocateMemory()
9459 if (maxBufferSize == 0 in createCommandsAndAllocateMemory()
9471 …ory(vki, vkd, physicalDevice, device, m_config.size, m_memoryTypeNdx, maxBufferSize, maxImageSize[… in createCommandsAndAllocateMemory()