Searched refs:munmap (Results 26 - 50 of 185) sorted by relevance

12345678

/external/skia/src/ports/
H A DSkOSFile_posix.cpp44 munmap(const_cast<void*>(addr), length);
/external/srec/srec/clib/
H A Dvoc_read.c322 munmap(*buf, inflateSize(*size));
333 if (buf2) munmap(buf2, inflateSize(size2));
334 if (*buf && *buf != (void*)-1) munmap(*buf, inflateSize(*size));
341 return munmap(buf, inflateSize(size));
/external/valgrind/main/memcheck/tests/
H A Dpointer-trace.c76 munmap(map, 256*1024);
H A Daddressable.c46 munmap(&m[pgsz*2], pgsz);
/external/valgrind/main/none/tests/amd64/
H A Dsmc1.c114 munmap(code, 20);
/external/libffi/src/
H A Dclosures.c171 /* Use these for mmap and munmap within dlmalloc.c. */
176 #define munmap dlmunmap macro
181 #undef munmap macro
394 munmap (ptr, length);
468 int ret = munmap (code, length);
473 return munmap (start, length);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmalloc_hook_mmap_freebsd.h30 // Override mmap/munmap/mremap/sbrk to provide support for calling the
62 int munmap(void* start, size_t length) __THROW
129 extern "C" int munmap(void* start, size_t length) __THROW {
H A Dsystem-alloc.cc45 #include <sys/mman.h> // for munmap, mmap, MADV_DONTNEED, etc
463 munmap(reinterpret_cast<void*>(ptr), adjust);
466 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
550 munmap(reinterpret_cast<void*>(ptr), adjust);
553 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
H A Dmalloc_hook_mmap_linux.h168 int munmap(void* start, size_t length) __THROW
208 extern "C" int munmap(void* start, size_t length) __THROW {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmalloc_hook_mmap_freebsd.h30 // Override mmap/munmap/mremap/sbrk to provide support for calling the
62 int munmap(void* start, size_t length) __THROW
129 extern "C" int munmap(void* start, size_t length) __THROW {
H A Dsystem-alloc.cc45 #include <sys/mman.h> // for munmap, mmap, MADV_DONTNEED, etc
325 munmap(reinterpret_cast<void*>(ptr), adjust);
328 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
413 munmap(reinterpret_cast<void*>(ptr), adjust);
416 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);
H A Dmalloc_hook_mmap_linux.h145 int munmap(void* start, size_t length) __THROW
183 extern "C" int munmap(void* start, size_t length) __THROW {
/external/aac/libSYS/src/linux/
H A DgenericStds_linux.cpp232 munmap(ptr, KERNEL_SRAM_SIZE);
/external/chromium_org/base/memory/
H A Ddiscardable_memory_android.cc148 if (-1 == munmap(memory_, size_))
H A Dshared_memory_nacl.cc113 if (munmap(memory_, mapped_size_) < 0)
114 DPLOG(ERROR) << "munmap";
/external/oprofile/libdb/
H A Ddb_manage.c92 munmap(data->base_memory, old_file_size);
266 munmap(data->base_memory, tables_size(data, nr_node));
285 munmap(data->base_memory, size);
/external/aac/libSYS/src/mips/
H A DgenericStds_mips.cpp169 munmap(ptr, MIPS_SRAM_SIZE);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_glibc.cc143 OP(munmap); \
222 int WRAP(munmap)(void* addr, size_t length) { function
223 // Always let the real munmap run on the address range. It is not an error if
226 return REAL(munmap)(addr, length);
349 return REAL(munmap)(addr, length);
/external/jpeg/
H A Djmem-ashmem.c116 munmap(info->addr, info->size);
/external/linux-tools-perf/util/
H A Dutil.c85 munmap(addr, st.st_size);
/external/openfst/src/lib/
H A Dmapped-file.cc35 VLOG(1) << "munmap'ed " << region_.size << " bytes at " << region_.mmap;
36 if (munmap(region_.mmap, region_.size) != 0) {
/external/qemu/distrib/jpeg-6b/
H A Djmem-ashmem.c115 munmap(info->addr, info->size);
/external/valgrind/main/none/tests/linux/
H A Dmremap2.c31 int r = munmap( start, length );
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Derror_handling.c149 munmap(info->stack, info->size);
240 munmap(stack, stack_size);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTCSystemAlloc.cpp129 munmap(reinterpret_cast<void*>(ptr), adjust);
132 munmap(reinterpret_cast<void*>(ptr + adjust + size), extra - adjust);

Completed in 663 milliseconds

12345678