Searched refs:ranges (Results 1 - 25 of 84) sorted by relevance

1234

/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Ddwarf_ranges.c33 Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt,
46 *ranges = rl->rl_rgarray;
56 dwarf_get_ranges(Dwarf_Debug dbg, Dwarf_Off offset, Dwarf_Ranges **ranges, argument
60 if (dbg == NULL || ranges == NULL || ret_cnt == NULL) {
71 ranges, ret_cnt, ret_byte_cnt, error));
76 Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt,
80 if (dbg == NULL || die == NULL || ranges == NULL || ret_cnt == NULL) {
85 return (_dwarf_get_ranges(dbg, die->die_cu, offset, ranges, ret_cnt,
32 _dwarf_get_ranges(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Off off, Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt, Dwarf_Error *error) argument
75 dwarf_get_ranges_a(Dwarf_Debug dbg, Dwarf_Off offset, Dwarf_Die die, Dwarf_Ranges **ranges, Dwarf_Signed *ret_cnt, Dwarf_Unsigned *ret_byte_cnt, Dwarf_Error *error) argument
H A Ddwarf_dealloc.c90 dwarf_ranges_dealloc(Dwarf_Debug dbg, Dwarf_Ranges *ranges, argument
94 * In this libdwarf implementation, ranges information is
100 (void) dbg; (void) ranges; (void) range_count;
/freebsd-11-stable/sys/dev/vnic/
H A Dmrml_bridge.c162 /* Remap through ranges property */
164 if (start >= sc->ranges[i].bus && end <
165 sc->ranges[i].bus + sc->ranges[i].size) {
166 start -= sc->ranges[i].bus;
167 start += sc->ranges[i].host;
168 end -= sc->ranges[i].bus;
169 end += sc->ranges[i].host;
201 nbase_ranges = OF_getproplen(node, "ranges");
209 sc->ranges
[all...]
H A Dthunder_mdio_fdt.c209 nbase_ranges = OF_getproplen(node, "ranges");
217 sc->ranges = malloc(sc->nranges * sizeof(sc->ranges[0]),
220 OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
223 sc->ranges[i].bus = 0;
225 sc->ranges[i].bus <<= 32;
226 sc->ranges[i].bus |= base_ranges[j++];
228 sc->ranges[i].host = 0;
230 sc->ranges[i].host <<= 32;
231 sc->ranges[
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.h33 /// \param[in] ranges
45 const lldb_private::Variable::RangeList &ranges,
H A DPDBLocationToDWARFExpression.cpp32 const Variable::RangeList &ranges) {
42 for (size_t i = 0; i < ranges.GetSize(); i++) {
43 auto range = ranges.GetEntryAtIndex(i);
68 const Variable::RangeList &ranges, bool &is_constant) {
111 if (auto fd = GetCorrespondingFrameData(symbol.getSession(), ranges)) {
31 GetCorrespondingFrameData(const IPDBSession &session, const Variable::RangeList &ranges) argument
66 ConvertPDBLocationToDWARFExpression( ModuleSP module, const PDBSymbolData &symbol, const Variable::RangeList &ranges, bool &is_constant) argument
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats_timing.cpp97 } ranges[] = {{1.e21, 'y'}, {1.e18, 'z'}, {1.e15, 'a'}, {1.e12, 'f'}, local
115 for (int i = 0; i < (int)(sizeof(ranges) / sizeof(ranges[0])); i++) {
116 if (interval * ranges[i].scale < 1.e0) {
117 interval = interval * 1000.e0 * ranges[i].scale;
120 << ranges[i].prefix << std::setw(1) << unit;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h60 /// RangeSet contains a set of ranges. If the set is empty, then
65 PrimRangeSet ranges; // no need to make const, since it is an member in class:clang::ento::RangeSet
72 RangeSet(PrimRangeSet RS) : ranges(RS) {}
74 /// Create a new set with all ranges of this set and RS.
77 PrimRangeSet Ranges(RS.ranges);
78 for (const auto &range : ranges)
83 iterator begin() const { return ranges.begin(); }
84 iterator end() const { return ranges.end(); }
86 bool isEmpty() const { return ranges.isEmpty(); }
90 : ranges(
[all...]
/freebsd-11-stable/sys/arm64/cavium/
H A Dthunder_pcie_common.c69 range_addr_is_pci(struct pcie_range *ranges, uint64_t addr, uint64_t size) argument
75 r = &ranges[tuple];
89 range_addr_is_phys(struct pcie_range *ranges, uint64_t addr, uint64_t size) argument
95 r = &ranges[tuple];
109 range_addr_phys_to_pci(struct pcie_range *ranges, uint64_t phys_addr) argument
117 r = &ranges[tuple];
131 range_addr_pci_to_phys(struct pcie_range *ranges, uint64_t pci_addr) argument
139 r = &ranges[tuple];
H A Dthunder_pcie_pem.h43 struct pcie_range ranges[MAX_RANGES_TUPLES]; member in struct:thunder_pem_softc
H A Dthunder_pcie_pem.c273 paddr = range_addr_pci_to_phys(sc->ranges, paddr);
657 if (range_addr_is_phys(sc->ranges, start, count)) {
658 start = range_addr_phys_to_pci(sc->ranges, start);
837 * and configure ranges according to the below formula
839 * by EFI do not have proper ranges property or don't have them
843 sc->ranges[0].pci_base = PCI_MEMORY_BASE;
844 sc->ranges[0].size = PCI_MEMORY_SIZE;
845 sc->ranges[0].phys_base = sc->sli_window_base + SLI_PCI_OFFSET +
846 sc->ranges[0].pci_base;
847 sc->ranges[
[all...]
/freebsd-11-stable/sys/arm/at91/
H A Dat91_pinctrl.c60 struct pinctrl_range *ranges; member in struct:pinctrl_softc
177 nbase_ranges = OF_getproplen(node, "ranges");
185 sc->ranges = malloc(sc->nranges * sizeof(sc->ranges[0]),
188 OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
191 sc->ranges[i].bus = 0;
193 sc->ranges[i].bus <<= 32;
194 sc->ranges[i].bus |= base_ranges[j++];
196 sc->ranges[i].host = 0;
198 sc->ranges[
[all...]
/freebsd-11-stable/sys/dev/fdt/
H A Dsimplebus.c129 * ranges property we will fail to attach, so just fail to probe too.
132 ofw_bus_has_prop(dev, "ranges")) &&
151 device_printf(dev, "could not get ranges\n");
199 nbase_ranges = OF_getproplen(node, "ranges");
207 sc->ranges = malloc(sc->nranges * sizeof(sc->ranges[0]),
210 OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
213 sc->ranges[i].bus = 0;
215 sc->ranges[i].bus <<= 32;
216 sc->ranges[
[all...]
H A Dsimplebus.h48 struct simplebus_range *ranges; member in struct:simplebus_softc
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp31 // order to produce a compile unit level set of address ranges that is
41 DWARFRangeList ranges; local
43 die->GetAttributeAddressRanges(this, ranges, false);
50 const DWARFRangeList::Entry &range = ranges.GetEntryRef(i);
55 return; // We got all of our ranges from the DW_AT_ranges attribute
/freebsd-11-stable/sys/arm/nvidia/
H A Das3722_regulators.c86 struct regulator_range *ranges; member in struct:reg_def
141 .ranges = as3722_sd016_ranges,
153 .ranges = as3722_sd_ranges,
166 .ranges = as3722_sd_ranges,
179 .ranges = as3722_sd_ranges,
192 .ranges = as3722_sd_ranges,
205 .ranges = as3722_sd_ranges,
217 .ranges = as3722_sd016_ranges,
230 .ranges = as3722_ldo_ranges,
243 .ranges
[all...]
/freebsd-11-stable/contrib/dialog/
H A Drangebox.c117 int ranges = (data->max_value + 1 - data->min_value); local
123 if (ranges > data->slide_len) {
125 } else if (ranges < data->slide_len) {
222 int ranges; local
256 ranges = max_value - min_value + 1;
270 if (ranges > usable) {
271 data.slide_inc = (ranges + usable - 1) / usable;
272 data.slide_len = 1 + ranges / data.slide_inc;
273 } else if (ranges < usable) {
274 data.slide_inc = usable / ranges;
[all...]
/freebsd-11-stable/sys/dev/pci/
H A Dpci_host_generic.c173 /* Retrieve 'ranges' property from FDT */
236 phys_base = sc->ranges[tuple].phys_base;
237 pci_base = sc->ranges[tuple].pci_base;
238 size = sc->ranges[tuple].size;
241 if (sc->ranges[tuple].flags & FLAG_MEM) {
244 } else if (sc->ranges[tuple].flags & FLAG_IO) {
290 nbase_ranges = OF_getproplen(node, "ranges");
294 OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
300 sc->ranges[i].flags |= FLAG_IO;
302 sc->ranges[
[all...]
H A Dpci_host_generic.h50 struct pcie_range ranges[MAX_RANGES_TUPLES]; member in struct:generic_pcie_softc
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp301 std::vector<AddressRange> ranges; local
350 ranges.push_back(range);
363 ranges.push_back(range);
399 ranges.push_back(range);
416 ranges.push_back(range);
425 ranges.push_back(range);
428 if (ranges.empty()) {
449 bool print_sc_header = ranges.size() > 1;
450 for (AddressRange cur_range : ranges) {
474 if (ranges
[all...]
/freebsd-11-stable/sys/powerpc/mpc85xx/
H A Dlbc.c174 u_int i, r, ranges, s; local
180 * Determine number of discontiguous address ranges to program.
182 ranges = 0;
189 for (r = 0; r < ranges; r++) {
205 if (r == ranges) {
208 while (r < ranges && sc->sc_range[r].addr < start)
210 for (s = ranges; s > r; s--)
214 ranges++;
219 * Ranges are sorted so quickly go over the list to merge ranges
220 * that grew toward each other while building the ranges
451 pcell_t *ranges, *rangesptr; local
[all...]
/freebsd-11-stable/contrib/elftoolchain/addr2line/
H A Daddr2line.c53 Dwarf_Ranges *ranges; member in struct:Func
182 if (f->ranges != NULL) {
185 if (f->ranges[i].dwr_type == DW_RANGES_END)
187 if (f->ranges[i].dwr_type ==
189 addr_base = f->ranges[i].dwr_addr2;
194 lopc = f->ranges[i].dwr_addr1 + addr_base;
195 hipc = f->ranges[i].dwr_addr2 + addr_base;
227 Dwarf_Ranges *ranges; local
246 ranges = NULL;
251 dwarf_get_ranges(dbg, (Dwarf_Off) ranges_off, &ranges,
428 Dwarf_Ranges *ranges; local
[all...]
/freebsd-11-stable/sys/mips/nlm/
H A Dxlp_simplebus.c152 * ranges property we will fail to attach, so just fail to probe too.
155 ofw_bus_has_prop(dev, "ranges")) &&
198 /* Remap through ranges property */
200 if (start >= sc->ranges[j].bus && end <
201 sc->ranges[j].bus + sc->ranges[j].size) {
202 start -= sc->ranges[j].bus;
203 start += sc->ranges[j].host;
204 end -= sc->ranges[j].bus;
205 end += sc->ranges[
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp514 const Variable::RangeList &ranges) {
515 lldbassert(!ranges.IsEmpty());
517 // assume that all variable ranges correspond to one frame data
519 const RangeListEntry &range = ranges.GetEntryRef(0);
547 const Variable::RangeList &ranges,
553 GetCorrespondingFrameData(index.GetLoadAddress(), new_fpo_data, ranges);
593 result.ranges.emplace();
601 result.ranges.emplace();
618 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps); local
642 if (GetFrameDataProgram(index, ranges, progra
512 GetCorrespondingFrameData(lldb::addr_t load_addr, const DebugFrameDataSubsectionRef &fpo_data, const Variable::RangeList &ranges) argument
546 GetFrameDataProgram(PdbIndex &index, const Variable::RangeList &ranges, llvm::StringRef &out_program) argument
659 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps); local
[all...]
/freebsd-11-stable/sys/powerpc/ofw/
H A Dofw_pci.c94 static int ofw_pci_fill_ranges(phandle_t node, struct ofw_pci_range *ranges);
170 device_printf(dev, "could not get ranges\n");
393 * Map this through the ranges list
504 nbase_ranges = OF_getproplen(node, "ranges");
513 ofw_pci_fill_ranges(phandle_t node, struct ofw_pci_range *ranges) argument
527 nbase_ranges = OF_getproplen(node, "ranges");
534 OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
537 ranges[i].pci_hi = base_ranges[j++];
538 ranges[i].pci = 0;
540 ranges[
[all...]

Completed in 482 milliseconds

1234