/src/sys/arch/bebox/stand/boot/ |
io.c | 42 static int dcache_line_size = 32; variable in typeref:typename:int 128 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) 138 off = adr & (dcache_line_size - 1); 145 if (siz < dcache_line_size) 147 adr += dcache_line_size; 148 siz -= dcache_line_size; 151 off = bnd & (dcache_line_size - 1); 155 if (siz < dcache_line_size) 159 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) {
|
/src/sys/arch/prep/stand/boot/ |
io.c | 45 static int dcache_line_size = 32; variable in typeref:typename:int 110 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) 120 off = adr & (dcache_line_size - 1); 127 if (siz < dcache_line_size) 129 adr += dcache_line_size; 130 siz -= dcache_line_size; 133 off = bnd & (dcache_line_size - 1); 137 if (siz < dcache_line_size) 141 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) {
|
/src/sys/arch/powerpc/ibm4xx/ |
cpu.c | 68 .dcache_line_size = 16, 78 .dcache_line_size = 16, 88 .dcache_line_size = 16, 98 .dcache_line_size = 16, 108 .dcache_line_size = 16, 118 .dcache_line_size = 16, 128 .dcache_line_size = 16, 138 .dcache_line_size = 16, 148 .dcache_line_size = 16, 158 .dcache_line_size = 16 344 const size_t dcache_line_size = curcpu()->ci_ci.dcache_line_size; local in function:dcache_wbinv_page [all...] |
/src/sys/rump/include/machine/ |
cpu.h | 64 int dcache_line_size; member in struct:cpu_info::cache_info
|
/src/sys/arch/powerpc/powerpc/ |
vm_machdep.c | 158 int dcache_line_size, i; local in function:cpu_lwp_fork 162 dcache_line_size = curcpu()->ci_ci.dcache_line_size; 165 i += dcache_line_size) { 167 pa += dcache_line_size; 171 for (i = 0; i < sizeof(*pcb2->pcb_pm); i += dcache_line_size) { 173 pa += dcache_line_size; 177 for (i = 0; i < sizeof(*pcb2); i += dcache_line_size) { 179 pa += dcache_line_size;
|
bus_dma.c | 71 dcbst(paddr_t pa, long len, int dcache_line_size) 74 for (epa = pa + len; pa < epa; pa += dcache_line_size) 79 dcbi(paddr_t pa, long len, int dcache_line_size) 82 for (epa = pa + len; pa < epa; pa += dcache_line_size) 87 dcbf(paddr_t pa, long len, int dcache_line_size) 90 for (epa = pa + len; pa < epa; pa += dcache_line_size) 522 const int dcache_line_size = curcpu()->ci_ci.dcache_line_size; local in function:_bus_dmamap_sync 555 offset = (addr & (dcache_line_size-1)); 566 dcbst(addr, seglen, dcache_line_size); [all...] |
/src/sys/arch/sparc64/sparc64/ |
cpu.c | 105 int dcache_line_size; variable in typeref:typename:int 610 if (linesize > dcache_line_size) 611 dcache_line_size = linesize;
|
/src/sys/arch/arm/include/ |
cpu.h | 181 u_int dcache_line_size; member in struct:arm_cache_info
|
/src/sys/dev/marvell/ |
if_gfe.c | 1188 const int dcache_line_size = curcpu()->ci_ci.dcache_line_size; local in function:gfe_tx_enqueue 1247 txq->txq_inptr += roundup(pktlen, dcache_line_size); 1257 buflen = roundup(m->m_pkthdr.len, dcache_line_size); 1372 const int dcache_line_size = curcpu()->ci_ci.dcache_line_size; local in function:gfe_tx_done 1423 txq->txq_inptr += roundup(pktlen, dcache_line_size);
|
/src/sys/arch/powerpc/include/ |
cpu.h | 41 int dcache_line_size; member in struct:cache_info
|
/src/sys/arch/sandpoint/stand/altboot/ |
brdsetup.c | 200 const unsigned dcache_line_size = 32; /* 32B linesize */ variable in typeref:typename:const unsigned 1063 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) 1074 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) 1084 off = adr & (dcache_line_size - 1); 1091 if (siz < dcache_line_size) 1093 adr += dcache_line_size; 1094 siz -= dcache_line_size; 1097 off = bnd & (dcache_line_size - 1); 1101 if (siz < dcache_line_size) 1105 for (bnd = adr + siz; adr < bnd; adr += dcache_line_size) { [all...] |