Home
last modified time | relevance | path

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

/src/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()
/src/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()
/src/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()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DPlistReporter.cpp52 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) { in writeARCDiagsToPlist()
/src/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);
/src/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()
/src/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_file.c143 .range_end = end, in zpl_fsync()
513 pgoff_t end = wbc->range_end >> PAGE_SHIFT; in zpl_write_cache_pages()
/src/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()
/src/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp509 storedDiag.range_end()); in Report()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1726 range_iterator range_end() const { return Ranges.end(); } in range_end() function