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

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-objid.cpp71 * @param pauComponents The components array.
76 static int rtAsn1ObjId_EncodeComponents(uint32_t cComponents, uint32_t const *pauComponents, argument
85 AssertReturn(pauComponents[0] <= 2, VERR_ASN1_INTERNAL_ERROR_1);
86 AssertReturn(pauComponents[1] <= (pauComponents[0] < 2 ? 39 : UINT32_MAX - 80), VERR_ASN1_INTERNAL_ERROR_1);
88 uint32_t uValue = pauComponents[0] * 40 + pauComponents[1];
149 uValue = pauComponents[i];
246 pThis->pauComponents = (uint32_t *)&pThis->szObjId[sizeof(pThis->szObjId) - cComponents * sizeof(uint32_t)];
252 rc = RTAsn1MemAllocZ(&pThis->Allocation, (void **)&pThis->pauComponents, cComponent
258 uint32_t *pauComponents = (uint32_t *)pThis->pauComponents; local
[all...]
H A Dasn1-ut-objid-decode.cpp282 pThis->pauComponents = (uint32_t *)&pThis->szObjId[sizeof(pThis->szObjId) - cComponents * sizeof(uint32_t)];
285 rc = RTAsn1MemAllocZ(&pThis->Allocation, (void **)&pThis->pauComponents,
286 cComponents * sizeof(pThis->pauComponents[0]));
289 uint32_t *pauComponents = (uint32_t *)pThis->pauComponents; local
306 pauComponents[0] = uValue / 40;
307 pauComponents[1] = uValue % 40;
311 pauComponents[0] = 2;
312 pauComponents[1] = uValue - 2*40;
316 *pszObjId++ = g_achDigits[pauComponents[
[all...]
/vbox/include/iprt/
H A Dasn1.h931 uint32_t const *pauComponents; member in struct:RTASN1OBJID

Completed in 49 milliseconds