Searched refs:Item1 (Results 1 – 1 of 1) sorted by relevance
150 QCBORItem_MatchLabel(const QCBORItem Item1, const QCBORItem Item2) in QCBORItem_MatchLabel() argument152 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 …]