Lines Matching refs:pSize
195 // This function is used to multiply two large integers: p = a* b. If the size of p is not specified (pSize ==
197 // the resulting size is exactly aSize + bSize. If pSize is provided, then the actual size of the result is
198 // returned. The initial value for pSize must be at least aSize + pSize.
211 UINT32 *pSize, // IN/OUT: size of the product
221 // First check that pSize is large enough if present
222 if((pSize != NULL) && (*pSize < (aSize + bSize)))
224 pAssert(pSize == NULL || *pSize <= MAX_2B_BYTES);
248 if(pSize == NULL)
257 *pSize = retVal;