HomeSort by: relevance | last modified time | path
    Searched defs:linesz (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/systat/
keyboard.c 59 int i, linesz; local in function:keyboard
64 linesz = COLS - 2; /* XXX does not get updated on SIGWINCH */
65 if ((line = malloc(linesz)) == NULL) {
151 if (col < linesz) {
  /src/lib/libc/arch/powerpc/gen/
syncicache.c 109 size_t linesz; local in function:__syncicache
118 linesz = CACHEINFO.dcache_line_size;
119 off = (uintptr_t)from & (linesz - 1);
120 l = (len + off + linesz - 1) & ~(linesz - 1);
124 p += linesz;
125 } while ((l -= linesz) != 0);
130 linesz = CACHEINFO.icache_line_size;
131 off = (uintptr_t)from & (linesz - 1);
132 l = (len + off + linesz - 1) & ~(linesz - 1)
    [all...]
  /src/lib/libc/arch/powerpc64/gen/
syncicache.c 106 size_t linesz; local in function:__syncicache
115 linesz = CACHEINFO.dcache_line_size;
116 off = (uintptr_t)from & (linesz - 1);
117 l = (len + off + linesz - 1) & ~(linesz - 1);
121 p += linesz;
122 } while ((l -= linesz) != 0);
127 linesz = CACHEINFO.icache_line_size;
128 off = (uintptr_t)from & (linesz - 1);
129 l = (len + off + linesz - 1) & ~(linesz - 1)
    [all...]
  /src/sys/lib/libkern/arch/powerpc/
syncicache.c 101 size_t linesz; local in function:__syncicache
110 linesz = CACHEINFO.dcache_line_size;
111 off = (uintptr_t)from & (linesz - 1);
112 l = (len + off + linesz - 1) & ~(linesz - 1);
116 p += linesz;
117 } while ((l -= linesz) != 0);
122 linesz = CACHEINFO.icache_line_size;
123 off = (uintptr_t)from & (linesz - 1);
124 l = (len + off + linesz - 1) & ~(linesz - 1)
    [all...]
  /src/sys/dev/pci/
isp_pci.c 483 uint32_t data, rev, linesz = PCI_DFLT_LNSZ; local in function:isp_pci_attach
609 linesz = 1;
740 data |= (linesz << PCI_CACHELINE_SHIFT);

Completed in 14 milliseconds