Home
last modified time | relevance | path

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

/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/tests/unittests/
H A DMemoryAllocatorTest.cpp49 auto maxMemoryUsageBefore = MA.getMaxMemoryUsage(); in TEST()
51 auto maxMemoryUsageAfter = MA.getMaxMemoryUsage(); in TEST()
87 auto maxMemoryUsageBefore = MA.getMaxMemoryUsage(); in TEST()
89 auto maxMemoryUsageAfter = MA.getMaxMemoryUsage(); in TEST()
100 maxMemoryUsageBefore = MA.getMaxMemoryUsage(); in TEST()
102 maxMemoryUsageAfter = MA.getMaxMemoryUsage(); in TEST()
188 EXPECT_EQ(MA.getMaxMemoryUsage(), 128); in TEST()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/lib/Backend/
H A DBackendUtils.cpp489 constantsMaxMem = allocator.getMaxMemoryUsage(); in create()
502 placeholdersMaxMem = allocator.getMaxMemoryUsage() - constantsMaxMem; in create()
510 allocator.getMaxMemoryUsage() - constantsMaxMem - placeholdersMaxMem; in create()
533 return runtime::RuntimeBundle(symbolTable, constants.getMaxMemoryUsage(), in create()
534 placeholders.getMaxMemoryUsage(), in create()
572 auto constantMaxSize = constantAllocator.getMaxMemoryUsage(); in create()
598 auto placeholderMaxSize = placeholderAllocator.getMaxMemoryUsage(); in create()
606 auto activationsMaxSize = activationsAllocator.getMaxMemoryUsage(); in create()
609 DCHECK_EQ(constantAllocator.getMaxMemoryUsage(), in create()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/lib/LLVMIRCodeGen/
H A DAllocationsInfo.cpp76 constantWeightVarsMemSize_ = constantWeightVarsAllocator.getMaxMemoryUsage(); in allocateWeightVars()
77 mutableWeightVarsMemSize_ = mutableWeightVarsAllocator.getMaxMemoryUsage(); in allocateWeightVars()
121 activationsMemSize_ = activationsAllocator.getMaxMemoryUsage(); in allocateActivations()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sword25/kernel/
H A Dkernel_script.cpp337 static int getMaxMemoryUsage(lua_State *L) { in getMaxMemoryUsage() function
389 {"GetMaxMemoryUsage", getMaxMemoryUsage},
/dports/games/scummvm/scummvm-2.5.1/engines/sword25/kernel/
H A Dkernel_script.cpp337 static int getMaxMemoryUsage(lua_State *L) { in getMaxMemoryUsage() function
389 {"GetMaxMemoryUsage", getMaxMemoryUsage},
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/include/glow/CodeGen/
H A DMemoryAllocator.h123 uint64_t getMaxMemoryUsage() const { return maxMemoryAllocated_; } in getMaxMemoryUsage() function