Symbol: PGOFSET
lib/libkvm/kvm_hppa.c
119
page_off = va & PGOFSET;
lib/libkvm/kvm_i386.c
145
page_off = va & PGOFSET;
lib/libkvm/kvm_i386pae.c
77
page_off = va & PGOFSET;
lib/libkvm/kvm_mips.c
100
page_off = va & PGOFSET;
lib/libkvm/kvm_x86_64.c
180
page_off = va & PGOFSET;
sys/arch/aarch64/aarch64/pmap.c
1215
KDASSERT((va & PGOFSET) == 0);
sys/arch/aarch64/aarch64/pmap.c
1216
KDASSERT((size & PGOFSET) == 0);
sys/arch/aarch64/aarch64/pmap_machdep.c
114
pa = pte_to_paddr(pte) | (va & PGOFSET);
sys/arch/aarch64/include/param.h
166
#define aarch64_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/acorn32/podulebus/ptsc.c
434
max_t = PAGE_SIZE - (pa & PGOFSET);
sys/arch/alpha/alpha/pmap.c
2625
pa = pmap_pte_pa(l3pte) | (va & PGOFSET);
sys/arch/alpha/alpha/pmap.c
3256
pa = pmap_pte_pa(pte) | (vaddr & PGOFSET);
sys/arch/alpha/common/bus_dma.c
166
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/alpha/common/sgmap_common.c
66
if (sgvasize & PGOFSET) {
sys/arch/alpha/common/sgmap_typedep.c
93
dmaoffset = ((u_long)buf) & PGOFSET;
sys/arch/amd64/include/param.h
141
#define x86_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/amd64/include/param.h
142
#define x86_trunc_page(x) ((unsigned long)(x) & ~PGOFSET)
sys/arch/amiga/dev/grfabs_cc.c
314
#define m68k_round_page(x) ((((unsigned)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/amiga/dev/sbic.c
2566
if (len < (phy_len = PAGE_SIZE - ((int) buffer & PGOFSET)))
sys/arch/amiga/dev/sbic.c
351
for (count = (PAGE_SIZE - ((int)vaddr & PGOFSET));
sys/arch/amiga/dev/siop.c
827
if (count < (tcount = PAGE_SIZE - ((int) addr & PGOFSET)))
sys/arch/amiga/dev/siop2.c
881
if (count < (tcount = PAGE_SIZE - ((int) addr & PGOFSET)))
sys/arch/amigappc/amigappc/machdep.c
512
physmemr[r].size = (psize_t)ms->ms_size & ~PGOFSET;
sys/arch/amigappc/amigappc/machdep.c
513
availmemr[r].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/arc/arc/bus_dma.c
172
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/arc/arc/bus_dma.c
721
if ((u_long)kva & PGOFSET)
sys/arch/arc/arc/bus_dma.c
751
if (off & PGOFSET)
sys/arch/arc/arc/bus_dma.c
753
if (segs[i]._ds_paddr & PGOFSET)
sys/arch/arc/arc/bus_dma.c
755
if (segs[i].ds_len & PGOFSET)
sys/arch/arc/arc/bus_space_sparse.c
105
vaddr += (offset & PGOFSET);
sys/arch/arm/arm32/arm32_kvminit.c
781
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/arm/arm32/bus_dma.c
1714
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/arm/arm32/kgdb_machdep.c
54
va &= ~PGOFSET;
sys/arch/arm/arm32/kgdb_machdep.c
55
last_va &= ~PGOFSET;
sys/arch/arm/arm32/pmap.c
1678
vaddr_t va = (vaddr_t)v & ~PGOFSET;
sys/arch/arm/arm32/pmap.c
3116
KDASSERT(((va | pa) & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5496
KDASSERT((pa & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5565
KDASSERT((pa & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5624
KDASSERT((pa & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5745
KDASSERT((src & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5746
KDASSERT((dst & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5855
KDASSERT((src & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5856
KDASSERT((dst & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5920
KASSERT((va & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
5995
if ((nva & PGOFSET) == 0) {
sys/arch/arm/arm32/pmap.c
6006
if ((nva & PGOFSET) < (pmap_kernel_l2dtable_kva & PGOFSET)) {
sys/arch/arm/arm32/pmap.c
6011
if (pmap_grow_map(nva & ~PGOFSET, NULL))
sys/arch/arm/arm32/pmap.c
6037
if ((nva & PGOFSET) == 0) {
sys/arch/arm/arm32/pmap.c
6895
if (pv->pv_pa == (pa & ~PGOFSET))
sys/arch/arm/arm32/pmap.c
6896
return pv->pv_va | (pa & PGOFSET);
sys/arch/arm/arm32/pmap.c
6953
KASSERT(((va | pa) & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
7003
KASSERT((l2pv->pv_pa & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
8074
KASSERT(amount & PGOFSET);
sys/arch/arm/arm32/pmap.c
8075
KASSERT((mask & PGOFSET) == 0);
sys/arch/arm/arm32/pmap.c
8076
KASSERT((match & PGOFSET) == 0);
sys/arch/arm/at91/at91bus.c
371
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/arm/at91/at91bus.c
372
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/arm/at91/at91bus.c
421
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/arm/footbridge/footbridge_io.c
221
*bshp = va + (bpa & PGOFSET);
sys/arch/arm/gemini/if_gmc.c
121
count += ((addr & PGOFSET) + m->m_len + PGOFSET) >> PGSHIFT;
sys/arch/arm/iomd/iomd_dma.c
210
len = PAGE_SIZE - (cur & PGOFSET);
sys/arch/arm/iomd/vidcaudio.c
520
(sc->sc_poffset & PGOFSET);
sys/arch/arm/s3c2xx0/s3c2800_pci.c
367
*bshp = va + (bpa & PGOFSET);
sys/arch/atari/atari/bus.c
290
*bshp = va + (bpa & PGOFSET);
sys/arch/atari/atari/bus.c
299
*bshp = va + (bpa & PGOFSET);
sys/arch/atari/atari/bus.c
336
bpa += ((paddr_t)bsh & PGOFSET);
sys/arch/atari/atari/bus.c
896
if ((vaddr_t)kva & PGOFSET)
sys/arch/atari/atari/bus.c
921
if ((off & PGOFSET) != 0)
sys/arch/atari/atari/bus.c
923
if ((segs[i].ds_addr & PGOFSET) != 0)
sys/arch/atari/atari/bus.c
925
if ((segs[i].ds_len & PGOFSET) != 0)
sys/arch/atari/atari/bus.c
978
sgsize = PAGE_SIZE - ((vaddr_t)vaddr & PGOFSET);
sys/arch/atari/dev/ncr5380.c
1856
(phy_len = PAGE_SIZE - ((u_long)req_addr & PGOFSET)))
sys/arch/bebox/bebox/machdep.c
124
physmemr[0].size = meminfo->memsize & ~PGOFSET;
sys/arch/bebox/bebox/machdep.c
125
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/cesfic/cesfic/autoconf.c
123
*virtaddr = (void*)(va + (physaddr & PGOFSET));
sys/arch/emips/emips/bus_dma.c
185
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/epoc32/epoc32/machdep.c
311
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/epoc32/epoc32/machdep.c
312
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/adi_brh/brh_machdep.c
549
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/adi_brh/brh_machdep.c
550
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/adi_brh/brh_machdep.c
672
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/armadillo/armadillo9_machdep.c
676
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/armadillo/armadillo9_machdep.c
677
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/armadillo/armadillo9_machdep.c
726
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
659
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
660
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
737
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/hdl_g/hdlg_machdep.c
432
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/hdl_g/hdlg_machdep.c
433
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/hdl_g/hdlg_machdep.c
500
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/ifpga/ifpga_io.c
272
*bshp = va + (bpa & PGOFSET);
sys/arch/evbarm/imx31/imx31lk_machdep.c
620
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/iq80310/iq80310_machdep.c
552
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iq80310/iq80310_machdep.c
553
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iq80310/iq80310_machdep.c
620
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/iq80321/iq80321_machdep.c
578
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iq80321/iq80321_machdep.c
579
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iq80321/iq80321_machdep.c
646
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/ixdp425/ixdp425_machdep.c
560
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/ixdp425/ixdp425_machdep.c
561
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/ixdp425/ixdp425_machdep.c
630
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/ixm1200/ixm1200_machdep.c
507
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/ixm1200/ixm1200_machdep.c
508
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iyonix/iyonix_machdep.c
514
(((uintptr_t) _end - KERNEL_TEXT_BASE + PGOFSET) & ~PGOFSET);
sys/arch/evbarm/iyonix/iyonix_machdep.c
657
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/iyonix/iyonix_machdep.c
658
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/lubbock/lubbock_machdep.c
737
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/lubbock/lubbock_machdep.c
738
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/lubbock/lubbock_machdep.c
815
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/mini2440/mini2440_machdep.c
731
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/mini2440/mini2440_machdep.c
732
kerneldatasize = (kerneldatasize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/npwr_fc/npwr_fc_machdep.c
561
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/npwr_fc/npwr_fc_machdep.c
562
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/npwr_fc/npwr_fc_machdep.c
629
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/nslu2/nslu2_machdep.c
618
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/nslu2/nslu2_machdep.c
619
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/nslu2/nslu2_machdep.c
691
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/smdk2xx0/smdk2410_machdep.c
676
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/smdk2xx0/smdk2410_machdep.c
677
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/smdk2xx0/smdk2410_machdep.c
751
(((((uintptr_t)&end) + PGOFSET) & ~PGOFSET) - KERNEL_BASE);
sys/arch/evbarm/smdk2xx0/smdk2800_machdep.c
587
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/smdk2xx0/smdk2800_machdep.c
588
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/smdk2xx0/smdk2800_machdep.c
662
(((((uintptr_t)&end) + PGOFSET) & ~PGOFSET) - KERNEL_BASE);
sys/arch/evbarm/tsarm/tsarm_machdep.c
577
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/tsarm/tsarm_machdep.c
578
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/tsarm/tsarm_machdep.c
627
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbarm/viper/viper_machdep.c
599
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/viper/viper_machdep.c
600
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/evbarm/viper/viper_machdep.c
677
(((((uintptr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/evbppc/nintendo/machdep.c
301
availmemr[0].start = ((endkernel & ~0x80000000) + PGOFSET) & ~PGOFSET;
sys/arch/evbppc/nintendo/machdep.c
360
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/evbppc/pmppc/machdep.c
176
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/evbppc/virtex/machdep.c
114
memsize = (PHYSMEM * 1024 * 1024) & ~PGOFSET;
sys/arch/evbsh3/ap_ms104_sh4/ap_ms104_sh4_space.c
104
*bshp = (bus_space_handle_t)(va + (bpa & PGOFSET));
sys/arch/evbsh3/ap_ms104_sh4/ap_ms104_sh4_space.c
179
bpa += bsh & PGOFSET;
sys/arch/evbsh3/evbsh3/bus_dma.c
264
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/evbsh3/evbsh3/bus_dma.c
321
sgsize = PAGE_SIZE - ((u_long)addr & PGOFSET);
sys/arch/evbsh3/evbsh3/bus_dma.c
412
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/evbsh3/t_sh7706lan/t_sh7706lan_space.c
104
*bshp = (bus_space_handle_t)(va + (bpa & PGOFSET));
sys/arch/evbsh3/t_sh7706lan/t_sh7706lan_space.c
179
bpa += bsh & PGOFSET;
sys/arch/ews4800mips/ews4800mips/bus_dma.c
167
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/hp300/dev/dma.c
444
if (count < (tcount = PAGE_SIZE - ((int)addr & PGOFSET)))
sys/arch/hp300/hp300/autoconf.c
1058
KASSERT((pa & PGOFSET) == 0);
sys/arch/hp300/hp300/autoconf.c
1059
KASSERT((size & PGOFSET) == 0);
sys/arch/hp300/hp300/autoconf.c
1086
KASSERT((va & PGOFSET) == 0);
sys/arch/hp300/hp300/autoconf.c
1087
KASSERT((size & PGOFSET) == 0);
sys/arch/hpcmips/hpcmips/bus_dma.c
178
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/hppa/hppa/machdep.c
1259
slot_mapped_frames = ((*sizep + PGOFSET) >> PGSHIFT);
sys/arch/hppa/hppa/mainbus.c
1218
KASSERT((off & PGOFSET) == 0);
sys/arch/hppa/hppa/mainbus.c
1219
KASSERT((segs[i].ds_addr & PGOFSET) == 0);
sys/arch/hppa/hppa/mainbus.c
1220
KASSERT((segs[i].ds_len & PGOFSET) == 0);
sys/arch/hppa/hppa/mainbus.c
1261
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/hppa/hppa/pmap.c
1847
*pap = (pte & ~PGOFSET) | (va & PGOFSET);
sys/arch/hppa/hppa/pmap.c
340
KASSERT((ptp & PGOFSET) == 0);
sys/arch/hppa/hppa/pmap.c
438
KASSERT(((paddr_t)pde & PGOFSET) == 0);
sys/arch/hppa/include/pte.h
40
#define PTE_PAGE(pte) ((pte) & ~PGOFSET)
sys/arch/i386/include/param.h
158
#define x86_round_page(x) ((((paddr_t)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/i386/include/param.h
159
#define x86_trunc_page(x) ((paddr_t)(x) & ~PGOFSET)
sys/arch/ibmnws/ibmnws/machdep.c
130
physmemr[0].size = memsize & ~PGOFSET;
sys/arch/ibmnws/ibmnws/machdep.c
131
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/iyonix/iyonix/iyonix_machdep.c
484
(((uintptr_t) _end - KERNEL_TEXT_BASE + PGOFSET) & ~PGOFSET);
sys/arch/iyonix/iyonix/iyonix_machdep.c
629
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/iyonix/iyonix/iyonix_machdep.c
630
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/landisk/dev/obio.c
277
*bshp = (bus_space_handle_t)(va + (bpa & PGOFSET));
sys/arch/landisk/dev/obio.c
352
bpa += bsh & PGOFSET;
sys/arch/landisk/landisk/bus_dma.c
264
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/landisk/landisk/bus_dma.c
321
sgsize = PAGE_SIZE - ((u_long)addr & PGOFSET);
sys/arch/landisk/landisk/bus_dma.c
412
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/m68k/include/param.h
129
#define m68k_round_page(x) ((((vaddr_t)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/m68k/include/param.h
130
#define m68k_trunc_page(x) ((vaddr_t)(x) & ~PGOFSET)
sys/arch/m68k/include/param.h
131
#define m68k_page_offset(x) ((vaddr_t)(x) & PGOFSET)
sys/arch/macppc/dev/awacs.c
663
return size & ~PGOFSET;
sys/arch/macppc/dev/esp.c
317
offset = va & PGOFSET;
sys/arch/macppc/dev/if_mc.c
158
if ((int)sc->sc_txbuf & PGOFSET)
sys/arch/macppc/dev/if_mc.c
160
if ((int)sc->sc_rxbuf & PGOFSET)
sys/arch/macppc/dev/kauai.c
318
offset = va & PGOFSET;
sys/arch/macppc/dev/mesh.c
585
offset = va & PGOFSET;
sys/arch/macppc/dev/snapper.c
988
return size & ~PGOFSET;
sys/arch/macppc/dev/wdc_obio.c
480
offset = va & PGOFSET;
sys/arch/mips/mips/bus_dma.c
1170
if ((uintptr_t)kva & PGOFSET)
sys/arch/mips/mips/bus_dma.c
1204
if (off & PGOFSET)
sys/arch/mips/mips/bus_dma.c
1206
if (segs[i].ds_addr & PGOFSET)
sys/arch/mips/mips/bus_dma.c
1208
if (segs[i].ds_len & PGOFSET)
sys/arch/mips/mips/bus_dma.c
149
bus_size_t sgsize = PAGE_SIZE - ((uintptr_t)vaddr & PGOFSET);
sys/arch/mips/mips/kgdb_machdep.c
120
va &= ~PGOFSET;
sys/arch/mips/mips/kgdb_machdep.c
121
last_va &= ~PGOFSET;
sys/arch/mips/mips/pmap_machdep.c
604
MIPS_PHYS_TO_KSEG0(pte_to_paddr(entry) + (va & PGOFSET)),
sys/arch/mips/mips/vm_machdep.c
375
phys = pte_to_paddr(*ptep) | (kva & PGOFSET);
sys/arch/mipsco/mipsco/bus_dma.c
166
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/mmeye/mmeye/machdep.c
734
*bshp = (bus_space_handle_t)(va + (addr & PGOFSET));
sys/arch/mvme68k/dev/sbic.c
2553
phy_len = PAGE_SIZE - ((int)buffer & PGOFSET);
sys/arch/mvme68k/dev/sbic.c
347
for (count = (PAGE_SIZE - ((int)vaddr & PGOFSET));
sys/arch/mvmeppc/mvmeppc/machdep.c
135
physmemr[0].size = bootinfo.bi_memsize & ~PGOFSET;
sys/arch/mvmeppc/mvmeppc/machdep.c
136
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/netwinder/netwinder/netwinder_machdep.c
462
physical_freestart = ((((vaddr_t) _end) + PGOFSET) & ~PGOFSET) -
sys/arch/netwinder/netwinder/netwinder_machdep.c
596
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/netwinder/netwinder/netwinder_machdep.c
597
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/netwinder/netwinder/netwinder_machdep.c
599
textsize = textsize & ~PGOFSET;
sys/arch/netwinder/netwinder/netwinder_machdep.c
600
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/arch/newsmips/apbus/dmac3.c
161
addr &= PGOFSET;
sys/arch/newsmips/apbus/if_sn.c
957
(rxpkt_ptr & PGOFSET);
sys/arch/newsmips/dev/sc_wrap.c
313
offset = va & PGOFSET;
sys/arch/newsmips/dev/scsi_1185.c
1747
cs->act_offset = offset & PGOFSET;
sys/arch/newsmips/dev/scsi_1185.c
310
scb->sc_coffset = scb->sc_map->mp_offset & PGOFSET;
sys/arch/newsmips/dev/scsi_1185.c
320
scb->sc_coffset = (u_int)scb->sc_cpoint & PGOFSET;
sys/arch/newsmips/newsmips/bus.c
231
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/playstation2/playstation2/bus_dma.c
165
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/pmax/pmax/bus_dma.c
185
sgsize = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/powerpc/ibm4xx/ibm40x_machdep.c
100
physmemr[0].size = memsize & ~PGOFSET;
sys/arch/powerpc/ibm4xx/pmap.c
1036
*pap = TTE_PA(pa) | (va & PGOFSET);
sys/arch/powerpc/ibm4xx/pmap.c
1384
(~PGOFSET)) &&
sys/arch/powerpc/ibm4xx/pmap.c
343
kernelstart &= ~PGOFSET;
sys/arch/powerpc/ibm4xx/pmap.c
344
kernelend = (kernelend + PGOFSET) & ~PGOFSET;
sys/arch/powerpc/include/ibm4xx/pmap.h
123
#define PTMSK ((PTMAP - 1) & ~(PGOFSET))
sys/arch/powerpc/powerpc/bus_dma.c
196
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/powerpc/powerpc/bus_dma.c
464
sgsize = PAGE_SIZE - ((u_long)curaddr & PGOFSET);
sys/arch/powerpc/powerpc/bus_dma.c
805
if (va & PGOFSET)
sys/arch/powerpc/powerpc/bus_dma.c
827
if (off & PGOFSET)
sys/arch/powerpc/powerpc/bus_dma.c
829
if (BUS_MEM_TO_PHYS(t, segs[i].ds_addr) & PGOFSET)
sys/arch/powerpc/powerpc/bus_dma.c
831
if (segs[i].ds_len & PGOFSET)
sys/arch/powerpc/powerpc/kgdb_machdep.c
162
va &= ~PGOFSET;
sys/arch/powerpc/powerpc/kgdb_machdep.c
163
last_va &= ~PGOFSET;
sys/arch/prep/prep/machdep.c
149
physmemr[0].size = memsize & ~PGOFSET;
sys/arch/prep/prep/machdep.c
150
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/riscv/riscv/bus_dma.c
1614
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/rs6000/rs6000/machdep.c
265
physmemr[0].size = memsize & ~PGOFSET;
sys/arch/sandpoint/sandpoint/machdep.c
138
memsize = meminfo->memsize & ~PGOFSET;
sys/arch/sandpoint/sandpoint/machdep.c
144
availmemr[0].start = (endkernel + PGOFSET) & ~PGOFSET;
sys/arch/sh3/include/vmparam.h
85
#define sh3_round_page(x) ((((uint32_t)(x)) + PGOFSET) & ~PGOFSET)
sys/arch/sh3/include/vmparam.h
86
#define sh3_trunc_page(x) ((uint32_t)(x) & ~PGOFSET)
sys/arch/sh3/sh3/kgdb_machdep.c
127
va &= ~PGOFSET;
sys/arch/sh3/sh3/kgdb_machdep.c
128
last_va &= ~PGOFSET;
sys/arch/sh3/sh3/mmu_sh3.c
133
KDASSERT(asid < 256 && (pte & ~PGOFSET) != 0 && va != 0);
sys/arch/sh3/sh3/mmu_sh4.c
197
KDASSERT((pte & ~PGOFSET) != 0);
sys/arch/sh3/sh3/mmu_sh4.c
208
_reg_write_4(SH4_PTEH, (va & ~PGOFSET) | asid);
sys/arch/sh3/sh3/pmap.c
520
KDASSERT((sva & PGOFSET) == 0);
sys/arch/sh3/sh3/pmap.c
588
KDASSERT((va & PGOFSET) == 0);
sys/arch/sh3/sh3/pmap.c
614
KDASSERT((va & PGOFSET) == 0);
sys/arch/sh3/sh3/pmap.c
615
KDASSERT((len & PGOFSET) == 0);
sys/arch/sh3/sh3/pmap.c
649
*pap = (*pte & PG_PPN) | (va & PGOFSET);
sys/arch/shark/ofw/ofrom.c
178
o = uio->uio_offset & PGOFSET;
sys/arch/shark/ofw/ofw.c
1035
if ((va & PGOFSET) != 0 || va < OFW_VIRT_BASE ||
sys/arch/shark/ofw/ofw.c
1037
(pa & PGOFSET) != 0 || (size & PGOFSET) != 0 ||
sys/arch/shark/ofw/ofw.c
1084
if ((va & PGOFSET) != 0 || va < OFW_VIRT_BASE ||
sys/arch/shark/ofw/ofw.c
1086
(size & PGOFSET) != 0 || size == 0) {
sys/arch/shark/ofw/ofw.c
1131
if ((va & PGOFSET) != 0 || va < OFW_VIRT_BASE ||
sys/arch/sparc/dev/cgeight.c
428
if (off & PGOFSET)
sys/arch/sparc/dev/cgfour.c
544
if (off & PGOFSET)
sys/arch/sparc/dev/cgfourteen.c
545
if (off & PGOFSET)
sys/arch/sparc/dev/cgtwo.c
392
if (off & PGOFSET)
sys/arch/sparc/dev/if_ie_obio.c
361
sc->scp = IE_SCP_ADDR & PGOFSET;
sys/arch/sparc/dev/obio.c
320
*hp = (bus_space_handle_t)(va | (pa & PGOFSET));
sys/arch/sparc/sparc/cache.c
148
cache_alias_bits = (cache_alias_dist - 1) & ~PGOFSET;
sys/arch/sparc/sparc/cache.c
219
cache_alias_bits = (alias_dist - 1) & ~PGOFSET;
sys/arch/sparc/sparc/cache.c
265
cache_alias_bits = (cache_alias_dist - 1) & ~PGOFSET;
sys/arch/sparc/sparc/cache.c
297
cache_alias_bits = (alias_dist - 1) & ~PGOFSET;
sys/arch/sparc/sparc/cache.c
330
cache_alias_bits = (cache_alias_dist - 1) & ~PGOFSET;
sys/arch/sparc/sparc/cache.c
471
if (va & PGOFSET)
sys/arch/sparc/sparc/cache.c
495
if (va & PGOFSET)
sys/arch/sparc/sparc/cache.c
541
baseoff = (int)base & PGOFSET;
sys/arch/sparc/sparc/cache.c
542
i = (baseoff + len + PGOFSET) >> PGSHIFT;
sys/arch/sparc/sparc/cache.c
674
if (va & PGOFSET)
sys/arch/sparc/sparc/cache.c
750
offset = va & PGOFSET;
sys/arch/sparc/sparc/cache.c
751
i = (offset + len + PGOFSET) >> PGSHIFT;
sys/arch/sparc/sparc/cache.c
753
va = va & ~PGOFSET;
sys/arch/sparc/sparc/cache.h
122
#define GUESS_CACHE_ALIAS_BITS ((cpuinfo.cacheinfo.c_totalsize - 1) & ~PGOFSET)
sys/arch/sparc/sparc/iommu.c
466
off = (int)va & PGOFSET;
sys/arch/sparc/sparc/machdep.c
2889
*hp = (bus_space_handle_t)(v | ((u_long)pa & PGOFSET));
sys/arch/sparc/sparc/pmap.c
3053
etext_gap_start = (vaddr_t)(etext + NBPG - 1) & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
3054
etext_gap_end = (vaddr_t)kernel_data_start & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
3252
p = (p + NBPG - 1) & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
3573
p = (p + NBPG - 1) & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
3625
p = (p + NBPG - 1) & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
3684
p = (p + NBPG - 1) & ~PGOFSET;
sys/arch/sparc/sparc/pmap.c
6750
*pap = (pte << PGSHIFT) | (va & PGOFSET);
sys/arch/sparc/sparc/pmap.c
7812
va = (unsigned long)dst & (~PGOFSET);
sys/arch/sparc/stand/common/promdev.c
684
getpte4((u_long)si->si_devaddr & ~PGOFSET));
sys/arch/sparc/stand/common/promdev.c
788
return ((char *)(prom_devmap | (pa & PGOFSET)));
sys/arch/sparc64/dev/iommu.c
1287
if ((u_long)kva & PGOFSET)
sys/arch/sparc64/dev/iommu.c
589
sgsize = round_page(buflen + ((int)vaddr & PGOFSET));
sys/arch/sparc64/dev/iommu.c
637
sgstart = dvmaddr + (vaddr & PGOFSET);
sys/arch/sparc64/dev/iommu.c
696
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/sparc64/dev/iommu.c
822
(segs[i].ds_addr & PGOFSET);
sys/arch/sparc64/dev/iommu.c
882
offset = (pa & PGOFSET);
sys/arch/sparc64/dev/iommu.c
926
end = (offset + left) & PGOFSET;
sys/arch/sparc64/dev/psycho.c
1234
addr += hp->_ptr & PGOFSET;
sys/arch/sparc64/include/vmparam.h
179
#define VM_MAX_ADDRESS (((vaddr_t)(-1))&~PGOFSET)
sys/arch/sparc64/include/vmparam.h
181
#define VM_MAXUSER_ADDRESS32 ((vaddr_t)(0x00000000ffffffffL&~PGOFSET))
sys/arch/sparc64/sparc64/machdep.c
1013
sgsize = round_page(buflen + ((int)vaddr & PGOFSET));
sys/arch/sparc64/sparc64/machdep.c
1022
incr = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/sparc64/sparc64/machdep.c
1086
incr = PAGE_SIZE - (vaddr & PGOFSET);
sys/arch/sparc64/sparc64/machdep.c
1495
if ((u_long)kva & PGOFSET)
sys/arch/sparc64/sparc64/machdep.c
1515
if (off & PGOFSET)
sys/arch/sparc64/sparc64/machdep.c
1517
if (segs[i].ds_addr & PGOFSET)
sys/arch/sparc64/sparc64/machdep.c
1519
if (segs[i].ds_len & PGOFSET)
sys/arch/sparc64/sparc64/machdep.c
2307
hp->_ptr = (v | ((u_long)addr & PGOFSET));
sys/arch/sparc64/sparc64/pmap.c
2324
*pap = pa + (va & PGOFSET);
sys/arch/sun2/dev/if_ie_obio.c
369
sc->scp = IE_SCP_ADDR & PGOFSET;
sys/arch/sun2/sun2/machdep.c
937
if ((((u_long)pa & PGOFSET) + len) > PAGE_SIZE)
sys/arch/sun2/sun2/machdep.c
973
*vap = (va | ((vaddr_t)pa & PGOFSET));
sys/arch/sun2/sun2/promlib.c
356
u_int stackpage = ((u_int)fp) & ~PGOFSET;
sys/arch/sun2/sun2/promlib.c
368
} while ( (((u_int)fp) & ~PGOFSET) == stackpage);
sys/arch/sun3/dev/bw2.c
328
if (off & PGOFSET)
sys/arch/sun3/dev/cg2.c
234
if (off & PGOFSET)
sys/arch/sun3/dev/cg4.c
377
if (off & PGOFSET)
sys/arch/sun3/sun3/bus_subr.c
139
off = pa & PGOFSET;
sys/arch/sun3/sun3/bus_subr.c
179
off = va & PGOFSET;
sys/arch/sun3/sun3/bus_subr.c
94
off = pa & PGOFSET;
sys/arch/sun3/sun3/cache.c
69
pgva &= (VADDR_MASK & ~PGOFSET);
sys/arch/sun3/sun3/dvma.c
306
off = kva & PGOFSET;
sys/arch/sun3/sun3/dvma.c
372
dva = segs[0]._ds_va & ~PGOFSET;
sys/arch/sun3/sun3/obio.c
259
off = pa & PGOFSET;
sys/arch/sun3/sun3/sunmon.c
177
u_int stackpage = ((u_int)fp) & ~PGOFSET;
sys/arch/sun3/sun3/sunmon.c
189
} while ( (((u_int)fp) & ~PGOFSET) == stackpage);
sys/arch/sun3/sun3x/bus_subr.c
139
off = pa & PGOFSET;
sys/arch/sun3/sun3x/bus_subr.c
178
off = va & PGOFSET;
sys/arch/sun3/sun3x/bus_subr.c
90
off = pa & PGOFSET;
sys/arch/sun3/sun3x/dvma.c
180
off = kva & PGOFSET;
sys/arch/sun3/sun3x/dvma.c
246
off = (int)kva & PGOFSET;
sys/arch/sun3/sun3x/dvma.c
319
off = kva & PGOFSET;
sys/arch/sun3/sun3x/dvma.c
385
dva = segs[0]._ds_va & ~PGOFSET;
sys/arch/sun3/sun3x/obio.c
285
off = pa & PGOFSET;
sys/arch/sun3/sun3x/pmap.c
2162
if ((va & PGOFSET) || (len & PGOFSET))
sys/arch/sun3/sun3x/pmap.c
2974
if ((sva & PGOFSET) || (eva & PGOFSET))
sys/arch/sun3/sun3x/pmap.c
3654
pte_pa = ptest_addr(va & ~PGOFSET);
sys/arch/sun68k/stand/libsa/sun2.c
137
va += (physaddr & PGOFSET);
sys/arch/sun68k/stand/libsa/sun3.c
130
va += (physaddr & PGOFSET);
sys/arch/sun68k/stand/libsa/sun3x.c
131
va += (physaddr & PGOFSET);
sys/arch/sun68k/sun68k/bus.c
532
offset = addr & PGOFSET;
sys/arch/sun68k/sun68k/bus.c
571
offset = va & PGOFSET;
sys/arch/usermode/usermode/db_memrw.c
168
limit = PAGE_SIZE - (addr & PGOFSET);
sys/arch/usermode/usermode/kgdb_machdep.c
58
va &= ~PGOFSET;
sys/arch/usermode/usermode/kgdb_machdep.c
59
last_va &= ~PGOFSET;
sys/arch/vax/vax/bus_dma.c
491
if ((u_long)kva & PGOFSET)
sys/arch/vax/vax/bus_dma.c
517
if (off & PGOFSET)
sys/arch/vax/vax/bus_dma.c
519
if (segs[i].ds_addr & PGOFSET)
sys/arch/vax/vax/bus_dma.c
521
if (segs[i].ds_len & PGOFSET)
sys/arch/vax/vax/bus_dma.c
586
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/vax/vax/locore.c
340
avail_end &= ~PGOFSET; /* be sure */
sys/arch/vax/vax/pmap.c
1388
addr &= ~PGOFSET;
sys/arch/vax/vax/sgmap.c
55
if (sgvasize & PGOFSET) {
sys/arch/vax/vsa/vsbus.c
293
if ((vaddr_t)to & PGOFSET) {
sys/arch/vax/vsa/vsbus.c
333
if ((vaddr_t)from & PGOFSET) {
sys/arch/x86/x86/bios32.c
257
smbios_entry.addr = (uint8_t *)(eva + (sh->addr & PGOFSET));
sys/arch/x86/x86/bios32.c
292
smbios_entry.addr = (uint8_t *)(eva + ((vaddr_t)sh->addr & PGOFSET));
sys/arch/x86/x86/bus_dma.c
1223
KASSERTMSG(((uintptr_t)kva & PGOFSET) == 0, "kva=%p", kva);
sys/arch/x86/x86/bus_dma.c
1254
KASSERTMSG((off & PGOFSET) == 0, "off=0x%jx", (uintmax_t)off);
sys/arch/x86/x86/bus_dma.c
1255
KASSERTMSG((segs[i].ds_addr & PGOFSET) == 0,
sys/arch/x86/x86/bus_dma.c
1257
KASSERTMSG((segs[i].ds_len & PGOFSET) == 0,
sys/arch/x86/x86/bus_dma.c
1303
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/arch/x86/x86/bus_space.c
460
*bshp = (bus_space_handle_t)(sva + (bpa & PGOFSET));
sys/arch/x86/x86/bus_space.c
519
bpa += (bsh & PGOFSET);
sys/arch/x86/x86/bus_space.c
565
bpa += (bsh & PGOFSET);
sys/arch/x86/x86/db_memrw.c
168
limit = PAGE_SIZE - (addr & PGOFSET);
sys/arch/x86/x86/kgdb_machdep.c
87
va &= ~PGOFSET;
sys/arch/x86/x86/kgdb_machdep.c
88
last_va &= ~PGOFSET;
sys/arch/x86/x86/mpbios.c
259
vaddr_t retva = va + (pa & PGOFSET);
sys/arch/zaurus/zaurus/machdep.c
1037
((((uintptr_t) esym + PGOFSET) & ~PGOFSET) - KERNEL_BASE);
sys/arch/zaurus/zaurus/machdep.c
952
textsize = (textsize + PGOFSET) & ~PGOFSET;
sys/arch/zaurus/zaurus/machdep.c
953
totalsize = (totalsize + PGOFSET) & ~PGOFSET;
sys/compat/linux/arch/amd64/linux_exec_machdep.c
79
#define USRSTACK32 (0x00000000ffffffffL & ~PGOFSET)
sys/compat/linux/arch/i386/linux_exec_machdep.c
74
#define USRSTACK32 (0x00000000ffffffffL&~PGOFSET)
sys/dev/ic/lsi64854.c
339
if ((eaddr & PGOFSET) != 0)
sys/dev/sbus/p9100.c
1038
if (off & PGOFSET)
sys/dev/sbus/tcx.c
670
if (off & PGOFSET)
sys/dev/sun/bwtwo.c
384
if (off & PGOFSET)
sys/dev/sun/cgsix.c
1041
if (off & PGOFSET)
sys/dev/sun/cgthree.c
384
if (off & PGOFSET)
sys/dev/usb/udl.c
689
paddr += vaddr & PGOFSET;
sys/rump/dev/lib/libpci/rumpdev_bus_dma.c
190
sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
sys/uvm/pmap/pmap.c
1875
pa = pte_to_paddr(pte) | (va & PGOFSET);