/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | Pipe.kt | 36 class Pipe(internal val maxBufferSize: Long) { constant in okio.Pipe 44 require(maxBufferSize >= 1L) { "maxBufferSize < 1: $maxBufferSize" } in <lambda>() 66 val bufferSpaceAvailable = maxBufferSize - buffer.size in write()
|
/external/deqp/modules/glshared/ |
D | glsMemoryStressCase.hpp | 48 int maxBufferSize; member 61 …Types, int minTextureSize, int maxTextureSize, int minBufferSize, int maxBufferSize, bool write, b…
|
D | glsMemoryStressCase.cpp | 483 …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/ |
D | perf.ts | 77 get maxBufferSize() { method in RunningStatistics 91 `Avg${stat.maxBufferSize}: ${stat.bufferMean.toFixed(2)}ms`;
|
/external/deqp/modules/gles3/performance/ |
D | es3pBufferDataUploadTests.cpp | 1068 …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/ |
D | lz4frame.c | 230 size_t maxBufferSize; member 446 …cctx.maxBufferSize = 5 MB; /* mess with real buffer size to prevent dynamic allocation; works on… in LZ4F_compressFrame() 650 if (cctxPtr->maxBufferSize < requiredBuffSize) { in LZ4F_compressBegin_usingCDict() 651 cctxPtr->maxBufferSize = 0; in LZ4F_compressBegin_usingCDict() 655 cctxPtr->maxBufferSize = requiredBuffSize; in LZ4F_compressBegin_usingCDict() 905 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate() 966 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush() 1010 cctxPtr->maxBufferSize = 0; /* reuse HC context */ in LZ4F_compressEnd() 1043 size_t maxBufferSize; member 1331 if (dctx->dictSize + dstSize > dctx->maxBufferSize) { /* tmp buffer not large enough */ in LZ4F_updateDict() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiBufferTests.cpp | 247 const VkDeviceSize maxBufferSize = deAlign64(availableBufferSize >> 1, memReqs.alignment); in bufferCreateAndAllocTest() local 249 size = std::min(size, maxBufferSize); in bufferCreateAndAllocTest() 463 const VkDeviceSize maxBufferSize = getMaxBufferSize(memoryHeap.size, in bufferCreateAndAllocTest() local 468 size = deAlign64(std::min(size, maxBufferSize >> 1), memReqs.memoryRequirements.alignment); in bufferCreateAndAllocTest()
|
/external/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 1704 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/ |
D | index.md | 155 samplesRead = sonicReadShortFromStream(stream, outBuffer, maxBufferSize);
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryPipelineBarrierTests.cpp | 745 vk::VkDeviceSize maxBufferSize, 942 vk::VkDeviceSize maxBufferSize, in Memory() argument 949 , m_maxBufferSize (maxBufferSize) in Memory() 9474 const vk::VkDeviceSize maxBufferSize = bufferUsage != 0 in createCommandsAndAllocateMemory() local 9481 log << TestLog::Message << "Max buffer size: " << maxBufferSize << TestLog::EndMessage; in createCommandsAndAllocateMemory() 9485 if (maxBufferSize == 0 in createCommandsAndAllocateMemory() 9497 …ory(vki, vkd, physicalDevice, device, m_config.size, m_memoryTypeNdx, maxBufferSize, maxImageSize[… in createCommandsAndAllocateMemory()
|