Searched refs:bitpos (Results 1 – 1 of 1) sorted by relevance
/optee_os-3.20.0/core/lib/libtomcrypt/src/math/fp/ |
A D | ltc_ecc_fp_mulmod.c | 776 unsigned y, z, err, bitlen, bitpos, lut_gap, first; in s_accel_fp_mul() local 857 bitpos = x; in s_accel_fp_mul() 859 z |= ((kb[bitpos>>3] >> (bitpos&7)) & 1) << y; in s_accel_fp_mul() 860 …bitpos += lut_gap; /* it's y*lut_gap + x, but here we can avoid the … in s_accel_fp_mul() 901 unsigned y, z, err, bitlen, bitpos, lut_gap, first, zA, zB; in ss_accel_fp_mul2add() local 1044 bitpos = x; in ss_accel_fp_mul2add() 1046 zA |= ((kb[0][bitpos>>3] >> (bitpos&7)) & 1) << y; in ss_accel_fp_mul2add() 1047 zB |= ((kb[1][bitpos>>3] >> (bitpos&7)) & 1) << y; in ss_accel_fp_mul2add() 1048 …bitpos += lut_gap; /* it's y*lut_gap + x, but here we can avoid the … in ss_accel_fp_mul2add()
|
Completed in 5 milliseconds