Home
last modified time | relevance | path

Searched refs:range_end (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh121 range_end=()
136 range_end+=($REND)
153 REND=${range_end[$k]}
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DVMRange.h75 lldb::addr_t range_end = range.GetEndAddress(); in Contains() local
76 return (GetBaseAddress() <= range_end) && (range_end <= GetEndAddress()); in Contains()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLineEntry.cpp194 Address range_end(complete_line_range.GetBaseAddress()); in GetSameLineContiguousAddressRange() local
195 range_end.Slide(complete_line_range.GetByteSize()); in GetSameLineContiguousAddressRange()
196 range_end.CalculateSymbolContext(&next_line_sc, symbol_context_scope); in GetSameLineContiguousAddressRange()
/freebsd/contrib/ofed/libibverbs/
H A Dmemory.c105 uintptr_t range_start, range_end; in get_page_size() local
107 n = sscanf(buf, "%" SCNxPTR "-%" SCNxPTR, &range_start, &range_end); in get_page_size()
112 if ((uintptr_t) base >= range_start && (uintptr_t) base < range_end) { in get_page_size()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cpp239 bool MemoryRangeIsAvailable(uptr range_start, uptr range_end) { in MemoryRangeIsAvailable() argument
248 range_end)) in MemoryRangeIsAvailable()
H A Dsanitizer_win.cpp429 bool MemoryRangeIsAvailable(uptr range_start, uptr range_end) { in MemoryRangeIsAvailable() argument
433 (uptr)mbi.BaseAddress + mbi.RegionSize >= range_end; in MemoryRangeIsAvailable()
H A Dsanitizer_common.h168 bool MemoryRangeIsAvailable(uptr range_start, uptr range_end);
/freebsd/sys/dev/enic/
H A Denic.h193 u32 range_end; member
H A Dif_enic.c321 rx_coal->range_end = ENIC_RX_COALESCE_RANGE_END; in enic_set_rx_coal_setting()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp6196 lldb::addr_t range_end = 0; in GetMemoryRegions() local
6202 error = GetMemoryRegionInfo(range_end, region_info); in GetMemoryRegions()
6214 range_end = region_info.GetRange().GetRangeEnd(); in GetMemoryRegions()
6221 range_end != LLDB_INVALID_ADDRESS && in GetMemoryRegions()
6224 !(abi && (abi->FixAnyAddress(range_end) != range_end))); in GetMemoryRegions()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp509 storedDiag.range_end()); in Report()