Symbol: wmask
crypto/openssl/crypto/bn/bn_exp.c
1073
wmask = (1 << window0) - 1;
crypto/openssl/crypto/bn/bn_exp.c
1075
wvalue = bn_get_bits(p, bits) & wmask;
crypto/openssl/crypto/bn/bn_exp.c
1080
wmask = (1 << window) - 1;
crypto/openssl/crypto/bn/bn_exp.c
1103
wvalue = bn_get_bits(p, bits) & wmask;
crypto/openssl/crypto/bn/bn_exp.c
607
int i, bits, ret = 0, window, wvalue, wmask, window0;
crypto/openssl/crypto/bn/bn_exp.c
865
wmask = (1 << window0) - 1;
crypto/openssl/crypto/bn/bn_exp.c
867
wvalue = bn_get_bits(p, bits) & wmask;
crypto/openssl/crypto/bn/bn_exp.c
997
wmask = (1 << window0) - 1;
crypto/openssl/crypto/bn/bn_exp.c
999
wvalue = bn_get_bits(p, bits) & wmask;
lib/libc/string/bcopy.c
105
t = length & wmask;
lib/libc/string/bcopy.c
116
if ((t | (uintptr_t)dst) & wmask) {
lib/libc/string/bcopy.c
117
if ((t ^ (uintptr_t)dst) & wmask || length <= wsize)
lib/libc/string/bcopy.c
120
t &= wmask;
lib/libc/string/bcopy.c
127
t = length & wmask;
lib/libc/string/bcopy.c
87
if ((t | (uintptr_t)dst) & wmask) {
lib/libc/string/bcopy.c
92
if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
lib/libc/string/bcopy.c
95
t = wsize - (t & wmask);
lib/libc/string/memset.c
109
if ((t = (long)dst & wmask) != 0) {
lib/libc/string/memset.c
125
t = length & wmask;
sys/dev/pci/pci_pci.c
1719
rman_res_t base, limit, wmask;
sys/dev/pci/pci_pci.c
1766
wmask = ((rman_res_t)1 << w->step) - 1;
sys/dev/pci/pci_pci.c
1771
start &= ~wmask;
sys/dev/pci/pci_pci.c
1772
end |= wmask;
sys/dev/pci/pci_pci.c
1889
rman_res_t align, start_free, end_free, front, back, wmask;
sys/dev/pci/pci_pci.c
1908
wmask = ((rman_res_t)1 << w->step) - 1;
sys/dev/pci/pci_pci.c
1978
front &= ~wmask;
sys/dev/pci/pci_pci.c
2006
back |= wmask;
sys/dev/pci/pci_pci.c
2042
KASSERT((w->base & wmask) == 0, ("start address is not aligned"));
sys/dev/pci/pci_pci.c
2043
KASSERT((w->limit & wmask) == wmask, ("end address is not aligned"));
sys/dev/pci/pci_pci.c
2145
rman_res_t wmask;
sys/dev/pci/pci_pci.c
2186
wmask = ((rman_res_t)1 << w->step) - 1;
sys/dev/pci/pci_pci.c
2188
MIN(start & ~wmask, w->base),
sys/dev/pci/pci_pci.c
2189
MAX(end | wmask, w->limit));
sys/libkern/bcopy.c
105
t = length & wmask;
sys/libkern/bcopy.c
117
if ((t | (uintptr_t)dst) & wmask) {
sys/libkern/bcopy.c
118
if ((t ^ (uintptr_t)dst) & wmask || length <= wsize) {
sys/libkern/bcopy.c
121
t &= wmask;
sys/libkern/bcopy.c
130
t = length & wmask;
sys/libkern/bcopy.c
85
if ((t | (uintptr_t)dst) & wmask) {
sys/libkern/bcopy.c
90
if ((t ^ (uintptr_t)dst) & wmask || length < wsize) {
sys/libkern/bcopy.c
93
t = wsize - (t & wmask);