HomeSort by relevance Sort by last modified time
    Searched full:freememory (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ClassUnloadDebuggee.java 95 long freeMemory = currentRuntime.freeMemory();
97 ("--> Debuggee: createMemoryStress: freeMemory (bytes) before memory stress = " + freeMemory);
112 freeMemory = currentRuntime.freeMemory();
114 ("--> Debuggee: createMemoryStress: freeMemory after creating memory stress = " + freeMemory);
125 long freeMemory = currentRuntime.freeMemory();
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
RuntimeTest.java 113 * java.lang.Runtime#freeMemory() / java.lang.Runtime#totalMemory() /
117 assertTrue("freeMemory < 0", r.freeMemory() >= 0);
118 assertTrue("totalMemory() < freeMemory()", r.totalMemory() >= r.freeMemory());
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btGenericPoolAllocator.h 103 bool freeMemory(void * pointer);
153 bool freeMemory(void * pointer);
btGenericPoolAllocator.cpp 139 bool btGenericMemoryPool::freeMemory(void * pointer)
231 bool btGenericPoolAllocator::freeMemory(void * pointer)
238 result = m_pools[i]->freeMemory(pointer);
282 g_main_allocator.freeMemory(ptr);
  /external/skia/src/gpu/vk/
GrVkBuffer.cpp 73 VK_CALL(gpu, FreeMemory(gpu->device(), alloc, nullptr));
107 VK_CALL(gpu, FreeMemory(gpu->device(), fAlloc, nullptr));
GrVkMemory.cpp 79 GR_VK_CALL(interface, FreeMemory(device, *memory, nullptr));
102 GR_VK_CALL(interface, FreeMemory(device, *memory, nullptr));
GrVkImage.cpp 117 VK_CALL(gpu, FreeMemory(gpu->device(), fAlloc, nullptr));
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceFunctionPointers.inl 10 FreeMemoryFunc freeMemory;
  /libcore/ojluni/src/main/java/sun/nio/ch/
AllocatedNativeObject.java 61 unsafe.freeMemory(allocationAddress);
EPoll.java 76 unsafe.freeMemory(address);
  /external/jetty/src/java/org/eclipse/jetty/server/session/
AbstractSessionIdManager.java 143 ?(hashCode()^Runtime.getRuntime().freeMemory()^_random.nextInt()^(((long)request.hashCode())<<32))
159 _random.setSeed(_random.nextLong()^System.currentTimeMillis()^request.hashCode()^Runtime.getRuntime().freeMemory());
164 ?(hashCode()^Runtime.getRuntime().freeMemory()^_random.nextInt()^(((long)request.hashCode())<<32))
216 _random.setSeed(_random.nextLong()^System.currentTimeMillis()^hashCode()^Runtime.getRuntime().freeMemory());
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btPoolAllocator.h 93 void freeMemory(void* ptr)
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 261 long beforeTest = rt.freeMemory();
262 while(rt.freeMemory() < beforeTest * 2/3) {
265 long beforeGC = rt.totalMemory() - rt.freeMemory();
269 long afterGC = rt.totalMemory() - rt.freeMemory();
  /libcore/ojluni/src/main/native/
Runtime.c 85 NATIVE_METHOD(Runtime, freeMemory, "!()J"),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nmsupp.h 67 extern VOID WINAPI FreeMemory(LPVOID ptr);
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.h 107 void freeMemory();
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btGenericPoolAllocator.java 90 public boolean freeMemory(long pointer) {
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btPoolAllocator.java 84 public void freeMemory(long ptr) {
  /frameworks/native/vulkan/libvulkan/
api_gen.h 61 PFN_vkFreeMemory FreeMemory;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.h 107 void freeMemory();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntagp.h 189 PAGP_BUS_FREE_MEMORY FreeMemory;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCollisionDispatcher.cpp 135 m_persistentManifoldPoolAllocator->freeMemory(manifold);
309 m_collisionAlgorithmPoolAllocator->freeMemory(ptr);
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
android.webkit.WebView.html 126 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebView.html#freeMemory()" target="_top"><code>freeMemory</code></A>() </nobr>
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryAllocationTests.cpp 179 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
189 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
209 vkd.freeMemory(device, memoryObjects[ndx], (const VkAllocationCallbacks*)DE_NULL);
222 vkd.freeMemory(device, mem, (const VkAllocationCallbacks*)DE_NULL);
367 vkd.freeMemory(device, heap.objects[objectNdx].memory, (const VkAllocationCallbacks*)DE_NULL);
480 vkd.freeMemory(device, memoryObject.memory, (const VkAllocationCallbacks*)DE_NULL);
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 40 + Runtime.getRuntime().freeMemory());

Completed in 1689 milliseconds

1 2 3 4 5 6 7 8