Searched defs:cMaxBits (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-bitstring-decode.cpp40 RTDECL(int) RTAsn1BitString_DecodeAsn1Ex(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pThis, argument
44 pThis->cMaxBits = cMaxBits;
59 if ( ( cMaxBits == UINT32_MAX
60 || RT_ALIGN(cMaxBits, 8) / 8 + 1 >= pThis->Asn1Core.cb)
105 "%s: Size mismatch: cb=%#x, expected %#x (cMaxBits=%#x)",
106 pszErrorTag, pThis->Asn1Core.cb, RT_ALIGN(cMaxBits, 8) / 8 + 1, cMaxBits);
H A Dasn1-cursor.cpp488 RTDECL(int) RTAsn1CursorGetBitStringEx(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pBitString, argument
491 return RTAsn1BitString_DecodeAsn1Ex(pCursor, fFlags, cMaxBits, pBitString, pszErrorTag);
/vbox/include/iprt/
H A Dasn1.h995 uint32_t cMaxBits; member in struct:RTASN1BITSTRING
1031 RTDECL(int) RTAsn1BitString_DecodeAsn1Ex(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pThis,
1820 * cMaxBits.
1825 * @param cMaxBits The max length of the bit string in bits. Pass
1830 RTDECL(int) RTAsn1CursorGetBitStringEx(PRTASN1CURSOR pCursor, uint32_t fFlags, uint32_t cMaxBits, PRTASN1BITSTRING pBitString,

Completed in 59 milliseconds