Lines Matching refs:bSize
96 const UINT32 bSize, // IN: size of b in _math__sub() argument
107 *cSize = (UINT16)((aSize > bSize) ? aSize : bSize); in _math__sub()
109 i = (aSize > bSize) ? bSize : aSize; in _math__sub()
112 b = &b[bSize - 1]; in _math__sub()
121 if(aSize > bSize) in _math__sub()
131 else if(aSize < bSize) in _math__sub()
209 const UINT32 bSize, // IN: size of b in _math__Mul() argument
222 if((pSize != NULL) && (*pSize < (aSize + bSize))) in _math__Mul()
239 if (BN_bin2bn(a, aSize, bnA) == NULL || BN_bin2bn(b, bSize, bnB) == NULL) in _math__Mul()
250 BN_bn2bin(bnP, &p[aSize + bSize - retVal]); in _math__Mul()
251 memset(p, 0, aSize + bSize - retVal); in _math__Mul()
252 retVal = aSize + bSize; in _math__Mul()
344 const UINT32 bSize, // IN: size of b in _math__uComp() argument
353 if((i = (int)aSize - (int)bSize) > 0) in _math__uComp()
365 i = (aSize > bSize) ? bSize : aSize; in _math__uComp()
396 const UINT32 bSize, // IN: size of b in _math__Comp() argument
413 return _math__uComp(aSize, a, bSize, b); in _math__Comp()
416 return 0 - _math__uComp(aSize, a, bSize, b); in _math__Comp()