Searched refs:Tmp (Results 1 - 25 of 129) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPSInt.cpp26 APInt Tmp(NumBits, Str, /*radix=*/10);
28 unsigned MinBits = Tmp.getMinSignedBits();
30 Tmp = Tmp.trunc(std::max<unsigned>(1, MinBits));
31 *this = APSInt(Tmp, /*isUnsigned=*/false);
34 unsigned ActiveBits = Tmp.getActiveBits();
36 Tmp = Tmp.trunc(std::max<unsigned>(1, ActiveBits));
37 *this = APSInt(Tmp, /*isUnsigned=*/true);
H A DManagedStatic.cpp40 void *Tmp = Creator(); local
42 Ptr.store(Tmp, std::memory_order_release);
H A DError.cpp159 std::string Tmp = toString(unwrap(Err)); local
160 char *ErrMsg = new char[Tmp.size() + 1];
161 memcpy(ErrMsg, Tmp.data(), Tmp.size());
162 ErrMsg[Tmp.size()] = '\0';
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DSubtargetFeature.cpp34 SmallVector<StringRef, 3> Tmp; local
35 S.split(Tmp, ',', -1, false /* KeepEmpty */);
36 V.reserve(Tmp.size());
37 for (StringRef T : Tmp)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZCopyPhysRegs.cpp90 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); local
92 BuildMI(MBB, MI, DL, TII->get(SystemZ::IPM), Tmp);
94 BuildMI(MBB, MI, DL, TII->get(SystemZ::EAR), Tmp).addReg(SrcReg);
95 MI->getOperand(1).setReg(Tmp);
100 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); local
101 MI->getOperand(0).setReg(Tmp);
102 BuildMI(MBB, MBBI, DL, TII->get(SystemZ::SAR), DstReg).addReg(Tmp);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DManagedStatic.h87 void *Tmp = Ptr.load(std::memory_order_acquire); local
88 if (!Tmp)
97 void *Tmp = Ptr.load(std::memory_order_acquire); local
98 if (!Tmp)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DEvaluator.h46 for (auto &Tmp : AllocaTmps)
50 if (!Tmp->use_empty())
51 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DThreadSafeModule.cpp32 auto Tmp = CloneModule(M, VMap, [&](const GlobalValue *GV) { local
46 BCWriter.writeModule(*Tmp);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerBrUnless.cpp191 Register Tmp = MRI.createVirtualRegister(&WebAssembly::I32RegClass); local
192 BuildMI(MBB, MI, MI->getDebugLoc(), TII.get(WebAssembly::EQZ_I32), Tmp)
194 MFI.stackifyVReg(MRI, Tmp);
195 Cond = Tmp;
/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-sparcv9a.pl102 fxor @X[($j+2)%16],@X[($j+8)%16],%f18! 1/ 1/ 1:Tmp=X[2,3]^X[8,9]
104 faligndata @X[$j],@X[$j],%f18 ! 3/ 7/ 5:Tmp=X[0,1]>>>24
106 fmul8ulx16 %f18,$fmul,%f18 ! 5/10/ 7:Tmp>>=7, Tmp&=1
108 for %f18,@X[$j],@X[$j] ! 8/14/10:X[0,1]|=Tmp
163 fxor @X[($j+2)%16],@X[($j+8)%16],%f18! 1/ 1/ 1:Tmp=X[2,3]^X[8,9]
173 faligndata @X[$j],@X[$j],%f18 ! 3/ 7/ 5:Tmp=X[0,1]>>>24
182 fmul8ulx16 %f18,$fmul,%f18 ! 5/10/ 7:Tmp>>=7, Tmp&=1
191 fxor %f18,@X[$j],@X[$j] ! 8/14/10:X[0,1]|=Tmp
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRawByteChannel.h117 uint8_t Tmp = V ? 1 : 0; local
119 C.appendBytes(reinterpret_cast<const char *>(&Tmp), 1))
125 uint8_t Tmp = 0; local
126 if (auto Err = C.readBytes(reinterpret_cast<char *>(&Tmp), 1))
128 V = Tmp != 0;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h166 auto Tmp = I++; local
167 if (Tmp->second == 0)
168 Pool.erase(Tmp);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DConsumed.h171 ConsumedState getState(const CXXBindTemporaryExpr *Tmp) const;
195 void setState(const CXXBindTemporaryExpr *Tmp, ConsumedState State);
198 void remove(const CXXBindTemporaryExpr *Tmp);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h197 JITSymbolFlags Tmp = LHS; local
198 Tmp &= RHS;
199 return Tmp;
204 JITSymbolFlags Tmp = LHS; local
205 Tmp |= RHS;
206 return Tmp;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h80 specific_attr_iterator Tmp(*this);
82 return Tmp;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp127 LibFunc Tmp; variable
132 F, Tmp))
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOPosix.cpp132 char *Tmp = new char[FileName.size() + 1]; local
133 memcpy(Tmp, FileName.c_str(), FileName.size() + 1);
134 std::string Res = dirname(Tmp);
135 delete [] Tmp;
H A DFuzzerIOWindows.cpp369 std::string Tmp; local
370 Tmp.resize(MAX_PATH + 1);
371 DWORD Size = GetTempPathA(Tmp.size(), &Tmp[0]);
373 Printf("Couldn't get Tmp path.\n");
376 Tmp.resize(Size);
377 return Tmp;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h254 CacheT Tmp; local
255 Tmp.init();
273 Cache.mergeBatches(&Tmp);
278 Tmp.enqueueBatch(Cache.dequeueBatch());
281 doRecycle(&Tmp, Cb);
H A Dcommon.h46 T Tmp = A; local
48 B = Tmp;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp211 CheckerInfoSet Tmp; local
227 Tmp.insert(Deps.begin(), Deps.end());
230 Tmp.insert(&Checker);
237 return llvm::is_contained(Tmp, Checker);
376 int Tmp; local
377 bool HasFailed = SuppliedValue.getAsInteger(0, Tmp);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp281 std::pair<SDValue, SDValue> Tmp = ExpandLoad(Node); local
282 AddLegalizedOperand(Op.getValue(0), Tmp.first);
283 AddLegalizedOperand(Op.getValue(1), Tmp.second);
284 return Op.getResNo() ? Tmp.first : Tmp.second;
717 SDValue Tmp; local
760 if (TLI.expandABS(Node, Tmp, DAG)) {
761 Results.push_back(Tmp);
769 if (TLI.expandCTPOP(Node, Tmp, DAG)) {
770 Results.push_back(Tmp);
1085 SDValue Tmp = DAG.UnrollVectorOp(Node); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DPHITransAddr.cpp63 // If it's an instruction, it is either in Tmp or its operands recursively
94 SmallVector<Instruction*, 8> Tmp(InstInputs.begin(), InstInputs.end());
96 if (!VerifySubExpr(Addr, Tmp))
99 if (!Tmp.empty()) {
370 PHITransAddr Tmp(InVal, DL, AC);
371 if (!Tmp.PHITranslateValue(CurBB, PredBB, &DT, /*MustDominate=*/true))
372 return Tmp.getAddr();
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp335 unsigned Tmp = 0; local
338 case MVT::iPTRAny: ++Tmp; LLVM_FALLTHROUGH;
339 case MVT::vAny: ++Tmp; LLVM_FALLTHROUGH;
340 case MVT::fAny: ++Tmp; LLVM_FALLTHROUGH;
341 case MVT::iAny: ++Tmp; LLVM_FALLTHROUGH;
348 assert(NextArgCode < ArgCodes.size() && ArgCodes[NextArgCode] == Tmp &&
353 return Sig.push_back((ArgNo << 3) | Tmp);
408 unsigned Tmp = 0; local
415 ++Tmp;
418 ++Tmp;
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp127 bool Tmp; local
128 return getBody(Tmp);
132 bool Tmp; local
133 getBody(Tmp);
134 return Tmp;
138 bool Tmp; local
139 Stmt *Body = getBody(Tmp);
140 return Tmp && Body->getBeginLoc().isValid();

Completed in 178 milliseconds

123456