/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APSInt.cpp | 26 APInt Tmp(NumBits, Str, /*radix=*/10); in APSInt() local 28 unsigned MinBits = Tmp.getSignificantBits(); in APSInt() 30 Tmp = Tmp.trunc(std::max<unsigned>(1, MinBits)); in APSInt() 31 *this = APSInt(Tmp, /*isUnsigned=*/false); in APSInt() 34 unsigned ActiveBits = Tmp.getActiveBits(); in APSInt() 36 Tmp = Tmp.trunc(std::max<unsigned>(1, ActiveBits)); in APSInt() 37 *this = APSInt(Tmp, /*isUnsigned=*/true); in APSInt()
|
H A D | Error.cpp | 186 std::string Tmp = toString(unwrap(Err)); in LLVMGetErrorMessage() local 187 char *ErrMsg = new char[Tmp.size() + 1]; in LLVMGetErrorMessage() 188 memcpy(ErrMsg, Tmp.data(), Tmp.size()); in LLVMGetErrorMessage() 189 ErrMsg[Tmp.size()] = '\0'; in LLVMGetErrorMessage()
|
H A D | ManagedStatic.cpp | 34 void *Tmp = Creator(); in RegisterManagedStatic() local 36 Ptr.store(Tmp, std::memory_order_release); in RegisterManagedStatic()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/HipStdPar/ |
H A D | HipStdPar.cpp | 83 SmallVector<User *> Tmp(G.user_begin(), G.user_end()); in checkIfSupported() local 86 auto U = std::move(Tmp.back()); in checkIfSupported() 87 Tmp.pop_back(); in checkIfSupported() 95 Tmp.insert(Tmp.end(), U->user_begin(), U->user_end()); in checkIfSupported() 98 } while (!I && !Tmp.empty()); in checkIfSupported() 203 SmallVector<const Function *> Tmp({CGN.first}); in run() local 205 auto F = std::move(Tmp.back()); in run() 206 Tmp.pop_back(); in run() 221 Tmp.push_back(N.second->getFunction()); in run() 223 } while (!std::empty(Tmp)); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZCopyPhysRegs.cpp | 82 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); in visitMBB() local 84 BuildMI(MBB, MI, DL, TII->get(SystemZ::IPM), Tmp); in visitMBB() 86 BuildMI(MBB, MI, DL, TII->get(SystemZ::EAR), Tmp).addReg(SrcReg); in visitMBB() 87 MI->getOperand(1).setReg(Tmp); in visitMBB() 92 Register Tmp = MRI->createVirtualRegister(&SystemZ::GR32BitRegClass); in visitMBB() local 93 MI->getOperand(0).setReg(Tmp); in visitMBB() 94 BuildMI(MBB, MBBI, DL, TII->get(SystemZ::SAR), DstReg).addReg(Tmp); in visitMBB()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | interval_map.h | 105 auto Tmp = std::move(*I); in erase() local 109 if (KE < Tmp.first.second) { in erase() 111 J, std::make_pair(std::make_pair(KE, Tmp.first.second), Tmp.second)); in erase() 116 if (KS > Tmp.first.first) in erase() 118 J, std::make_pair(std::make_pair(Tmp.first.first, KS), Tmp.second)); in erase() 140 auto Tmp = J++; in insert() local 141 this->Impl.erase(Tmp); in insert()
|
H A D | wrapper_function_utils.h | 46 orc_rt_CWrapperFunctionResult Tmp; variable 47 orc_rt_CWrapperFunctionResultInit(&Tmp); 48 std::swap(Tmp, Other.R); 49 std::swap(R, Tmp); 58 orc_rt_CWrapperFunctionResult Tmp; in release() local 59 orc_rt_CWrapperFunctionResultInit(&Tmp); in release() 60 std::swap(R, Tmp); in release() 61 return Tmp; in release()
|
H A D | simple_packed_serialization.h | 160 SPSTagT Tmp = Value; in serialize() local 162 swapByteOrder(Tmp); in serialize() 163 return OB.write(reinterpret_cast<const char *>(&Tmp), sizeof(Tmp)); in serialize() 167 SPSTagT Tmp; in deserialize() local 168 if (!IB.read(reinterpret_cast<char *>(&Tmp), sizeof(Tmp))) in deserialize() 171 swapByteOrder(Tmp); in deserialize() 172 Value = Tmp; in deserialize()
|
H A D | string_pool.h | 148 auto Tmp = I++; 149 if (Tmp->second == 0) 150 Pool.erase(Tmp);
|
/freebsd/contrib/llvm-project/compiler-rt/include/orc_rt/ |
H A D | c_api.h | 107 char *Tmp = (char *)malloc(Size); in orc_rt_CreateCWrapperFunctionResultFromRange() local 108 memcpy(Tmp, Data, Size); in orc_rt_CreateCWrapperFunctionResultFromRange() 109 R.Data.ValuePtr = Tmp; in orc_rt_CreateCWrapperFunctionResultFromRange() 139 char *Tmp = (char *)malloc(strlen(ErrMsg) + 1); in orc_rt_CreateCWrapperFunctionResultFromOutOfBandError() local 140 strcpy(Tmp, ErrMsg); in orc_rt_CreateCWrapperFunctionResultFromOutOfBandError() 141 R.Data.ValuePtr = Tmp; in orc_rt_CreateCWrapperFunctionResultFromOutOfBandError()
|
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
H A D | SubtargetFeature.cpp | 30 SmallVector<StringRef, 3> Tmp; in Split() local 31 S.split(Tmp, ',', -1, false /* KeepEmpty */); in Split() 32 V.reserve(Tmp.size()); in Split() 33 for (StringRef T : Tmp) in Split()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ManagedStatic.h | 87 void *Tmp = Ptr.load(std::memory_order_acquire); 88 if (!Tmp) 97 void *Tmp = Ptr.load(std::memory_order_acquire); 98 if (!Tmp)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | Evaluator.h | 88 for (auto &Tmp : AllocaTmps) in ~Evaluator() 92 if (!Tmp->use_empty()) in ~Evaluator() 93 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | JITSymbol.h | 197 JITSymbolFlags Tmp = LHS; variable 198 Tmp &= RHS; 199 return Tmp; 204 JITSymbolFlags Tmp = LHS; variable 205 Tmp |= RHS; 206 return Tmp;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLowerBrUnless.cpp | 190 Register Tmp = MRI.createVirtualRegister(&WebAssembly::I32RegClass); in runOnMachineFunction() local 191 BuildMI(MBB, &MI, MI.getDebugLoc(), TII.get(WebAssembly::EQZ_I32), Tmp) in runOnMachineFunction() 193 MFI.stackifyVReg(MRI, Tmp); in runOnMachineFunction() 194 Cond = Tmp; in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerIOPosix.cpp | 135 char *Tmp = new char[FileName.size() + 1]; in DirName() local 136 memcpy(Tmp, FileName.c_str(), FileName.size() + 1); in DirName() 137 std::string Res = dirname(Tmp); in DirName() 138 delete [] Tmp; in DirName()
|
H A D | FuzzerIOWindows.cpp | 379 std::string Tmp; in TmpDir() local 380 Tmp.resize(MAX_PATH + 1); in TmpDir() 381 DWORD Size = GetTempPathA(Tmp.size(), &Tmp[0]); in TmpDir() 386 Tmp.resize(Size); in TmpDir() 387 return Tmp; in TmpDir()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | condition_variable.h | 34 u32 Tmp = V + 1; in waitImpl() local 35 V = Tmp; in waitImpl()
|
H A D | quarantine.h | 258 CacheT Tmp; in recycle() local 259 Tmp.init(); in recycle() 277 Cache.mergeBatches(&Tmp); in recycle() 282 Tmp.enqueueBatch(Cache.dequeueBatch()); in recycle() 285 doRecycle(&Tmp, Cb); in recycle()
|
H A D | memtag.h | 169 uptr LineSize, Next, Tmp; in storeTags() local 225 [Tmp] "=&r"(Tmp) in storeTags()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | DXContainer.h | 88 iterator Tmp = *this; member 90 return Tmp; 100 iterator Tmp = *this; member 102 return Tmp; 349 PartIterator Tmp = *this; variable 351 return Tmp;
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ThreadSafeModule.cpp | 32 auto Tmp = CloneModule(M, VMap, [&](const GlobalValue *GV) { in cloneToNewContext() local 46 BCWriter.writeModule(*Tmp); in cloneToNewContext()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | Consumed.h | 174 ConsumedState getState(const CXXBindTemporaryExpr *Tmp) const; 198 void setState(const CXXBindTemporaryExpr *Tmp, ConsumedState State); 201 void remove(const CXXBindTemporaryExpr *Tmp);
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | AnalysisDeclContext.cpp | 127 bool Tmp; in getBody() local 128 return getBody(Tmp); in getBody() 132 bool Tmp; in isBodyAutosynthesized() local 133 getBody(Tmp); in isBodyAutosynthesized() 134 return Tmp; in isBodyAutosynthesized() 138 bool Tmp; in isBodyAutosynthesizedFromModelFile() local 139 Stmt *Body = getBody(Tmp); in isBodyAutosynthesizedFromModelFile() 140 return Tmp && Body->getBeginLoc().isValid(); in isBodyAutosynthesizedFromModelFile()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
H A D | SimplePackedSerialization.h | 172 SPSTagT Tmp = Value; in serialize() local 174 sys::swapByteOrder(Tmp); in serialize() 175 return OB.write(reinterpret_cast<const char *>(&Tmp), sizeof(Tmp)); in serialize() 179 SPSTagT Tmp; in deserialize() local 180 if (!IB.read(reinterpret_cast<char *>(&Tmp), sizeof(Tmp))) in deserialize() 183 sys::swapByteOrder(Tmp); in deserialize() 184 Value = Tmp; in deserialize()
|