| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | SmallVectorMemoryBuffer.h | 33 SmallVectorMemoryBuffer(SmallVectorImpl<char> &&SV, 35 : SmallVectorMemoryBuffer(std::move(SV), "<in-memory object>", 40 SmallVectorMemoryBuffer(SmallVectorImpl<char> &&SV, StringRef Name, 42 : SV(std::move(SV)), BufferName(std::string(Name)) { in SV() argument 44 this->SV.push_back('\0'); in SV() 45 this->SV.pop_back(); in SV() 47 init(this->SV.begin(), this->SV.end(), false); in SV() 58 SmallVector<char, 0> SV;
|
| H A D | ELFAttributes.h | 36 BuildAttributeItem(Types Ty, unsigned Tg, unsigned IV, std::string SV) in BuildAttributeItem() 37 : Type(Ty), Tag(Tg), IntValue(IV), StringValue(std::move(SV)) {} in BuildAttributeItem()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | refclock_msfees.c | 1074 #define SV(x) (ees->last_steps[(x + p_step) % LAST_STEPS]) in ees_receive() macro 1076 ees->unit, suspect_4ms_step, p_step, SV(0), SV(1), SV(2), SV(3), SV(4), SV(5), SV(6), in ees_receive() 1077 SV(7), SV(8), SV(9), SV(10), SV(11), SV(12), SV(13), SV(14), SV(15)); in ees_receive() 1079 ees->unit, p_step, SV(0), SV(1), SV(2), SV(3), SV(4), SV(5), SV(6), in ees_receive() 1080 SV(7), SV(8), SV(9), SV(10), SV(11), SV(12), SV(13), SV(14), SV(15)); in ees_receive() 1081 #undef SV in ees_receive()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | BitTracker.cpp | 123 const BT::BitValue &SV = RC[Start]; in operator <<() local 126 if (!IsRef && V == SV) in operator <<() 128 if (IsRef && SV.Type == BT::BitValue::Ref && V.RefI.Reg == SV.RefI.Reg) { in operator <<() 130 SeqRef = (V.RefI.Pos == SV.RefI.Pos+1); in operator <<() 131 ConstRef = (V.RefI.Pos == SV.RefI.Pos); in operator <<() 133 if (SeqRef && V.RefI.Pos == SV.RefI.Pos+(i-Start)) in operator <<() 135 if (ConstRef && V.RefI.Pos == SV.RefI.Pos) in operator <<() 144 OS << "]:" << SV; in operator <<() 147 if (SV.Type == BT::BitValue::Ref && SeqRef) in operator <<() 148 OS << printv(SV.RefI.Reg) << '[' << SV.RefI.Pos << '-' in operator <<() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ArrayBoundChecker.cpp | 123 static bool providesInformationAboutInteresting(SVal SV, in providesInformationAboutInteresting() argument 125 return providesInformationAboutInteresting(SV.getAsSymbol(), BR); in providesInformationAboutInteresting() 380 static std::optional<int64_t> getConcreteValue(NonLoc SV) { in getConcreteValue() argument 381 if (auto ConcreteVal = SV.getAs<nonloc::ConcreteInt>()) { in getConcreteValue() 387 static std::optional<int64_t> getConcreteValue(std::optional<NonLoc> SV) { in getConcreteValue() argument 388 return SV ? getConcreteValue(*SV) : std::nullopt; in getConcreteValue()
|
| H A D | ValistChecker.cpp | 57 const MemRegion *getVAListAsRegion(SVal SV, const Expr *VAExpr, 162 const MemRegion *ValistChecker::getVAListAsRegion(SVal SV, const Expr *E, in getVAListAsRegion() argument 165 const MemRegion *Reg = SV.getAsRegion(); in getVAListAsRegion() 177 Reg = C.getState()->getSVal(SV.castAs<Loc>()).getAsRegion(); in getVAListAsRegion()
|
| H A D | BlockInCriticalSectionChecker.cpp | 400 SVal SV = Call.getArgSVal(0); in reportBlockInCritSection() local 404 state->areEqual(SV, SVB.makeIntVal(-1, C.getASTContext().IntTy)); in reportBlockInCritSection() 408 if (SymbolRef SR = SV.getAsSymbol()) { in reportBlockInCritSection()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SwitchLoweringUtils.h | 197 JumpTableHeader(APInt F, APInt L, const Value *SV, MachineBasicBlock *H, 199 : First(std::move(F)), Last(std::move(L)), SValue(SV), HeaderBB(H), in First() 232 BitTestBlock(APInt F, APInt R, const Value *SV, Register Rg, MVT RgVT, bool E, in BitTestBlock() 235 : First(std::move(F)), Range(std::move(R)), SValue(SV), Reg(Rg), in BitTestBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCContext.cpp | 241 SmallString<128> SV; in parseSymbol() local 242 StringRef NameRef = Name.toStringRef(SV); in parseSymbol() 244 SV = NameRef; in parseSymbol() 249 for (size_t I = 0, E = SV.size(); I != E; ++I) { in parseSymbol() 250 char C = SV[I]; in parseSymbol() 252 switch (SV[I + 1]) { in parseSymbol() 255 C = SV[++I]; in parseSymbol() 259 SV[S++] = C; in parseSymbol() 261 SV.resize(S); in parseSymbol() 262 NameRef = SV; in parseSymbol()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | PrintPasses.cpp | 187 SmallVector<char, 200> SV; in prepareTempFiles() local 188 EC = sys::fs::createTemporaryFile("tmpfile", "txt", FD[I], SV); in prepareTempFiles() 191 FileName[I] = Twine(SV).str(); in prepareTempFiles()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 70 nonloc::SymbolVal SV = Cond.castAs<nonloc::SymbolVal>(); in assumeAux() local 71 SymbolRef Sym = SV.getSymbol(); in assumeAux()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VectorCombine.cpp | 2627 while (auto *SV = dyn_cast<ShuffleVectorInst>(U->get())) { in lookThroughShuffles() local 2629 cast<FixedVectorType>(SV->getOperand(0)->getType())->getNumElements(); in lookThroughShuffles() 2630 int M = SV->getMaskValue(Lane); in lookThroughShuffles() 2634 U = &SV->getOperandUse(0); in lookThroughShuffles() 2637 U = &SV->getOperandUse(1); in lookThroughShuffles() 3003 } else if (auto *SV = dyn_cast<ShuffleVectorInst>(CI)) { in foldShuffleFromReductions() local 3004 if (Shuffle && Shuffle != SV) in foldShuffleFromReductions() 3006 Shuffle = SV; in foldShuffleFromReductions() 3175 auto *SV = dyn_cast<ShuffleVectorInst>(U); in foldSelectShuffle() local 3176 if (!SV || SV->getType() != VT) in foldSelectShuffle() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCELFStreamer.h | 100 AttributeItem(Types Ty, unsigned Tg, unsigned IV, std::string SV) in AttributeItem() 101 : Type(Ty), Tag(Tg), IntValue(IV), StringValue(std::move(SV)) {} in AttributeItem()
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | ee-cert-1024.pem | 4 dmVyLmV4YW1wbGUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMF7WhfgK/SV
|
| /freebsd/contrib/file/magic/ |
| H A D | Header | 3 # files is 5 on V7 and BSD, 4 on SV, and ?? on SVID.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ScalarEvolutionExpressions.h | 665 template <typename SV> class SCEVTraversal { 666 SV &Visitor; 676 SCEVTraversal(SV &V) : Visitor(V) {} in SCEVTraversal() 716 template <typename SV> void visitAll(const SCEV *Root, SV &Visitor) { in visitAll() 717 SCEVTraversal<SV> T(Visitor); in visitAll()
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
| H A D | log1pf.c | 36 TEST_SIG (SV, F, 1, log1p, -0.9, 10.0)
|
| H A D | expf.c | 45 TEST_SIG (SV, F, 1, exp, -9.9, 9.9)
|
| H A D | coshf.c | 56 TEST_SIG (SV, F, 1, cosh, -10.0, 10.0)
|
| H A D | hypotf.c | 40 TEST_SIG (SV, F, 2, hypot, -10.0, 10.0)
|
| H A D | acosh.c | 44 TEST_SIG (SV, D, 1, acosh, 1.0, 10.0)
|
| H A D | acoshf.c | 44 TEST_SIG (SV, F, 1, acosh, 1.0, 10.0)
|
| H A D | hypot.c | 46 TEST_SIG (SV, D, 2, hypot, -10.0, 10.0)
|
| H A D | asinf.c | 70 TEST_SIG (SV, F, 1, asin, -1.0, 1.0)
|
| H A D | atanh.c | 52 TEST_SIG (SV, D, 1, atanh, -1.0, 1.0)
|