Lines Matching defs:offs
310 uint32_t offs;
321 offs = slen % BIGNUM_WORDSIZE;
332 if (offs > 0) {
334 for (i = 1; i < offs; i++) word = (word << BITSINBYTE) + kn[i];
353 uint32_t offs;
366 offs = slen % BIGNUM_WORDSIZE;
367 if (offs > 0) {
963 big_shiftleft(BIGNUM *result, BIGNUM *aa, int offs)
968 if (offs == 0) {
977 result->value[i] = (ai << offs) | cy;
978 cy = ai >> (BIG_CHUNK_SIZE - offs);
992 big_shiftright(BIGNUM *result, BIGNUM *aa, int offs)
997 if (offs == 0) {
1003 cy = aa->value[0] >> offs;
1006 result->value[i - 1] = (ai << (BIG_CHUNK_SIZE - offs)) | cy;
1007 cy = ai >> offs;
1023 int i, alen, blen, tlen, rlen, offs;
1082 offs = 0;
1086 offs = (BIG_CHUNK_SIZE / 2);
1090 offs++;
1093 big_shiftleft(&bblow, bb, offs);
1095 if (offs <= (BIG_CHUNK_SIZE / 2 - 1)) {
1108 big_shiftleft(&tmp1, aa, offs);
1147 big_shiftright(&tmp1, &tmp1, offs);