Home
last modified time | relevance | path

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

/optee_os/core/lib/qcbor/src/
H A Dqcbor_decode.c150 QCBORItem_MatchLabel(const QCBORItem Item1, const QCBORItem Item2) in QCBORItem_MatchLabel() argument
153 if(Item2.uLabelType == QCBOR_TYPE_INT64 && Item1.label.int64 == Item2.label.int64) { in QCBORItem_MatchLabel()
158 …if(Item2.uLabelType == QCBOR_TYPE_TEXT_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
162 …if(Item2.uLabelType == QCBOR_TYPE_BYTE_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
166 if(Item2.uLabelType == QCBOR_TYPE_UINT64 && Item1.label.uint64 == Item2.label.uint64) { in QCBORItem_MatchLabel()
182 QCBORItem_MatchType(const QCBORItem Item1, const QCBORItem Item2) in QCBORItem_MatchType() argument
184 if(Item1.uDataType == Item2.uDataType) { in QCBORItem_MatchType()
188 } else if(Item2.uDataType == QCBOR_TYPE_ANY) { in QCBORItem_MatchType()