Home
last modified time | relevance | path

Searched refs:Tmp (Results 1 – 25 of 177) sorted by relevance

12345678

/openbsd/gnu/usr.bin/cvs/os2/
H A Dpopen.c175 Tmp = End1; End1 = End2; End2 = Tmp; in popen()
182 DosDupHandle (End2, &Tmp); in popen()
189 Tmp = STDERR; in popen()
209 DosDupHandle (Old1, &Tmp); in popen()
276 Tmp = STDIN; in popenRW()
277 DosDupHandle (In1, &Tmp); in popenRW()
278 Tmp = STDOUT; in popenRW()
280 Tmp = STDERR; in popenRW()
294 Tmp = STDIN; in popenRW()
297 Tmp = STDOUT; in popenRW()
[all …]
H A Drun.c462 Tmp = STDIN; in filter_stream_through_program()
464 Tmp = STDOUT; in filter_stream_through_program()
465 DosDupHandle (to, &Tmp); in filter_stream_through_program()
466 Tmp = STDERR; in filter_stream_through_program()
467 DosDupHandle (to, &Tmp); in filter_stream_through_program()
478 Tmp = STDIN; in filter_stream_through_program()
480 Tmp = STDOUT; in filter_stream_through_program()
482 Tmp = STDERR; in filter_stream_through_program()
497 Tmp = STDIN; in filter_stream_through_program()
500 Tmp = STDOUT; in filter_stream_through_program()
[all …]
H A Dporttcp.c131 const char *Tmp = Buffer; in IbmSockSend() local
144 ToSend = min (Len, (int) (0x10000 - (0xFFFF & (long) Tmp))); in IbmSockSend()
150 Sent = send (Socket, (char *) Tmp, ToSend, 0); in IbmSockSend()
162 Tmp += Sent; in IbmSockSend()
188 char *Tmp = Buffer; in IbmSockRecv() local
199 ToRecv = min( Len, (int)( 0x10000 - ( 0xFFFF & (long)Tmp ))); in IbmSockRecv()
205 Recvd = recv (Socket, Tmp, ToRecv, 0); in IbmSockRecv()
219 Tmp += Recvd; in IbmSockRecv()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPSInt.cpp26 APInt Tmp(NumBits, Str, /*radix=*/10); in APSInt() local
28 unsigned MinBits = Tmp.getMinSignedBits(); 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 DError.cpp164 std::string Tmp = toString(unwrap(Err)); in LLVMGetErrorMessage() local
165 char *ErrMsg = new char[Tmp.size() + 1]; in LLVMGetErrorMessage()
166 memcpy(ErrMsg, Tmp.data(), Tmp.size()); in LLVMGetErrorMessage()
167 ErrMsg[Tmp.size()] = '\0'; in LLVMGetErrorMessage()
H A DManagedStatic.cpp34 void *Tmp = Creator(); in RegisterManagedStatic() local
36 Ptr.store(Tmp, std::memory_order_release); in RegisterManagedStatic()
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZCopyPhysRegs.cpp82 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()
/openbsd/gnu/llvm/compiler-rt/lib/orc/
H A Dinterval_map.h105 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 Dwrapper_function_utils.h46 __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 Dsimple_packed_serialization.h160 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()
/openbsd/gnu/llvm/compiler-rt/include/orc_rt/
H A Dc_api.h110 char *Tmp = (char *)malloc(Size); in __orc_rt_CreateCWrapperFunctionResultFromRange() local
111 memcpy(Tmp, Data, Size); in __orc_rt_CreateCWrapperFunctionResultFromRange()
112 R.Data.ValuePtr = Tmp; in __orc_rt_CreateCWrapperFunctionResultFromRange()
142 char *Tmp = (char *)malloc(strlen(ErrMsg) + 1); in __orc_rt_CreateCWrapperFunctionResultFromOutOfBandError() local
143 strcpy(Tmp, ErrMsg); in __orc_rt_CreateCWrapperFunctionResultFromOutOfBandError()
144 R.Data.ValuePtr = Tmp; in __orc_rt_CreateCWrapperFunctionResultFromOutOfBandError()
/openbsd/gnu/llvm/llvm/lib/MC/
H A DSubtargetFeature.cpp30 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()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DManagedStatic.h87 void *Tmp = Ptr.load(std::memory_order_acquire);
88 if (!Tmp)
97 void *Tmp = Ptr.load(std::memory_order_acquire);
98 if (!Tmp)
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DEvaluator.h88 for (auto &Tmp : AllocaTmps) in ~Evaluator()
92 if (!Tmp->use_empty()) in ~Evaluator()
93 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType())); in ~Evaluator()
/openbsd/gnu/llvm/clang/tools/scan-build/libexec/
H A Dccc-analyzer591 my $Tmp = $Arg;
595 $Tmp = $Arg . $ARGV[$i];
597 push @CompileOpts,$Tmp;
637 my $Tmp = $Arg;
641 $Tmp = $Arg . $ARGV[$i];
643 push @CompileOpts,$Tmp;
644 push @LinkOpts,$Tmp;
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h197 JITSymbolFlags Tmp = LHS; variable
198 Tmp &= RHS;
199 return Tmp;
204 JITSymbolFlags Tmp = LHS; variable
205 Tmp |= RHS;
206 return Tmp;
/openbsd/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerBrUnless.cpp190 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()
/openbsd/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerIOPosix.cpp135 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 DFuzzerIOWindows.cpp379 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()
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp361 unsigned Tmp = 0; in EncodeFixedType() local
364 case MVT::iPTRAny: ++Tmp; [[fallthrough]]; in EncodeFixedType()
365 case MVT::vAny: ++Tmp; [[fallthrough]]; in EncodeFixedType()
366 case MVT::fAny: ++Tmp; [[fallthrough]]; in EncodeFixedType()
367 case MVT::iAny: ++Tmp; [[fallthrough]]; in EncodeFixedType()
439 unsigned Tmp = 0; in UpdateArgCodes() local
446 ++Tmp; in UpdateArgCodes()
449 ++Tmp; in UpdateArgCodes()
452 ++Tmp; in UpdateArgCodes()
455 ++Tmp; in UpdateArgCodes()
[all …]
/openbsd/gnu/llvm/libcxx/benchmarks/
H A Dallocation.bench.cpp89 PointerList *Tmp = Next; in BM_AllocateOnly() local
90 Next = Tmp->Next; in BM_AllocateOnly()
91 AllocWrapper::Deallocate(Tmp, alloc_size); in BM_AllocateOnly()
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h246 CacheT Tmp; in recycle() local
247 Tmp.init(); in recycle()
265 Cache.mergeBatches(&Tmp); in recycle()
270 Tmp.enqueueBatch(Cache.dequeueBatch()); in recycle()
273 doRecycle(&Tmp, Cb); in recycle()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp176 return Tmp.first; in SoftenFloatRes_Unary()
197 return Tmp.first; in SoftenFloatRes_Binary()
467 return Tmp.first; in SoftenFloatRes_FMA()
536 return Tmp.first; in SoftenFloatRes_FP_EXTEND()
573 return Tmp.first; in SoftenFloatRes_FP_ROUND()
621 return Tmp.first; in SoftenFloatRes_FPOWI()
802 return Tmp.first; in SoftenFloatRes_XINT_TO_FP()
918 return Tmp.first; in SoftenFloatOp_FP_ROUND()
1136 return Tmp.first; in SoftenFloatOp_Unary()
1335 SDValue Tmp; in ExpandFloatRes_FABS() local
[all …]
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DThreadSafeModule.cpp32 auto Tmp = CloneModule(M, VMap, [&](const GlobalValue *GV) { in cloneToNewContext() local
46 BCWriter.writeModule(*Tmp); in cloneToNewContext()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DPHITransAddr.cpp94 SmallVector<Instruction*, 8> Tmp(InstInputs.begin(), InstInputs.end()); in Verify() local
96 if (!VerifySubExpr(Addr, Tmp)) in Verify()
99 if (!Tmp.empty()) { in Verify()
371 PHITransAddr Tmp(InVal, DL, AC); in InsertPHITranslatedSubExpr() local
372 if (!Tmp.PHITranslateValue(CurBB, PredBB, &DT, /*MustDominate=*/true)) in InsertPHITranslatedSubExpr()
373 return Tmp.getAddr(); in InsertPHITranslatedSubExpr()

12345678