Home
last modified time | relevance | path

Searched refs:Item1 (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
152 if(Item1.uLabelType == QCBOR_TYPE_INT64) { in QCBORItem_MatchLabel()
153 if(Item2.uLabelType == QCBOR_TYPE_INT64 && Item1.label.int64 == Item2.label.int64) { in QCBORItem_MatchLabel()
157 } else if(Item1.uLabelType == QCBOR_TYPE_TEXT_STRING) { in QCBORItem_MatchLabel()
158 …if(Item2.uLabelType == QCBOR_TYPE_TEXT_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
161 } else if(Item1.uLabelType == QCBOR_TYPE_BYTE_STRING) { in QCBORItem_MatchLabel()
162 …if(Item2.uLabelType == QCBOR_TYPE_BYTE_STRING && !UsefulBuf_Compare(Item1.label.string, Item2.labe… in QCBORItem_MatchLabel()
165 } else if(Item1.uLabelType == QCBOR_TYPE_UINT64) { 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
[all …]