Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp76 class RefVal { class
137 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t, in RefVal() function in __anona848a03c0111::RefVal
199 static RefVal makeOwned(RetEffect::ObjKind o, QualType t, in makeOwned()
201 return RefVal(Owned, o, Count, 0, t, IvarAccessHistory::None); in makeOwned()
208 static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t, in makeNotOwned()
210 return RefVal(NotOwned, o, Count, 0, t, IvarAccessHistory::None); in makeNotOwned()
213 RefVal operator-(size_t i) const { in operator -()
214 return RefVal(getKind(), getObjKind(), getCount() - i, in operator -()
218 RefVal operator+(size_t i) const { in operator +()
219 return RefVal(getKind(), getObjKind(), getCount() + i, in operator +()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFVerifier.cpp460 Optional<uint64_t> RefVal = AttrValue.Value.getAsReference(); in verifyDebugInfoForm() local
461 assert(RefVal); in verifyDebugInfoForm()
462 if (RefVal) { in verifyDebugInfoForm()
477 ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset()); in verifyDebugInfoForm()
485 Optional<uint64_t> RefVal = AttrValue.Value.getAsReference(); in verifyDebugInfoForm() local
486 assert(RefVal); in verifyDebugInfoForm()
487 if (RefVal) { in verifyDebugInfoForm()
488 if (*RefVal >= DObj.getInfoSection().Data.size()) { in verifyDebugInfoForm()
497 ReferenceToDIEOffsets[*RefVal].insert(Die.getOffset()); in verifyDebugInfoForm()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp188 auto *RefVal = TmpAddr.getPointer(); in castValueFromUintptr() local
191 CGF.EmitScalarInit(RefVal, TmpLVal); in castValueFromUintptr()