Searched refs:aflags (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/sys/arm/include/
H A Dpmap.h51 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/riscv/include/
H A Dpmap.h54 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/sparc64/include/
H A Dpmap.h82 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/arm64/include/
H A Dpmap.h56 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-bgp.c2254 u_int aflags, alenlen, alen; local
2259 aflags = *tptr;
2263 alenlen = bgp_attr_lenlen(aflags, tptr);
2267 alen = bgp_attr_len(aflags, tptr);
2277 if (aflags) {
2279 aflags & 0x80 ? "O" : "",
2280 aflags & 0x40 ? "T" : "",
2281 aflags & 0x20 ? "P" : "",
2282 aflags & 0x10 ? "E" : ""));
2283 if (aflags
2560 int aflags, atype, alenlen, alen; local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_diff.c155 arc_flags_t aflags = ARC_FLAG_WAIT; local
161 &aflags, zb) != 0)
H A Ddmu_traverse.c502 arc_flags_t aflags = ARC_FLAG_NOWAIT | ARC_FLAG_PREFETCH | local
522 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE, &aflags, zb);
H A Ddbuf.c1008 arc_flags_t aflags = ARC_FLAG_NOWAIT; local
1081 aflags |= ARC_FLAG_L2CACHE;
1092 &aflags, &zb);
2389 arc_flags_t aflags =
2397 &aflags, &dpa->dpa_zb);
2500 arc_flags_t aflags)
2581 dpa->dpa_aflags = aflags;
2499 dbuf_prefetch(dnode_t *dn, int64_t level, uint64_t blkid, zio_priority_t prio, arc_flags_t aflags) argument
H A Dzil.c209 arc_flags_t aflags = ARC_FLAG_WAIT; local
224 ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
285 arc_flags_t aflags = ARC_FLAG_WAIT; local
303 ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
H A Ddmu_send.c651 arc_flags_t aflags = ARC_FLAG_WAIT; local
658 &aflags, zb) != 0)
670 arc_flags_t aflags = ARC_FLAG_WAIT; local
676 &aflags, zb) != 0)
689 arc_flags_t aflags = ARC_FLAG_WAIT; local
732 ZIO_PRIORITY_ASYNC_READ, zioflags, &aflags, zb) != 0) {
/freebsd-11-stable/sys/mips/include/
H A Dpmap.h168 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/vm/
H A Dvm_page.h149 uint8_t aflags; /* access is atomic */ member in struct:vm_page
308 * The vm_page's aflags are updated using atomic operations. To set or clear
600 * We want to use atomic updates for the aflags field, which is 8 bits wide.
603 * require that the aflags field be 32-bit aligned.
605 CTASSERT(offsetof(struct vm_page, aflags) % sizeof(uint32_t) == 0);
622 * Access the whole 32-bit word containing the aflags field with an
626 addr = (void *)&m->aflags;
628 ("vm_page_aflag_clear: aflags is misaligned"));
647 * Access the whole 32-bit word containing the aflags field with an
651 addr = (void *)&m->aflags;
[all...]
H A Dvm_pageout.c487 KASSERT((mc[i]->aflags & PGA_WRITEABLE) == 0,
762 if ((m->aflags & PGA_REFERENCED) != 0) {
1222 if ((m->aflags & PGA_REFERENCED) != 0) {
1393 if ((m->aflags & PGA_REFERENCED) != 0) {
H A Dvm_page.c1704 m->aflags = 0;
1910 m->aflags = 0;
2038 m->aflags = 0;
2394 m_new->aflags = m->aflags;
3915 m->queue, m->hold_count, m->wire_count, m->aflags, m->oflags,
H A Dvm_swapout.c219 if ((p->aflags & PGA_REFERENCED) != 0) {
H A Dvm_mmap.c908 if ((m->aflags & PGA_REFERENCED) != 0 ||
910 (m->aflags & PGA_REFERENCED) != 0)
/freebsd-11-stable/sys/x86/iommu/
H A Dintel_utils.c260 int zeroed, aflags; local
263 aflags = zeroed | VM_ALLOC_NOBUSY | VM_ALLOC_SYSTEM | VM_ALLOC_NODUMP |
275 m = vm_page_alloc_contig(obj, idx, aflags, 1, 0,
/freebsd-11-stable/sys/powerpc/include/
H A Dpmap.h231 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/i386/include/
H A Dpmap.h385 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/contrib/binutils/binutils/
H A Dobjdump.c504 flagword aflags;
556 aflags = a->flags;
559 if ((aflags & BSF_DEBUGGING) != (bflags & BSF_DEBUGGING))
561 if ((aflags & BSF_DEBUGGING) != 0)
566 if ((aflags & BSF_FUNCTION) != (bflags & BSF_FUNCTION))
568 if ((aflags & BSF_FUNCTION) != 0)
573 if ((aflags & BSF_LOCAL) != (bflags & BSF_LOCAL))
575 if ((aflags & BSF_LOCAL) != 0)
580 if ((aflags & BSF_GLOBAL) != (bflags & BSF_GLOBAL))
582 if ((aflags
500 flagword aflags; local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddbuf.h298 zio_priority_t prio, arc_flags_t aflags);
/freebsd-11-stable/sys/powerpc/aim/
H A Dmmu_oea64.c1379 if (pmap != kernel_pmap && !(m->aflags & PGA_EXECUTABLE) &&
1606 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
1640 if ((m->aflags & PGA_WRITEABLE) == 0)
1664 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
2066 if (pm != kernel_pmap && pg != NULL && !(pg->aflags & PGA_EXECUTABLE) &&
2282 KASSERT(!(m->aflags & PGA_WRITEABLE), ("Page still writable"));
H A Dmmu_oea.c1334 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
1370 if ((m->aflags & PGA_WRITEABLE) == 0)
1397 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
1866 if ((m->aflags & PGA_WRITEABLE) && moea_query_bit(m, PTE_CHG)) {
/freebsd-11-stable/sys/amd64/include/
H A Dpmap.h403 #define pmap_page_is_write_mapped(m) (((m)->aflags & PGA_WRITEABLE) != 0)
/freebsd-11-stable/sys/arm64/arm64/
H A Dpmap.c3111 if ((om->aflags & PGA_WRITEABLE) != 0 &&
3796 if ((mt->aflags & PGA_WRITEABLE) != 0 &&
3818 if ((m->aflags & PGA_WRITEABLE) != 0 &&
3958 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
4024 if (!vm_page_xbusied(m) && (m->aflags & PGA_WRITEABLE) == 0)
4339 if ((m->aflags & PGA_WRITEABLE) == 0)

Completed in 419 milliseconds

12