/src/common/lib/libc/string/ |
bcopy.c | 63 * SO THAT wmask BELOW IS ALL ONES 68 #define wmask (wsize - 1) macro 105 if ((u | (unsigned long)dst) & wmask) { 110 if ((u ^ (unsigned long)dst) & wmask || length < wsize) 113 t = wsize - (size_t)(u & wmask); 122 t = length & wmask; 128 * (t&wmask) bytes to align, not wsize-(t&wmask). 135 if ((u | (unsigned long)dst) & wmask) { 136 if ((u ^ (unsigned long)dst) & wmask || length <= wsize [all...] |
memset.c | 59 #define wmask (wsize - 1) macro 143 if ((t = (size_t)((u_long)dst & wmask)) != 0) { 159 t = length & wmask;
|
/src/sys/arch/alpha/pci/ |
dwlpx_dma.c | 100 int i, lim, wmask; local in function:dwlpx_dma_init 108 wmask = PCIA_WMASK_1G; 111 wmask = PCIA_WMASK_256M; 233 REGVAL(PCIA_WMASK_C(i) + ccp->cc_sysbase) = wmask;
|
ciavar.h | 74 uint32_t wmask[4]; member in struct:cia_config::__anon38ab63940108
|
cia_dma.c | 117 ccp->cc_saved_windows.wmask[i]; 140 ccp->cc_saved_windows.wmask[i] =
|
/src/sys/dev/isa/ |
aps.c | 168 unsigned char *buf, int wmask, int rmask) 172 DPRINTF(("aps_do_io: CMD: 0x%02x, wmask: 0x%04x, rmask: 0x%04x\n", 173 buf[0], wmask, rmask)); 196 wmask |= APS_READ_RET; 200 if (wmask & bp) {
|
/src/sys/dev/pci/ |
pci_map.c | 117 uint64_t waddress, wmask; local in function:pci_mem_find 197 wmask = (uint64_t)mask1 << 32UL | mask; 199 if ((is64bit && PCI_MAPREG_MEM64_SIZE(wmask) == 0) || 238 *sizep = PCI_MAPREG_MEM64_SIZE(wmask);
|
/src/sys/arch/sparc/sparc/ |
locore.s | 1403 * wmask[i] = 1 << ((i + 1) % nwindows); 1405 * wmask[CWP] tells whether a `rett' would return into the invalid window. 1410 wmask: .skip 32 ! u_char wmask[0..31]; label 3341 set wmask, %l6 3721 set wmask, %l6 3729 * (entered with %l4=%wim, %l5=wmask[cwp]; %l0..%l2 as usual) 3787 * Set up the uwtab and wmask tables. 3826 * wmask[i-1]. 3830 * wmask[i - 1] = j [all...] |
/src/common/dist/zlib/ |
deflate.c | 1363 uInt wmask = s->w_mask; local in function:longest_match 1486 } while ((cur_match = prev[cur_match & wmask]) > limit
|
/src/sys/net/ |
zlib.c | 1365 uInt wmask = s->w_mask; local in function:longest_match 1480 } while ((cur_match = prev[cur_match & wmask]) > limit
|