/frameworks/native/vulkan/nulldrv/ |
null_driver_gen.cpp | 161 {"vkFreeMemory", reinterpret_cast<PFN_vkVoidFunction>(static_cast<PFN_vkFreeMemory>(FreeMemory))},
|
null_driver_gen.h | 53 VKAPI_ATTR void FreeMemory(VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator);
|
/external/vulkan-validation-layers/loader/ |
table_ops.h | 65 table->FreeMemory = (PFN_vkFreeMemory)gpa(dev, "vkFreeMemory"); 300 if (!strcmp(name, "FreeMemory")) 301 return (void *)table->FreeMemory; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wmiutils.h | 350 virtual HRESULT WINAPI FreeMemory(LPVOID pMem) = 0; 364 HRESULT (WINAPI *FreeMemory)(IWbemQuery *This,LPVOID pMem); 380 #define IWbemQuery_FreeMemory(This,pMem) (This)->lpVtbl->FreeMemory(This,pMem) [all...] |
lpmapi.h | 626 PFREEMEM FreeMemory;
|
/frameworks/native/vulkan/libvulkan/ |
api_gen.cpp | 159 INIT_PROC(dev, FreeMemory); 302 VKAPI_ATTR void FreeMemory(VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator); [all...] |
/external/deqp/external/vulkancts/framework/vulkan/ |
vkConcreteDeviceInterface.inl | 10 virtual void freeMemory (VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) const;
|
vkRefUtilImpl.inl | 10 m_deviceIface->freeMemory(m_device, obj, m_allocator);
|
vkDeviceDriverImpl.inl | 35 void DeviceDriver::freeMemory (VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) const 37 m_vk.freeMemory(device, memory, pAllocator);
|
vkNullDriverImpl.inl | 188 VKAPI_ATTR void VKAPI_CALL freeMemory (VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) [all...] |
vkVirtualDeviceInterface.inl | 10 virtual void freeMemory (VkDevice device, VkDeviceMemory memory, const VkAllocationCallbacks* pAllocator) const = 0;
|
/external/valgrind/VEX/switchback/ |
test_emfloat.c | [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
NativeObject.java | 386 unsafe.freeMemory(a);
|
/libcore/ojluni/src/main/java/java/nio/ |
Bits.java | 634 unsafe.freeMemory(a); 655 unsafe.freeMemory(a);
|
/development/perftests/panorama/feature_mos/src/mosaic/ |
Delaunay.cpp | 207 void CDelaunay::freeMemory()
|
/external/vulkan-validation-layers/demos/smoke/ |
Meshes.cpp | 476 vk::FreeMemory(dev_, mem_, nullptr);
|
/frameworks/base/core/java/android/os/ |
PerformanceCollector.java | 498 long dalvikFree = runtime.freeMemory() / 1024;
|
/frameworks/base/core/java/android/webkit/ |
WebViewProvider.java | 204 public void freeMemory();
|
/frameworks/base/docs/html/sdk/api_diff/19/changes/ |
methods_index_changes.html | 102 <nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.freeMemory_changed()" class="hiddenlink" target="rightframe">freeMemory
|
/frameworks/base/services/core/java/com/android/server/storage/ |
DeviceStorageMonitorService.java | 247 if (localLOGV) Slog.v(TAG, "freeMemory="+mFreeMem);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Delaunay.cpp | 207 void CDelaunay::freeMemory()
|
/external/google-breakpad/src/google_breakpad/processor/ |
minidump.h | 68 // FreeMemory method is provided by MinidumpMemoryRegion, allowing the user 221 void FreeMemory(); [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
cuda.hpp | 812 void queryMemory(size_t& totalMemory, size_t& freeMemory) const; 813 size_t freeMemory() const;
|
/external/v8/src/heap/ |
spaces.cc | 306 // TODO(gc) this will be true again when we fix FreeMemory. 334 FreeMemory(reservation, NOT_EXECUTABLE); 338 void MemoryAllocator::FreeMemory(base::VirtualMemory* reservation, 353 void MemoryAllocator::FreeMemory(Address base, size_t size, 767 FreeMemory(reservation, chunk->executable()); 769 FreeMemory(chunk->address(), chunk->size(), chunk->executable()); [all...] |
/libcore/ojluni/src/main/java/java/lang/ |
Runtime.java | 717 * by <code>freeMemory.</code> 722 public native long freeMemory(); [all...] |