Searched refs:uElement (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/math/
H A Dbignum.cpp139 DECLINLINE(uint32_t) rtBigNumElementBitCount(RTBIGNUMELEMENT uElement) argument
142 if (uElement >> 32)
143 return ASMBitLastSetU32((uint32_t)(uElement >> 32)) + 32;
144 return ASMBitLastSetU32((uint32_t)uElement);
146 return ASMBitLastSetU32(uElement);
951 RTBIGNUMELEMENT uElement = pBigNum->pauElements[i];
953 uElement = (RTBIGNUMELEMENT)0 - uElement - (i > 0);
954 if (cbWanted >= sizeof(uElement))
956 *pbDst-- = (uint8_t)uElement;
[all...]

Completed in 771 milliseconds