Searched refs:lft (Results 1 – 8 of 8) sorted by relevance
59 inline bool operator==(const VndkVersionRange &lft, const VndkVersionRange &rgt) {60 return lft.sdk == rgt.sdk && lft.vndk == rgt.vndk &&61 lft.patchMin == rgt.patchMin && lft.patchMax == rgt.patchMax;63 inline bool operator==(const Vndk &lft, const Vndk &rgt) {64 return lft.mVersionRange == rgt.mVersionRange &&65 lft.mLibraries == rgt.mLibraries;
52 inline bool operator==(const Sepolicy &lft, const Sepolicy &rgt) {53 return lft.kernelSepolicyVersion() == rgt.kernelSepolicyVersion() &&54 lft.sepolicyVersions() == rgt.sepolicyVersions();
132 friend bool operator==(const HalManifest &lft, const HalManifest &rgt);
73 bool operator==(const CompatibilityMatrix &lft, const CompatibilityMatrix &rgt) { in operator ==() argument74 return lft.mType == rgt.mType && in operator ==()75 lft.mHals == rgt.mHals && in operator ==()76 (lft.mType != SchemaType::DEVICE || ( in operator ==()77 lft.device.mVndk == rgt.device.mVndk)) && in operator ==()78 (lft.mType != SchemaType::FRAMEWORK || ( in operator ==()79 lft.framework.mKernels == rgt.framework.mKernels && in operator ==()80 lft.framework.mSepolicy == rgt.framework.mSepolicy && in operator ==()81 lft.framework.mAvbMetaVersion == rgt.framework.mAvbMetaVersion)); in operator ==()
25 bool operator==(const HalInterface& lft, const HalInterface& rgt) { in operator ==() argument26 if (lft.name != rgt.name) in operator ==()28 if (lft.instances != rgt.instances) in operator ==()
376 bool operator==(const HalManifest &lft, const HalManifest &rgt) { in operator ==() argument377 return lft.mType == rgt.mType && in operator ==()378 lft.mHals == rgt.mHals && in operator ==()379 (lft.mType != SchemaType::DEVICE || ( in operator ==()380 lft.device.mSepolicyVersion == rgt.device.mSepolicyVersion)) && in operator ==()381 (lft.mType != SchemaType::FRAMEWORK || ( in operator ==()382 lft.framework.mVndks == rgt.framework.mVndks)); in operator ==()
68 ScalarType::Kind usualArithmeticConversion(ScalarType::Kind lft, in usualArithmeticConversion() argument70 CHECK(isSupported(lft) && isSupported(rgt)); in usualArithmeticConversion()72 if(lft == rgt) return lft; // easy case in usualArithmeticConversion()73 if(lft == SK(BOOL)) return rgt; in usualArithmeticConversion()74 if(rgt == SK(BOOL)) return lft; in usualArithmeticConversion()75 bool isLftSigned = (lft == SK(INT8)) || (lft == SK(INT16)) in usualArithmeticConversion()76 || (lft == SK(INT32)) || (lft == SK(INT64)); in usualArithmeticConversion()79 if(isLftSigned == isRgtSigned) return lft < rgt ? rgt : lft; in usualArithmeticConversion()80 ScalarType::Kind unsignedRank = isLftSigned ? rgt : lft; in usualArithmeticConversion()81 ScalarType::Kind signedRank = isLftSigned ? lft : rgt; in usualArithmeticConversion()[all …]
644 fillXfrmLifetimeDefaults(&usersa->lft); in fillUserSaInfo()731 fillXfrmLifetimeDefaults(&usersp->lft); in fillTransportModeUserSpInfo()