Searched refs:wmask (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/sys/arm64/arm64/
H A Dbcopy.c43 * SO THAT wmask BELOW IS ALL ONES
48 #define wmask (wsize - 1) macro
81 if ((t | (uintptr_t)dst) & wmask) {
86 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) {
89 t = wsize - (t & wmask);
101 t = length & wmask;
107 * (t&wmask) bytes to align, not wsize-(t&wmask).
113 if ((t | (uintptr_t)dst) & wmask) {
114 if ((t ^ (uintptr_t)dst) & wmask || lengt
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dbcopy.c43 * SO THAT wmask BELOW IS ALL ONES
48 #define wmask (wsize - 1) macro
90 if ((t | (uintptr_t)dst) & wmask) {
95 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
98 t = wsize - (t & wmask);
107 t = length & wmask;
113 * (t&wmask) bytes to align, not wsize-(t&wmask).
118 if ((t | (uintptr_t)dst) & wmask) {
119 if ((t ^ (uintptr_t)dst) & wmask || lengt
[all...]
H A Dmemset.c44 #define wmask (wsize - 1) macro
106 if ((t = (long)dst & wmask) != 0) {
122 t = length & wmask;
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dbcopy.c53 * SO THAT wmask BELOW IS ALL ONES
58 #define wmask (wsize - 1) macro
91 if ((t | (uintptr_t)dst) & wmask) {
96 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) {
99 t = wsize - (t & wmask);
111 t = length & wmask;
117 * (t&wmask) bytes to align, not wsize-(t&wmask).
123 if ((t | (uintptr_t)dst) & wmask) {
124 if ((t ^ (uintptr_t)dst) & wmask || lengt
[all...]
/freebsd-11-stable/sys/riscv/riscv/
H A Dbcopy.c43 * SO THAT wmask BELOW IS ALL ONES
48 #define wmask (wsize - 1) macro
81 if ((t | (uintptr_t)dst) & wmask) {
86 if ((t ^ (uintptr_t)dst) & wmask || length < wsize) {
89 t = wsize - (t & wmask);
101 t = length & wmask;
107 * (t&wmask) bytes to align, not wsize-(t&wmask).
113 if ((t | (uintptr_t)dst) & wmask) {
114 if ((t ^ (uintptr_t)dst) & wmask || lengt
[all...]
/freebsd-11-stable/sys/dev/pci/
H A Dpci_pci.c1886 rman_res_t base, limit, wmask; local
1933 wmask = ((rman_res_t)1 << w->step) - 1;
1938 start &= ~wmask;
1939 end |= wmask;
2056 rman_res_t align, start_free, end_free, front, back, wmask; local
2075 wmask = ((rman_res_t)1 << w->step) - 1;
2145 front &= ~wmask;
2173 back |= wmask;
2209 KASSERT((w->base & wmask) == 0, ("start address is not aligned"));
2210 KASSERT((w->limit & wmask)
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c707 const uint64_t wmask = rar->cstate.window_mask; local
709 rar->cstate.last_write_ptr) & wmask;
719 if((idx_begin & wmask) > (idx_end & wmask)) {
723 (idx_begin & wmask);
724 const ssize_t frag2_size = idx_end & wmask;
739 buf + solid_write_ptr, (idx_end - idx_begin) & wmask,
/freebsd-11-stable/sys/dev/digi/
H A Ddigi.c1317 int wmask; local
1323 wmask = port->txbufsize - 1;
1370 head &= wmask;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c1049 uInt wmask = s->w_mask; local
1169 } while ((cur_match = prev[cur_match & wmask]) > limit
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-arm.c3378 bfd_arm_vfp11_write_mask (unsigned int *wmask, unsigned int reg) argument
3381 *wmask |= 1 << reg;
3383 *wmask |= 3 << ((reg - 32) * 2);
3389 bfd_arm_vfp11_antidependency (unsigned int wmask, int *regs, int numregs) argument
3397 if (reg < 32 && (wmask & (1 << reg)) != 0)
3405 if ((wmask & (3 << (reg * 2))) != 0)
/freebsd-11-stable/sys/contrib/zlib/
H A Ddeflate.c1252 uInt wmask = s->w_mask; local
1372 } while ((cur_match = prev[cur_match & wmask]) > limit
/freebsd-11-stable/sys/libkern/
H A Dzlib.c1296 uInt wmask = s->w_mask; local
1411 } while ((cur_match = prev[cur_match & wmask]) > limit

Completed in 186 milliseconds