Home
last modified time | relevance | path

Searched refs:maxBufferSize (Results 1 – 8 of 8) 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/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.c174 size_t maxBufferSize; member
323 …cctxI.maxBufferSize = 5 MB; /* mess with real buffer size to prevent allocation; works because a… in LZ4F_compressFrame()
446 if (cctxPtr->maxBufferSize < requiredBuffSize) { in LZ4F_compressBegin()
447 cctxPtr->maxBufferSize = requiredBuffSize; in LZ4F_compressBegin()
627 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate()
678 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush()
715 cctxPtr->maxBufferSize = 0; /* reuse HC context */ in LZ4F_compressEnd()
736 size_t maxBufferSize; member
903 if (bufferNeeded > dctxPtr->maxBufferSize) { /* tmp buffers too small */ in LZ4F_decodeHeader()
908 dctxPtr->maxBufferSize = 0; in LZ4F_decodeHeader()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferTests.cpp349 const VkDeviceSize maxBufferSize = deAlign64(availableBufferSize >> 1, memReqs.alignment); in bufferCreateAndAllocTest() local
351 size = std::min(size, maxBufferSize); in bufferCreateAndAllocTest()
568 …const VkDeviceSize maxBufferSize = deAlign64(memoryHeap.size >> 1u, memReqs.memoryRequirem… in bufferCreateAndAllocTest() local
572 size = std::min(size, maxBufferSize); in bufferCreateAndAllocTest()
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c1691 int32_t bufferSize, maxBufferSize; in TestConvertSafeClone() local
1790 maxBufferSize = 0; in TestConvertSafeClone()
1809 if(actualSizes[idx] > maxBufferSize) { in TestConvertSafeClone()
1810 maxBufferSize = actualSizes[idx]; in TestConvertSafeClone()
1884 sizeof(UConverter), maxBufferSize, maxName, (int)U_CNV_SAFECLONE_BUFFERSIZE); in TestConvertSafeClone()
1885 if(maxBufferSize > U_CNV_SAFECLONE_BUFFERSIZE) { in TestConvertSafeClone()
1887 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.cpp775 vk::VkDeviceSize maxBufferSize,
972 vk::VkDeviceSize maxBufferSize, in Memory() argument
979 , m_maxBufferSize (maxBufferSize) in Memory()
9260 const vk::VkDeviceSize maxBufferSize = bufferUsage != 0 in createCommandsAndAllocateMemory() local
9267 log << TestLog::Message << "Max buffer size: " << maxBufferSize << TestLog::EndMessage; in createCommandsAndAllocateMemory()
9271 if (maxBufferSize == 0 in createCommandsAndAllocateMemory()
9283 …ory(vki, vkd, physicalDevice, device, m_config.size, m_memoryTypeNdx, maxBufferSize, maxImageSize[… in createCommandsAndAllocateMemory()