/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/ |
H A D | egl_blob_cache.cpp | 370 munmap(buf, filesize); in ReadFromDisk() 392 munmap(buf, filesize); in ReadFromDisk()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/alignment/ |
H A D | alignment_handler.c | 308 munmap(ci0, bufsize); in do_test() 309 munmap(ci1, bufsize); in do_test()
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
H A D | psock_fanout.c | 383 if (munmap(rings[1], RING_NUM_FRAMES * getpagesize()) || in test_datapath() 384 munmap(rings[0], RING_NUM_FRAMES * getpagesize())) { in test_datapath()
|
/kernel/linux/linux-5.10/samples/nitro_enclaves/ |
H A D | ne_ioctl_sample.c | 392 munmap(enclave_image, enclave_image_size); in ne_load_enclave_image() 503 munmap(ne_user_mem_regions[i].userspace_addr, in ne_free_mem_regions()
|
/kernel/linux/linux-6.6/tools/testing/selftests/mm/ |
H A D | uffd-common.c | 152 munmap(*alloc_area, bytes); in shmem_allocate_area() 259 if (munmap(*area, nr_pages * page_size)) in munmap_area() 260 err("munmap"); in munmap_area()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | mmap.c | 92 munmap(map->aio.data[idx], mmap__mmap_len(map)); in perf_mmap__aio_free() 239 munmap(map->data, mmap__mmap_len(map)); in mmap__munmap()
|
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | io_uring_zerocopy_tx.c | 194 munmap(sq->khead, sq->ring_sz); in io_uring_mmap() 203 munmap(sq->sqes, p->sq_entries * sizeof(struct io_uring_sqe)); in io_uring_mmap()
|
H A D | psock_fanout.c | 447 if (munmap(rings[1], RING_NUM_FRAMES * getpagesize()) || in test_datapath() 448 munmap(rings[0], RING_NUM_FRAMES * getpagesize())) { in test_datapath()
|
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/alignment/ |
H A D | alignment_handler.c | 299 munmap(ci0, bufsize); in do_test() 300 munmap(ci1, bufsize); in do_test()
|
/kernel/linux/linux-6.6/samples/nitro_enclaves/ |
H A D | ne_ioctl_sample.c | 391 munmap(enclave_image, enclave_image_size); in ne_load_enclave_image() 502 munmap(ne_user_mem_regions[i].userspace_addr, in ne_free_mem_regions()
|
/third_party/elfutils/src/ |
H A D | strings.c | 214 munmap (elfmap, elfmap_size); in main() 738 munmap (elfmap, elfmap_size); in read_elf()
|
/third_party/libunwind/libunwind/src/x86_64/ |
H A D | Gtrace.c | 72 munmap (cache->frames, (1u << cache->log_size) * sizeof(unw_tdep_frame_t)); in trace_cache_free() 154 munmap(cache->frames, old_size * sizeof(unw_tdep_frame_t)); in trace_cache_expand()
|
/third_party/libunwind/libunwind/src/aarch64/ |
H A D | Gtrace.c | 73 munmap (cache->frames, (1u << cache->log_size) * sizeof(unw_tdep_frame_t)); in trace_cache_free() 155 munmap(cache->frames, old_size * sizeof(unw_tdep_frame_t)); in trace_cache_expand()
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Gtrace.c | 73 munmap (cache->frames, (1u << cache->log_size) * sizeof(unw_tdep_frame_t)); in trace_cache_free() 156 munmap(cache->frames, old_size * sizeof(unw_tdep_frame_t)); in trace_cache_expand()
|
/third_party/mesa3d/src/gallium/winsys/sw/kms-dri/ |
H A D | kms_dri_sw_winsys.c | 395 munmap(kms_sw_dt->mapped, kms_sw_dt->size); in kms_sw_displaytarget_unmap() 399 munmap(kms_sw_dt->ro_mapped, kms_sw_dt->size); in kms_sw_displaytarget_unmap()
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | cfi.c | 474 munmap(tmp_shadow_start, tmp_shadow_size); in fill_shadow_value_to_shadow() 485 munmap(tmp_shadow_start, tmp_shadow_size); in fill_shadow_value_to_shadow()
|
/third_party/musl/ldso/linux/ |
H A D | cfi.c | 536 munmap(tmp_shadow_start, tmp_shadow_size); in fill_shadow_value_to_shadow() 547 munmap(tmp_shadow_start, tmp_shadow_size); in fill_shadow_value_to_shadow()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | shm.c | 257 if (munmap(m->ptr, m->size) < 0) in privatemem_free() 258 pa_log_error("munmap() failed: %s", pa_cstrerror(errno)); in privatemem_free() 283 if (munmap(m->ptr, PA_PAGE_ALIGN(m->size)) < 0) in pa_shm_free() 284 pa_log_error("munmap() failed: %s", pa_cstrerror(errno)); in pa_shm_free()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | low_level_alloc.cc | 413 munmap_result = munmap(region, size); in DeleteArena() 418 munmap_result = munmap(region, size); in DeleteArena() 421 ABSL_RAW_LOG(FATAL, "LowLevelAlloc::DeleteArena: munmap failed: %d", in DeleteArena()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | mman.rs | 484 /// `addr` must meet all the requirements described in the [`munmap(2)`] man 487 /// [`munmap(2)`]: https://man7.org/linux/man-pages/man2/munmap.2.html 488 pub unsafe fn munmap(addr: *mut c_void, len: size_t) -> Result<()> { in munmap() functions 489 Errno::result(libc::munmap(addr, len)).map(drop) in munmap()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-posix.cc | 443 CHECK_EQ(0, munmap(address, size)); in Free() 463 CHECK_EQ(0, munmap(address, size)); in FreeShared() 470 CHECK_EQ(0, munmap(address, size)); in Release() 545 // shall be removed, as if by an appropriate call to munmap(), before the new in DecommitPages()
|
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | nntensor.cpp | 268 auto unmapResult = munmap(m_data, m_size); in ReleaseMemory()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libheifplugin/src/ |
H A D | heif_decoder.cpp | 183 ::munmap(ptr, byteCount); in AllocShareMem()
|
/foundation/multimedia/media_foundation/src/buffer/avsharedmemory/ |
H A D | avsharedmemorybase.cpp | 142 (void)::munmap(base_, static_cast<size_t>(capacity_));
|
/foundation/multimedia/camera_framework/frameworks/native/camera/src/deferred_proc_session/ |
H A D | deferred_photo_proc_session.cpp | 50 munmap(addr, bytes); in OnProcessImageDone()
|