Searched refs:mapped (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-13-stable/usr.bin/tset/
H A Dextern.h45 const char *mapped(const char *);
H A Dterm.c92 map: ttype = mapped(ttype);
/freebsd-13-stable/sys/riscv/riscv/
H A Duio_machdep.c68 boolean_t mapped; local
76 mapped = FALSE;
90 mapped = pmap_map_io_transient(
113 if (__predict_false(mapped)) {
116 mapped = FALSE;
126 if (__predict_false(mapped)) {
/freebsd-13-stable/sys/arm64/arm64/
H A Duio_machdep.c68 boolean_t mapped; local
76 mapped = FALSE;
90 mapped = pmap_map_io_transient(
113 if (__predict_false(mapped)) {
116 mapped = FALSE;
126 if (__predict_false(mapped)) {
/freebsd-13-stable/sys/amd64/amd64/
H A Duio_machdep.c70 boolean_t mapped; local
78 mapped = FALSE;
92 mapped = pmap_map_io_transient(
115 if (__predict_false(mapped)) {
118 mapped = FALSE;
128 if (__predict_false(mapped))
/freebsd-13-stable/sys/dev/bhnd/
H A Dbhnd_erom.c78 struct bhnd_resource *mapped; /**< current mapping, or NULL */ member in struct:bhnd_erom_iores
260 * Read the chip identification registers mapped by @p eio, popuating @p cid
320 * @param addr The address to be mapped.
321 * @param size The number of bytes to be mapped at @p addr.
334 * Return the address range mapped by @p eio, if any.
337 * @param[out] addr The address mapped by @p eio.
338 * @param[out] size The number of bytes mapped at @p addr.
395 iores->mapped = NULL;
417 if (iores->mapped) {
418 /* If already mapped, nothin
[all...]
H A Dbhnd_eromvar.h84 bool mapped; /**< if a mapping is active */ member in struct:bhnd_erom_iobus
85 bus_size_t offset; /**< the current mapped offset within bsh */
86 bus_size_t limit; /**< the current mapped size relative to offset */
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dbase_structs.h54 size_t mapped; member in struct:base_s
H A Dbase_externs.h16 size_t *resident, size_t *mapped, size_t *n_thp);
H A Dctl.h56 size_t mapped; member in struct:ctl_stats_s
H A Darena_stats.h87 /* Number of bytes currently mapped, excluding retained memory. */
88 atomic_zu_t mapped; /* Partially derived. */ member in struct:arena_stats_s
92 * bytes are technically mapped (though always decommitted or purged),
93 * but they are excluded from the mapped statistic (above).
267 arena_stats_add_zu(tsdn, arena_stats, &arena_stats->mapped, size);
/freebsd-13-stable/sys/amd64/vmm/io/
H A Diommu.c290 uint64_t mapped, remaining; local
295 mapped = IOMMU_CREATE_MAPPING(dom, gpa, hpa, remaining);
296 gpa += mapped;
297 hpa += mapped;
298 remaining -= mapped;
/freebsd-13-stable/contrib/processor-trace/libipt/test/src/
H A Dptunit-mapped_section.c130 uint64_t mapped; local
134 mapped = pt_msec_map(&msec, 0x900);
135 ptu_uint_eq(mapped, 0x2800);
/freebsd-13-stable/contrib/jemalloc/src/
H A Dbase.c220 assert(base->resident <= base->mapped);
226 assert(base->mapped >= base->n_thp << LG_HUGEPAGE);
329 base->mapped += block->size;
338 assert(base->resident <= base->mapped);
339 assert(base->n_thp << LG_HUGEPAGE <= base->mapped);
381 base->mapped = block->size;
386 assert(base->resident <= base->mapped);
387 assert(base->n_thp << LG_HUGEPAGE <= base->mapped);
482 size_t *mapped, size_t *n_thp) {
487 assert(base->resident <= base->mapped);
481 base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated, size_t *resident, size_t *mapped, size_t *n_thp) argument
[all...]
/freebsd-13-stable/sys/dev/bhnd/siba/
H A Dsiba_subr.c107 .mapped = false,
179 dinfo->intr.mapped = false;
191 dinfo->intr.mapped = true;
209 /* The first addrspace is always mapped to device0; the remainder
210 * are mapped to device1 */
226 /* The first addrspace is always mapped to device0.0; the remainder
227 * are mapped to device1.0 + (n - 1) */
328 /* The first address space, if any, is mapped to device0.0 */
332 /* All remaining address spaces are mapped to device0.(n - 1) */
339 /* All config blocks are mapped t
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemoryRegionInfo.h26 OptionalBool execute, OptionalBool mapped, ConstString name,
29 m_mapped(mapped), m_name(name), m_flash(flash), m_blocksize(blocksize) {
25 MemoryRegionInfo(RangeType range, OptionalBool read, OptionalBool write, OptionalBool execute, OptionalBool mapped, ConstString name, OptionalBool flash, lldb::offset_t blocksize) argument
/freebsd-13-stable/sys/dev/xen/privcmd/
H A Dprivcmd.c76 boolean_t mapped; member in struct:privcmd_map
132 if (map->mapped == true) {
167 if (map->mapped != true)
395 umap->mapped = true;
401 if (!umap->mapped)
456 umap->mapped = true;
459 if (!umap->mapped)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h41 bool mapped = false)
42 : m_fs(fs), m_collector(nullptr), m_mapped(mapped) {}
/freebsd-13-stable/contrib/ncurses/progs/
H A Ddump_entry.c1761 char mapped[256]; local
1778 memset(mapped, 0, sizeof(mapped));
1782 mapped[source] = (char) target;
1788 for (n = m = 0; n < sizeof(mapped); n++) {
1789 if (mapped[n]) {
1791 acs_chars[m++] = mapped[n];
/freebsd-13-stable/sys/amd64/vmm/amd/
H A Damdvi_hw.c1140 uint64_t mapped, *ptp, len; local
1149 mapped = 0;
1150 while (mapped < size) {
1151 len = amdvi_set_pt(ptp, level, gpa + mapped, hpa + mapped,
1158 mapped += len;
1161 return (mapped);
/freebsd-13-stable/sys/dev/iser/
H A Dicl_iser.c100 tx_desc->mapped = true;
478 if (likely(tx_desc->mapped)) {
481 tx_desc->mapped = false;
/freebsd-13-stable/sys/arm/mv/
H A Dmv_localbus.c73 uint8_t mapped; /* device memory has mapping */ member in struct:localbus_bank
197 if (!(sc->sc_banks[bank].mapped)) {
214 /* Check if enough amount of memory is mapped */
481 localbus_banks[bank].mapped = 1;
/freebsd-13-stable/sys/dev/gpio/
H A Dgpiobusvar.h74 int mapped; /* pin is mapped/reserved. */ member in struct:gpiobus_pin_data
/freebsd-13-stable/sys/dev/sound/pci/
H A Daureal.c558 int i, j, mapped = 0; local
597 mapped++;
600 if (bootverbose) printf("%s\n", mapped? "ok" : "failed");
602 if (mapped) j++;
H A Dfm801.c577 int mapped = 0; local
585 for (i = 0; (mapped == 0) && (i < PCI_MAXMAPS_0); i++) {
602 mapped++;
606 if (mapped == 0) {

Completed in 307 milliseconds

123