Searched refs:regions (Results 1 - 16 of 16) sorted by path

/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex216 The memory reserve map section gives a list of regions of memory that
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh1234 region are created. These memory regions are swapped whenever the
1238 Memory regions are swapped / initialized in the order that they are
1338 printf " /* per-architecture swap-regions */\n"
1406 /*per-architecture data-pointers and swap regions */
/freebsd-11-stable/sys/arm/arm/
H A Dphysmem.c43 * These structures are used internally to keep track of regions of physical
44 * ram, and regions within the physical ram that need to be excluded. An
74 * dump_avail tells the dump code what regions to include in a crash dump, and
78 * We size these arrays to hold twice as many available regions as we allow for
79 * hardware memory regions, to allow for the fact that exclusions can split a
80 * hardware region into two or more available regions. In the real world there
81 * will typically be one or two hardware regions and two or three exclusions.
122 prfunc("Excluded memory regions:\n");
155 * Walk the list of hardware regions, processing it against the list of
158 * Updates the value at *pavail with the sum of all pages in all hw regions
256 insert_region(struct region *regions, size_t rcnt, vm_paddr_t addr, vm_size_t size, uint32_t flags) argument
[all...]
/freebsd-11-stable/sys/arm64/arm64/
H A Dgic_v3.c256 sc->gic_redists.regions = malloc(
257 sizeof(*sc->gic_redists.regions) * sc->gic_redists.nregions,
262 sc->gic_redists.regions[i] = sc->gic_res[rid];
339 free(sc->gic_redists.regions, M_GIC_V3);
1068 /* Iterate through Re-Distributor regions */
1071 r_res = *sc->gic_redists.regions[i];
H A Dgic_v3_var.h51 * on the #redistributor-regions property in FDT.
53 struct resource ** regions; member in struct:gic_redists
54 /* Number of Re-Distributor regions */
/freebsd-11-stable/sys/powerpc/aim/
H A Dmmu_oea64.c142 * Map of physical memory regions.
144 static struct mem_region *regions; variable in typeref:struct:mem_region
468 * Quick sort callout for comparing memory regions.
710 /* Get physical memory regions from firmware */
711 mem_regions(&pregions, &pregions_sz, &regions, &regions_sz);
723 regions[i].mr_start, regions[i].mr_start +
724 regions[i].mr_size, regions[i].mr_size);
726 (physsz + regions[
[all...]
H A Dmmu_oea.c169 * Map of physical memory regions.
171 static struct mem_region *regions; variable in typeref:struct:mem_region
624 * Quick sort callout for comparing memory regions.
718 mem_regions(&pregions, &pregions_sz, &regions, &regions_sz);
755 CTR3(KTR_PMAP, "region: %#x - %#x (%#x)", regions[i].mr_start,
756 regions[i].mr_start + regions[i].mr_size,
757 regions[i].mr_size);
759 (physsz + regions[i].mr_size) >= hwphyssz) {
761 phys_avail[j] = regions[
[all...]
/freebsd-11-stable/sys/powerpc/ps3/
H A Dps3bus.c130 struct mem_region *regions; member in struct:ps3bus_softc
337 /* Get memory regions for DMA */
338 mem_regions(&sc->regions, &sc->rcount, &sc->regions, &sc->rcount);
664 sc->regions[i].mr_size, pagesize, flags,
673 sc->regions[i].mr_start, dinfo->dma_base[i],
674 sc->regions[i].mr_size,
718 if (segs[i].ds_addr >= sc->regions[j].mr_start &&
719 segs[i].ds_addr < sc->regions[j].mr_start +
720 sc->regions[
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c3757 uint64_t regions = 997; local
3806 n = ztest_random(regions) * stride + ztest_random(width);
3814 n = ztest_random(regions) * stride + ztest_random(width);
4033 uint64_t regions = 997; local
4079 n = ztest_random(regions) * stride + ztest_random(width);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_primary64.h613 RegionInfo *regions = reinterpret_cast<RegionInfo *>(SpaceEnd());
614 return &regions[class_id];
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc43 // Space allocated in mmapped regions (bytes)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp416 std::vector<MemoryRegionInfo> &regions) {
424 regions.push_back(region);
427 return !regions.empty();
432 std::vector<MemoryRegionInfo> &regions) {
462 regions.push_back(region);
464 return !regions.empty();
469 std::vector<MemoryRegionInfo> &regions) {
477 regions.reserve(ExpectedMemory->size());
486 regions.push_back(region);
488 regions
415 CreateRegionsCacheFromLinuxMaps(MinidumpParser &parser, std::vector<MemoryRegionInfo> &regions) argument
431 CreateRegionsCacheFromMemoryInfoList(MinidumpParser &parser, std::vector<MemoryRegionInfo> &regions) argument
468 CreateRegionsCacheFromMemoryList(MinidumpParser &parser, std::vector<MemoryRegionInfo> &regions) argument
493 CreateRegionsCacheFromMemory64List(MinidumpParser &parser, std::vector<MemoryRegionInfo> &regions) argument
[all...]
H A DProcessMinidump.cpp337 static MemoryRegionInfo GetMemoryRegionInfo(const MemoryRegionInfos &regions, argument
340 auto pos = llvm::upper_bound(regions, load_addr);
341 if (pos != regions.begin() &&
346 if (pos == regions.begin())
351 if (pos == regions.end())
/freebsd-11-stable/share/examples/drivers/
H A Dmake_device_driver.sh446 * Should probably do the same for memory regions too.
/freebsd-11-stable/stand/uboot/fdt/
H A Duboot_fdt.c121 static struct fdt_mem_region regions[UB_MAX_MR]; local
202 /* Extract the DRAM regions into fdt_mem_region format. */
203 for (i = 0, n = 0; i < si->mr_no && n < nitems(regions); i++) {
205 regions[n].start = si->mr[i].start;
206 regions[n].size = si->mr[i].size;
211 /* Fixup memory regions */
212 fdt_fixup_memory(regions, n);
/freebsd-11-stable/usr.bin/systat/
H A Diostat.c185 int i, _col, regions, ndrives; local
193 regions = howmany(ndrives, DRIVESPERLINE);
195 * Deduct -regions for blank line after each scrolling region.
197 linesperregion = (getmaxy(wnd) - 1 - row - regions) / regions;

Completed in 224 milliseconds