Home
last modified time | relevance | path

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

/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCompound.cpp83 unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { in getCompoundCandidateGroup() argument
98 if (IsExtended) in getCompoundCandidateGroup()
111 if (IsExtended) in getCompoundCandidateGroup()
123 if (IsExtended) in getCompoundCandidateGroup()
133 if (IsExtended) in getCompoundCandidateGroup()
143 if (IsExtended) in getCompoundCandidateGroup()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCompound.cpp79 static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { in getCompoundCandidateGroup() argument
94 if (IsExtended) in getCompoundCandidateGroup()
107 if (IsExtended) in getCompoundCandidateGroup()
119 if (IsExtended) in getCompoundCandidateGroup()
129 if (IsExtended) in getCompoundCandidateGroup()
139 if (IsExtended) in getCompoundCandidateGroup()
/external/openthread/src/core/common/
Dtlvs.cpp44 …return IsExtended() ? sizeof(ExtendedTlv) + As<ExtendedTlv>(this)->GetLength() : sizeof(Tlv) + Get… in GetSize()
49 return reinterpret_cast<uint8_t *>(this) + (IsExtended() ? sizeof(ExtendedTlv) : sizeof(Tlv)); in GetValue()
54 …return reinterpret_cast<const uint8_t *>(this) + (IsExtended() ? sizeof(ExtendedTlv) : sizeof(Tlv)… in GetValue()
201 VerifyOrExit(!tlv.IsExtended() && (tlv.GetLength() >= aMinLength), error = kErrorParse); in ReadTlv()
Dtlvs.hpp89 bool IsExtended(void) const { return (mLength == kExtendedLength); } in IsExtended() function in ot::Tlv
/external/openthread/tests/unit/
Dtest_mac_frame.cpp113 VerifyOrQuit(!addr.IsExtended(), "Address::SetShort() failed"); in TestMacAddress()
119 VerifyOrQuit(addr.IsExtended(), "Address::SetExtended() failed"); in TestMacAddress()
125 VerifyOrQuit(addr.IsExtended(), "Address::SetExtended() failed"); in TestMacAddress()
133 VerifyOrQuit(!addr.IsExtended(), "Address::SetNone() failed"); in TestMacAddress()
/external/openthread/src/core/utils/
Dotns.cpp147 else if (dst.IsExtended()) in EmitTransmit()
Dhistory_tracker.cpp136 if (aMacAddresss.IsExtended()) in RecordMessage()
/external/openthread/src/core/mac/
Dmac_types.hpp296 bool IsExtended(void) const { return (mType == kTypeExtended); } in IsExtended() function in ot::Mac::Address
Ddata_poll_sender.cpp590 if (dst.IsExtended()) in PrepareDataRequest()
Dmac.cpp229 VerifyOrExit(address.IsExtended(), error = kErrorParse); in ConvertBeaconToActiveScanResult()
1684 if (!srcAddr.IsExtended() && neighbor != nullptr) in ProcessEnhAckSecurity()
1689 VerifyOrExit(srcAddr.IsExtended() && neighbor != nullptr); in ProcessEnhAckSecurity()
/external/openthread/src/core/meshcop/
Dmeshcop_tlvs.cpp101 VerifyOrExit(!tlv->IsExtended() || in FindTlv()
Ddataset.cpp177 …VerifyOrExit(!cur->IsExtended() && (cur + 1) <= end && cur->GetNext() <= end && Tlv::IsValid(*cur), in IsValid()
/external/openthread/src/core/thread/
Dnetwork_diagnostic_tlvs.hpp730 bool IsValid(void) const { return !IsExtended() && (GetLength() % sizeof(Ip6::Address) == 0); } in IsValid()
Dtopology.hpp157 aMacAddress.IsExtended() ? &aMacAddress.GetExtended() : nullptr) in AddressMatcher()
Dmesh_forwarder.cpp173 if (macSource.IsShortAddrInvalid() || aMacDest.IsExtended()) in PrepareEmptyFrame()
882 if (aMacDest.IsExtended() || !aMacDest.IsBroadcast()) in PrepareDataFrame()
Dnetwork_data_leader_ftd.cpp224 VerifyOrExit(((cur + 1) <= end) && !cur->IsExtended() && (cur->GetNext() <= end)); in HandleCommissioningSet()
/external/openthread/src/core/radio/
Dtrel_link.cpp220 OT_ASSERT(destAddr.IsExtended()); in BeginTransmit()