Searched refs:munmap (Results 1 - 25 of 185) sorted by relevance

12345678

/external/valgrind/main/none/tests/linux/
H A Dmremap.c13 munmap(map, mapsz);
42 munmap(np, 256*1024);
52 munmap(np, 256*1024);
62 munmap(np, 2048*1024);
72 munmap(np, 2048*1024);
75 munmap(p+512*1024, 4096);
83 munmap(np, 1024*1024);
86 munmap(p+512*1024, 4096);
95 munmap(np, 1024*1024);
H A Dmremap3.c17 if (munmap(initial_area, 40960) != 0)
18 perror ("munmap initial_area");
/external/valgrind/main/none/tests/
H A Dmap_unaligned.c16 if ( munmap( p1, 4096 ) != 0 )
18 perror( "aligned munmap failed" );
31 if ( munmap( p2, 4096 ) != 0 )
33 perror( "unaligned munmap failed" );
H A Dmap_unmap.c23 /* unmap in pieces to exercise munmap more */
33 munmap((char *)p + off, pagesize);
56 munmap(expect1, LEN);
57 munmap(expect2, LEN);
77 munmap(m1, LEN);
H A Dmunmap_exe.c8 upon the munmap() (so no "discard" message). */
21 munmap(m, 100);
/external/valgrind/main/none/tests/amd64/
H A Dnibz_bennee_mmap.c23 On investigation: the problem was the munmap returns its space in
41 if (munmap(p, 4096) < 0)
43 perror("munmap");
/external/valgrind/main/tests/
H A Dsys_mman.h27 r = munmap(ptr, pagesz);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPageAllocator.cpp74 int ret = munmap(ptr, len);
84 ret = munmap(ptr, beforeSize);
89 ret = munmap(ptr + len, kSystemPageSize * numSystemPagesAfter);
110 int ret = munmap(addr, len);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/
H A Dbasemmap.c24 munmap(buf, statbuf.st_size);
/external/compiler-rt/SDKs/darwin/usr/include/sys/
H A Dmman.h39 int munmap(void *addr, size_t len);
/external/compiler-rt/SDKs/linux/usr/include/sys/
H A Dmman.h40 extern int munmap(void *addr, size_t len)
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dbug133694.c15 if (munmap(a1, 4096) < 0)
/external/chromium_org/third_party/skia/src/ports/
H A DSkPurgeableMemoryBlock_android.cpp54 munmap(fAddr, fSize);
96 munmap(fAddr, fSize);
H A DSkOSFile_posix.cpp44 munmap(const_cast<void*>(addr), length);
/external/elfutils/lib/
H A Dcrc32_file.c85 munmap (mapped, mapsize);
93 munmap (mapped, mapsize);
/external/skia/src/ports/
H A DSkPurgeableMemoryBlock_android.cpp54 munmap(fAddr, fSize);
96 munmap(fAddr, fSize);
/external/valgrind/main/memcheck/tests/
H A Dmempool.c78 munmap(l, sizeof(level_list));
91 munmap(p->mem, SUPERBLOCK_SIZE);
92 munmap(p, sizeof(pool));
H A Dmempool2.c81 munmap(l, sizeof(level_list));
94 munmap(p->mem, SUPERBLOCK_SIZE);
95 munmap(p, sizeof(pool));
/external/chromium/net/disk_cache/
H A Dmapped_file_posix.cc50 int ret = munmap(buffer_, view_size_);
/external/chromium_org/base/files/
H A Dmemory_mapped_file_posix.cc45 munmap(data_, length_);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_mman.h80 #define os_munmap(addr, length) munmap(addr, length)
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_mman.h80 #define os_munmap(addr, length) munmap(addr, length)
/external/blktrace/btt/
H A Dmmap.c84 munmap(cur_map, len);
126 munmap(cur_map, len);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_newlib.cc65 OP(memory, munmap);
101 int WRAP(munmap)(void* addr, size_t length) { function
102 // Always let the real munmap run on the address range. It is not an error if
105 return REAL(munmap)(addr, length);
168 return REAL(munmap)(addr, length);
/external/chromium_org/net/disk_cache/
H A Dmapped_file_posix.cc59 int ret = munmap(buffer_, view_size_);

Completed in 688 milliseconds

12345678