Home | History | Annotate | Download | only in pci

Lines Matching refs:EMU_PTESIZE

846 	timer = EMU_PTESIZE / 4 / 2;
1103 * blocksize rounding to EMU_PTESIZE. It is for easy to drive.
1115 if (blksize < EMU_PTESIZE)
1116 blksize = EMU_PTESIZE;
1117 return rounddown(blksize, EMU_PTESIZE);
1125 if (bsize < EMU_MINPTE * EMU_PTESIZE) {
1126 bsize = EMU_MINPTE * EMU_PTESIZE;
1127 } else if (bsize > EMU_MAXPTE * EMU_PTESIZE) {
1128 bsize = EMU_MAXPTE * EMU_PTESIZE;
1130 return roundup(bsize, EMU_PTESIZE);
1162 npage = roundup(sc->plength, EMU_PTESIZE);
1168 dpmem += EMU_PTESIZE;