Home
last modified time | relevance | path

Searched refs:maxMemory (Results 1 – 6 of 6) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DStreamUtil.java53 long maxMemory = Runtime.getRuntime().maxMemory(); in findLimit() local
54 if (maxMemory > Integer.MAX_VALUE) in findLimit()
59 return (int) maxMemory; in findLimit()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DStreamUtil.java54 long maxMemory = Runtime.getRuntime().maxMemory(); in findLimit() local
55 if (maxMemory > Integer.MAX_VALUE) in findLimit()
60 return (int) maxMemory; in findLimit()
/external/lz4/programs/
Dbench.c82 static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(… variable
381 if (requiredMem > maxMemory) requiredMem = maxMemory; in BMK_findMaxMem()
/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DDecoder.java60 Validator(long maxMemory, int numberOfHandles) { in Validator() argument
61 mMaxMemory = maxMemory; in Validator()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineRenderToImageTests.cpp903 VkDeviceSize maxMemory = getMaxDeviceHeapSize(context, caseDef) >> 2; in testWithSizeReduction() local
905 const VkDeviceSize deviceMemoryBudget = std::min(neededMemory, maxMemory); in testWithSizeReduction()
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/
DAbstractInteropTest.java1806 long actuallyFreeMemory = r.maxMemory() - usedMem; in assumeEnoughMemory()