/external/ImageMagick/MagickCore/ |
D | memory.c | 712 *memory_info; in AcquireVirtualMemory() local 737 memory_info=(MemoryInfo *) MagickAssumeAligned(AcquireAlignedMemory(1, in AcquireVirtualMemory() 738 sizeof(*memory_info))); in AcquireVirtualMemory() 739 if (memory_info == (MemoryInfo *) NULL) in AcquireVirtualMemory() 741 (void) memset(memory_info,0,sizeof(*memory_info)); in AcquireVirtualMemory() 742 memory_info->length=size; in AcquireVirtualMemory() 743 memory_info->signature=MagickCoreSignature; in AcquireVirtualMemory() 746 memory_info->blob=AcquireAlignedMemory(1,size); in AcquireVirtualMemory() 747 if (memory_info->blob != NULL) in AcquireVirtualMemory() 748 memory_info->type=AlignedVirtualMemory; in AcquireVirtualMemory() [all …]
|
D | quantize.c | 299 *memory_info; member 1360 if (cube_info->memory_info != (MemoryInfo *) NULL) in DestroyCubeInfo() 1361 cube_info->memory_info=RelinquishVirtualMemory(cube_info->memory_info); in DestroyCubeInfo() 2053 cube_info->memory_info=AcquireVirtualMemory(length,sizeof(*cube_info->cache)); in GetCubeInfo() 2054 if (cube_info->memory_info == (MemoryInfo *) NULL) in GetCubeInfo() 2056 cube_info->cache=(ssize_t *) GetVirtualMemoryBlob(cube_info->memory_info); in GetCubeInfo()
|
/external/tensorflow/tensorflow/lite/profiling/ |
D | BUILD | 77 ":memory_info", 111 name = "memory_info", 112 srcs = ["memory_info.cc"], 113 hdrs = ["memory_info.h"], 130 ":memory_info", 162 ":memory_info",
|
/external/llvm-project/lldb/source/Core/ |
D | DynamicLoader.cpp | 189 MemoryRegionInfo memory_info; in LoadModuleAtAddress() local 190 Status error = m_process->GetMemoryRegionInfo(base_addr, memory_info); in LoadModuleAtAddress() 191 if (error.Success() && memory_info.GetMapped() && in LoadModuleAtAddress() 192 memory_info.GetRange().GetRangeBase() == base_addr && in LoadModuleAtAddress() 193 !(memory_info.GetName().IsEmpty())) { in LoadModuleAtAddress() 194 ModuleSpec new_module_spec(FileSpec(memory_info.GetName().GetStringRef()), in LoadModuleAtAddress()
|
/external/ImageMagick/coders/ |
D | jpeg.c | 1058 *memory_info; in ReadJPEGImage_() local 1115 memory_info=(MemoryInfo *) NULL; in ReadJPEGImage_() 1366 memory_info=AcquireVirtualMemory((size_t) image->columns, in ReadJPEGImage_() 1368 if (memory_info == (MemoryInfo *) NULL) in ReadJPEGImage_() 1373 jpeg_pixels=(JSAMPLE *) GetVirtualMemoryBlob(memory_info); in ReadJPEGImage_() 1381 if (memory_info != (MemoryInfo *) NULL) in ReadJPEGImage_() 1382 memory_info=RelinquishVirtualMemory(memory_info); in ReadJPEGImage_() 1542 memory_info=RelinquishVirtualMemory(memory_info); in ReadJPEGImage_() 2216 *memory_info; in WriteJPEGImage_() local 2263 memory_info=(MemoryInfo *) NULL; in WriteJPEGImage_() [all …]
|
/external/mesa3d/src/vulkan/wsi/ |
D | wsi_common_drm.c | 302 const VkMemoryAllocateInfo memory_info = { in wsi_create_native_image() local 309 result = wsi->AllocateMemory(chain->device, &memory_info, in wsi_create_native_image() 524 const VkMemoryAllocateInfo memory_info = { in wsi_create_prime_image() local 531 result = wsi->AllocateMemory(chain->device, &memory_info, in wsi_create_prime_image()
|
/external/tensorflow/tensorflow/tools/test/ |
D | system_info_lib.py | 59 config.memory_info.CopyFrom(gather_memory_info())
|
/external/llvm-project/clang/utils/analyzer/ |
D | SATestUtils.py | 101 mem += subprocess.memory_info().rss
|
/external/python/cpython3/Tools/peg_generator/pegen/ |
D | testutil.py | 115 meminfo = process.memory_info()
|
/external/tensorflow/tensorflow/lite/tools/benchmark/ |
D | BUILD | 218 "//tensorflow/lite/profiling:memory_info",
|
/external/vulkan-validation-layers/tests/ |
D | vkpositivelayertests.cpp | 3304 VkMemoryAllocateInfo memory_info = {}; in TEST_F() local 3305 memory_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in TEST_F() 3306 memory_info.pNext = NULL; in TEST_F() 3307 memory_info.allocationSize = 0; in TEST_F() 3308 memory_info.memoryTypeIndex = 0; in TEST_F() 3324 memory_info.allocationSize = memory_reqs.alignment; in TEST_F() 3325 pass = m_device->phy().set_memory_type(memory_reqs.memoryTypeBits, &memory_info, 0); in TEST_F() 3327 err = vkAllocateMemory(m_device->device(), &memory_info, NULL, &memory_one); in TEST_F() 3329 err = vkAllocateMemory(m_device->device(), &memory_info, NULL, &memory_two); in TEST_F() 3336 binds[0].size = memory_info.allocationSize; in TEST_F() [all …]
|
D | vklayertests_descriptor_renderpass_framebuffer.cpp | 4139 VkMemoryAllocateInfo memory_info = {}; in TEST_F() local 4140 memory_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in TEST_F() 4141 memory_info.pNext = NULL; in TEST_F() 4142 memory_info.allocationSize = 0; in TEST_F() 4143 memory_info.memoryTypeIndex = 0; in TEST_F() 4148 memory_info.allocationSize = aligned_size * 2; in TEST_F() 4149 pass = m_device->phy().set_memory_type(memory_reqs.memoryTypeBits, &memory_info, 0); in TEST_F() 4151 err = vkAllocateMemory(m_device->device(), &memory_info, NULL, &image_memory); in TEST_F() 4777 VkMemoryAllocateInfo memory_info = {}; in TEST_F() local 4778 memory_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in TEST_F() [all …]
|
D | vklayertests_others.cpp | 3900 VkPhysicalDeviceMemoryProperties memory_info; in TEST_F() local 3901 vkGetPhysicalDeviceMemoryProperties(gpu(), &memory_info); in TEST_F() 3903 for (i = 0; i < memory_info.memoryTypeCount; i++) { in TEST_F() 3909 if (i >= memory_info.memoryTypeCount) { in TEST_F()
|
D | vklayertests_buffer_image_memory_sampler.cpp | 914 VkPhysicalDeviceMemoryProperties memory_info; in TEST_F() local 916 vkGetPhysicalDeviceMemoryProperties(gpu(), &memory_info); in TEST_F() 918 for (i = 0; i < memory_info.memoryTypeCount; i++) { in TEST_F() 924 if (i >= memory_info.memoryTypeCount) { in TEST_F()
|
/external/tensorflow/tensorflow/core/util/ |
D | test_log.proto | 156 MemoryInfo memory_info = 6; field
|
/external/tensorflow/tensorflow/lite/tools/make/ |
D | Makefile | 120 tensorflow/lite/profiling/memory_info.cc \
|
/external/tensorflow/tensorflow/lite/ |
D | CMakeLists.txt | 431 ${TFLITE_SOURCE_DIR}/profiling/memory_info.cc
|