Home
last modified time | relevance | path

Searched refs:map_end (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dsysinfo.c707 const unsigned char *map_end) in check_elf_header() argument
717 if (map_end < map_start in check_elf_header()
718 || map_end - map_start < sizeof(union max_elf_header_size_t) in check_elf_header()
770 const unsigned char *map_end; in linux_shared_libs() local
792 map_end = parse_pointer_value(end + 1, limit, &end); in linux_shared_libs()
793 if (!map_end || !svn_ctype_isspace(*end)) in linux_shared_libs()
823 if (!check_elf_header(map_start, map_end)) in linux_shared_libs()
/freebsd-13.1/contrib/libedit/
H A Dmap.h71 libedit_private void map_end(EditLine *);
H A Del.c141 map_end(el); in el_end()
H A Dmap.c950 map_end(EditLine *el) in map_end() function
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cpp91 uptr map_end = map_res + map_size; in MmapAlignedOrDieOnFatalError() local
98 if (end != map_end) in MmapAlignedOrDieOnFatalError()
99 UnmapOrDie((void*)end, map_end - end); in MmapAlignedOrDieOnFatalError()
H A Dsanitizer_fuchsia.cpp347 uintptr_t map_end = map_addr + map_size; in MmapAlignedOrDieOnFatalError() local
366 if (status == ZX_OK && end != map_end) in MmapAlignedOrDieOnFatalError()
367 status = _zx_vmar_unmap(_zx_vmar_root_self(), end, map_end - end); in MmapAlignedOrDieOnFatalError()
H A Dsanitizer_allocator_secondary.h103 uptr map_end = map_beg + map_size; in Allocate() local
110 CHECK_LE(res + size, map_end); in Allocate()