Home
last modified time | relevance | path

Searched refs:uIndex (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/lib/qcbor/inc/qcbor/
H A Dqcbor_decode.h1145 QCBORDecode_GetNthTag(QCBORDecodeContext *pCtx, const QCBORItem *pItem, uint32_t uIndex);
1168 QCBORDecode_GetNthTagOfLast(const QCBORDecodeContext *pCtx, uint32_t uIndex);
/optee_os/core/lib/qcbor/src/
H A Dqcbor_decode.c1617 const unsigned uIndex = uMappedTagNumber - (QCBOR_LAST_UNMAPPED_TAG + 1); in QCBORDecode_Private_UnMapTagNumber() local
1618 return pMe->auMappedTags[uIndex]; in QCBORDecode_Private_UnMapTagNumber()
2547 unsigned uIndex; in QCBOR_Private_ProcessTaggedString() local
2548 for(uIndex = 0; QCBOR_Private_StringTagMap[uIndex].uTagNumber != CBOR_TAG_INVALID16; uIndex++) { in QCBOR_Private_ProcessTaggedString()
2549 if(QCBOR_Private_StringTagMap[uIndex].uTagNumber == uTag) { in QCBOR_Private_ProcessTaggedString()
2554 const uint8_t uQCBORType = QCBOR_Private_StringTagMap[uIndex].uQCBORtype; in QCBOR_Private_ProcessTaggedString()
2909 uint32_t uIndex) in QCBORDecode_GetNthTag() argument
2915 if(uIndex >= QCBOR_MAX_TAGS_PER_ITEM) { in QCBORDecode_GetNthTag()
2918 return QCBORDecode_Private_UnMapTagNumber(pMe, pItem->uTags[uIndex]); in QCBORDecode_GetNthTag()
2923 (void)uIndex; in QCBORDecode_GetNthTag()
[all …]