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

1234567

/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-hooks1.c305 /* We can only wrap mmap if the target supports it. Likewise for munmap.
341 as a single segment? That's so that a later munmap() call
372 #undef munmap macro
373 WRAPPER(int , munmap, void *start, size_t length)
375 DECLARE(int, munmap, void *, size_t);
377 BEGIN_PROTECT (munmap, start, length);
379 result = CALL_REAL (munmap, start, length);
382 VERBOSE_TRACE ("munmap (%08lx, %08lx, ...) => %08lx\n",
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_clone.c161 ATF_REQUIRE_ERRNO(errno, munmap(allocstack, STACKSIZE) != -1);
211 ATF_REQUIRE_ERRNO(errno, munmap(allocstack, STACKSIZE) != -1);
H A Dt_msync.c125 (void)munmap(map, page);
179 (void)munmap(map, page);
/freebsd-11-stable/tests/sys/audit/
H A Dfile-close.c56 "munmap(2) call");
62 snprintf(extregex, sizeof(extregex), "munmap.*%d.*return,success", pid);
64 /* Allocate sample memory, to be removed by munmap(2) */
67 ATF_REQUIRE_EQ(0, munmap(addr, sizeof(char)));
81 "munmap(2) call");
86 const char *regex = "munmap.*return,failure : Invalid argument";
88 ATF_REQUIRE_EQ(-1, munmap((void *)SIZE_MAX, -1));
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dparse_reply-test.c120 ret = munmap ((void *)p1, 2 * pagesize);
122 err (1, "munmap");
/freebsd-11-stable/lib/libc/gen/
H A Dnlist.c137 * malloc/free (i.e., munmap will return it to the system).
145 munmap(a_out_mmap, (size_t)st.st_size);
195 munmap(a_out_mmap, (size_t)st.st_size);
299 * (i.e., munmap will return it to the system).
362 munmap(strtab, symstrsize);
364 munmap(shdr, shdr_size);
/freebsd-11-stable/sys/net/
H A Dbpf_jitter.c110 munmap(filter->func, filter->size);
/freebsd-11-stable/usr.bin/tail/
H A Dmisc.c101 if (mip->start != NULL && munmap(mip->start, mip->maplen) != 0)
/freebsd-11-stable/lib/libc/locale/
H A Drune.c156 munmap(fdata, sb.st_size);
228 munmap(fdata, sb.st_size);
248 munmap(fdata, sb.st_size);
/freebsd-11-stable/contrib/ofed/libmlx4/
H A Dmlx4.c258 munmap(context->uar, to_mdev(&v_device->device)->page_size);
260 munmap(context->bf_page, to_mdev(&v_device->device)->page_size);
262 munmap(context->hca_core_clock - context->core_clock.offset,
/freebsd-11-stable/usr.bin/patch/
H A Dinp.c85 munmap(i_womp, i_size);
123 munmap(i_womp, i_size);
239 munmap(i_womp, i_size);
/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_speed.c148 munmap (map, st.st_size);
/freebsd-11-stable/contrib/apr/mmap/unix/
H A Dmmap.c64 rv = munmap(mm->mm, mm->size);
/freebsd-11-stable/tools/test/upsdl/
H A Dupsdl.c90 munmap(addr,FILESIZE);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libctf/common/
H A Dctf_lib.c206 (void) munmap((void *)(addr - pageoff), sp->cts_size + pageoff);
425 (void) munmap(strs_map, strs_mapsz);
434 (void) munmap(strs_map, strs_mapsz);
456 (void) munmap(strs_map, strs_mapsz);
/freebsd-11-stable/contrib/mdocml/
H A Ddbm_map.c130 if (munmap(dbm_base, st.st_size) == -1)
131 warn("dbm_unmap: munmap");
/freebsd-11-stable/usr.sbin/acpi/acpidb/
H A Dacpidb.c409 munmap(code, (size_t)sb.st_size);
426 munmap(code, (size_t)sb.st_size);
432 munmap(code, (size_t)sb.st_size);
440 munmap(code, (size_t)sb.st_size);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DWindowsMMap.c80 void munmap(void *addr, size_t length) function
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_openbsd.cpp49 uptr internal_munmap(void *addr, uptr length) { return munmap(addr, length); }
/freebsd-11-stable/contrib/binutils/bfd/
H A Dbfdwin.c89 munmap (i->data, i->size);
175 munmap (i->data, i->size);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-app-init-linux.c232 munmap(ptr, shared_size);
256 munmap(&__cvmx_shared_start, shared_size);
/freebsd-11-stable/sys/kern/
H A Dcapabilities.conf411 munmap
/freebsd-11-stable/lib/libkvm/
H A Dkvm_powerpc.c124 munmap(vm->map, vm->mapsz);
176 munmap(vm->eh, vm->mapsz);
H A Dkvm_powerpc64.c124 munmap(vm->map, vm->mapsz);
177 munmap(vm->eh, vm->mapsz);
/freebsd-11-stable/sys/compat/freebsd32/
H A Dcapabilities.conf169 munmap

Completed in 152 milliseconds

1234567