Searched refs:L2_TABLE_SIZE_REAL (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/sys/arm/include/
H A Dpte-v4.h152 * should use L2_TABLE_SIZE_REAL until then.
154 #define L2_TABLE_SIZE_REAL 0x400 /* 1K */ macro
157 #define L2_PTE_NUM_TOTAL (L2_TABLE_SIZE_REAL / sizeof(pt_entry_t))
/freebsd-11-stable/sys/arm/cavium/cns11xx/
H A Decona_machdep.c93 /* this should be evenly divisable by PAGE_SIZE / L2_TABLE_SIZE_REAL (or 4) */
192 if (!(loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
197 (loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL)) *
198 L2_TABLE_SIZE_REAL;
/freebsd-11-stable/sys/arm/xscale/i8134x/
H A Dcrb_machdep.c108 /* this should be evenly divisable by PAGE_SIZE / L2_TABLE_SIZE_REAL (or 4) */
192 if (!(loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
197 (loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL)) *
198 L2_TABLE_SIZE_REAL;
/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Davila_machdep.c104 /* this should be evenly divisable by PAGE_SIZE / L2_TABLE_SIZE_REAL (or 4) */
247 if (!(loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
252 (loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL)) *
253 L2_TABLE_SIZE_REAL;
/freebsd-11-stable/sys/arm/xscale/pxa/
H A Dpxa_machdep.c104 /* this should be evenly divisable by PAGE_SIZE / L2_TABLE_SIZE_REAL (or 4) */
179 if (!(loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
184 (loop % (PAGE_SIZE / L2_TABLE_SIZE_REAL)) *
185 L2_TABLE_SIZE_REAL;
/freebsd-11-stable/sys/arm/at91/
H A Dat91_machdep.c114 /* this should be evenly divisable by PAGE_SIZE / L2_TABLE_SIZE_REAL (or 4) */
473 if (!(i % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
478 (i % (PAGE_SIZE / L2_TABLE_SIZE_REAL)) *
479 L2_TABLE_SIZE_REAL;
/freebsd-11-stable/sys/arm/arm/
H A Dmachdep.c883 if (!(i % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
889 L2_TABLE_SIZE_REAL * (i - j);
947 L2_TABLE_SIZE_REAL * l2size,
H A Dpmap-v4.c893 PTE_SYNC_RANGE(l2, L2_TABLE_SIZE_REAL / sizeof(pt_entry_t));
1020 memset(mem, 0, L2_TABLE_SIZE_REAL);
1021 PTE_SYNC_RANGE(mem, L2_TABLE_SIZE_REAL / sizeof(pt_entry_t));
1744 l2zone = uma_zcreate("L2 Table", L2_TABLE_SIZE_REAL, pmap_l2ptp_ctor,
2228 l2idx < (L2_TABLE_SIZE_REAL / sizeof(pt_entry_t));
2287 round_page(size * L2_TABLE_SIZE_REAL) / PAGE_SIZE,
2471 memset(ptep, 0, L2_TABLE_SIZE_REAL);
2477 pmap_kernel_l2ptp_kva += L2_TABLE_SIZE_REAL;
2478 pmap_kernel_l2ptp_phys += L2_TABLE_SIZE_REAL;

Completed in 148 milliseconds