Symbol: lshift
crypto/libecc/src/nn/nn_logical.c
116
lshift = (bitcnt_t)(WORD_BITS - hshift);
crypto/libecc/src/nn/nn_logical.c
123
lopart = WRSHIFT(in->val[ipos], lshift);
crypto/libecc/src/nn/nn_logical.c
160
bitcnt_t lshift, hshift;
crypto/libecc/src/nn/nn_logical.c
169
lshift = cnt % WORD_BITS;
crypto/libecc/src/nn/nn_logical.c
170
hshift = (bitcnt_t)(WORD_BITS - lshift);
crypto/libecc/src/nn/nn_logical.c
177
lopart = WRSHIFT(in->val[ipos], lshift);
crypto/libecc/src/nn/nn_logical.c
214
bitcnt_t lshift, hshift;
crypto/libecc/src/nn/nn_logical.c
226
lshift = cnt % WORD_BITS;
crypto/libecc/src/nn/nn_logical.c
227
hshift = (bitcnt_t)(WORD_BITS - lshift);
crypto/libecc/src/nn/nn_logical.c
244
lopart = WRSHIFT(in->val[ipos], lshift);
crypto/libecc/src/nn/nn_logical.c
42
bitcnt_t lshift, hshift;
crypto/libecc/src/nn/nn_logical.c
52
lshift = (bitcnt_t)(WORD_BITS - hshift);
crypto/libecc/src/nn/nn_logical.c
59
lopart = WRSHIFT(in->val[ipos], lshift);
crypto/libecc/src/nn/nn_logical.c
96
bitcnt_t lshift, hshift, blen;
crypto/openssl/crypto/bn/bn_div.c
145
int rshift = BN_num_bits_word(d[top - 1]), lshift, i;
crypto/openssl/crypto/bn/bn_div.c
147
lshift = BN_BITS2 - rshift;
crypto/openssl/crypto/bn/bn_div.c
154
d[i] = ((n << lshift) | m) & BN_MASK2;
crypto/openssl/crypto/bn/bn_div.c
158
return lshift;
crypto/openssl/test/bntest.c
1381
BIGNUM *a = NULL, *lshift = NULL, *ret = NULL;
crypto/openssl/test/bntest.c
1385
|| !TEST_ptr(lshift = getBN(s, "LShift"))
crypto/openssl/test/bntest.c
1391
|| !equalBN("A << N", lshift, ret)
crypto/openssl/test/bntest.c
1392
|| !TEST_true(BN_rshift(ret, lshift, n))
crypto/openssl/test/bntest.c
1399
BN_free(lshift);
stand/ficl/words.c
4960
dictAppendWord(dp, "lshift", lshift, FW_DEFAULT);
sys/amd64/vmm/io/vioapic.c
327
int regnum, pin, lshift;
sys/amd64/vmm/io/vioapic.c
348
lshift = 32;
sys/amd64/vmm/io/vioapic.c
350
lshift = 0;
sys/amd64/vmm/io/vioapic.c
354
data64 = (uint64_t)data << lshift;
sys/amd64/vmm/io/vioapic.c
355
mask64 = (uint64_t)0xffffffff << lshift;
usr.bin/dtc/input_buffer.cc
801
expr = new binary_operator<7, lshift<valty>>(l, "<<");