Searched refs:Temp (Results 176 - 200 of 221) sorted by relevance

123456789

/openbsd-current/gnu/llvm/clang/lib/AST/
H A DAPValue.cpp96 const Expr *Temp = MTE->getSubExpr(); local
97 const Expr *Inner = Temp->skipRValueSubobjectAdjustments(CommaLHSs,
H A DJSONNodeDumper.cpp1441 const CXXTemporary *Temp = BTE->getTemporary(); local
1442 JOS.attribute("temp", createPointerRepresentation(Temp));
1443 if (const CXXDestructorDecl *Dtor = Temp->getDestructor())
H A DExprCXX.cpp1040 CXXTemporary *Temp,
1046 return new (C) CXXBindTemporaryExpr(Temp, SubExpr);
1039 Create(const ASTContext &C, CXXTemporary *Temp, Expr* SubExpr) argument
/openbsd-current/gnu/usr.bin/perl/lib/Unicode/
H A DUCD.t1444 require File::Temp;
1445 my $off = File::Temp->new();
1452 my $gend = File::Temp->new();
1456 my $diff = File::Temp->new();
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DExprCXX.h1471 CXXTemporary *Temp = nullptr; member in class:clang::CXXBindTemporaryExpr
1477 Temp(temp), SubExpr(SubExpr) {
1485 static CXXBindTemporaryExpr *Create(const ASTContext &C, CXXTemporary *Temp,
1488 CXXTemporary *getTemporary() { return Temp; }
1489 const CXXTemporary *getTemporary() const { return Temp; }
1490 void setTemporary(CXXTemporary *T) { Temp = T; }
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp5181 APFloat Temp = *this;
5183 opStatus St = Temp.convert(semIEEEdouble, rmNearestTiesToEven, &LosesInfo);
5186 return Temp.getIEEE().convertToDouble();
5194 APFloat Temp = *this;
5196 opStatus St = Temp.convert(semIEEEsingle, rmNearestTiesToEven, &LosesInfo);
5199 return Temp.getIEEE().convertToFloat();
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2232 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(), local
2235 if (!Temp) return nullptr;
2237 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
2622 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(), local
2625 if (!Temp) return nullptr;
2627 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
5931 if (auto *Temp = dyn_cast<ClassTemplateDecl>(Other))
5932 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
5934 if (auto *Temp = dyn_cast<FunctionTemplateDecl>(Other))
5935 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
[all...]
/openbsd-current/regress/bin/ksh/
H A Dth137 use File::Temp qw/ :mktemp /;
/openbsd-current/gnu/usr.bin/perl/ext/File-Find/t/
H A Dfind.t39 use File::Temp qw(tempdir);
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/t/
H A Ddb-hash.t6 use File::Temp qw(tempdir) ;
H A Ddb-btree.t34 use File::Temp qw(tempdir) ;
H A Ddb-recno.t17 use File::Temp qw(tempdir) ;
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h44 static Temp##CLASS getTemporary(LLVMContext &Context, \
46 return Temp##CLASS( \
111 iterator Temp(*this);
113 return Temp;
/openbsd-current/gnu/usr.bin/perl/Porting/
H A DMaintainers.pl543 'File::Temp' => {
544 'DISTRIBUTION' => 'ETHER/File-Temp-0.2311.tar.gz',
545 'FILES' => q[cpan/File-Temp],
H A Dtest-dist-modules.pl6 use File::Temp "tempdir";
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DDistribution.pm1546 if ($CPAN::META->has_usable("File::Temp")) {
1547 $tempdir = File::Temp::tempdir("CHECKSUMS-XXXX", CLEANUP => 1, DIR => "/tmp" );
4624 if ($CPAN::META->has_usable("File::Temp")) {
4625 $fh = File::Temp->new(
4684 if ($CPAN::META->has_usable("File::Temp")) {
4685 $fh = File::Temp->new(
4837 unless ($CPAN::META->has_usable("File::Temp")) {
4838 $CPAN::Frontend->mydie("File::Temp not installed; cannot continue");
4879 my $fh = File::Temp->new(
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp5074 SDValue Temp; local
5078 Temp = DAG.getNode(ISD::XOR, dl, OpVT, N0, N1);
5079 N0 = DAG.getNOT(dl, Temp, OpVT);
5081 DCI.AddToWorklist(Temp.getNode());
5088 Temp = DAG.getNOT(dl, N0, OpVT);
5089 N0 = DAG.getNode(ISD::AND, dl, OpVT, N1, Temp);
5091 DCI.AddToWorklist(Temp.getNode());
5095 Temp = DAG.getNOT(dl, N1, OpVT);
5096 N0 = DAG.getNode(ISD::AND, dl, OpVT, N0, Temp);
5098 DCI.AddToWorklist(Temp
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp4787 Register Temp = MRI.createVirtualRegister(&Mips::GPR32RegClass); local
4789 .addDef(Temp)
4792 BuildMI(*BB, I, DL, TII->get(Mips::FILL_W)).addDef(Dest).addUse(Temp);
4834 Register Temp = MRI.createVirtualRegister(&Mips::GPR64RegClass); local
4836 .addDef(Temp)
4839 BuildMI(*BB, I, DL, TII->get(Mips::FILL_D)).addDef(Dest).addUse(Temp);
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGExprAgg.cpp2043 Address Temp = CreateMemTemp(E->getType()); local
2044 LValue LV = MakeAddrLValue(Temp, E->getType());
H A DTargetInfo.cpp441 Address Temp = CGF.CreateMemTemp(Ty, "vacplx"); local
442 CGF.EmitStoreOfComplex({Real, Imag}, CGF.MakeAddrLValue(Temp, Ty),
444 return Temp;
736 Address Temp = CGF.CreateMemTemp(Ty, "varet"); local
739 CGF.Builder.CreateStore(Val, Temp);
740 return Temp;
8356 Address Temp = CGF.CreateMemTemp(OrigTy, "vaarg.promotion-temp");
8360 llvm::Type *IntTy = (OrigTy->isIntegerType() ? Temp.getElementType()
8364 V = CGF.Builder.CreateIntToPtr(V, Temp.getElementType());
8366 CGF.Builder.CreateStore(V, Temp);
[all...]
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp4329 TreePattern Temp(Result.getRecord(), DstShared, false, *this);
4330 Temp.InferAllTypes();
4345 if (Temp.getOnlyTree()->hasPossibleType())
4349 PatternToMatch(TheDef, Preds, T, Temp.getOnlyTree(),
/openbsd-current/gnu/usr.bin/perl/ext/Pod-Html/t/lib/
H A DTesting.pm19 use File::Temp ( qw| tempdir | );
/openbsd-current/gnu/usr.bin/perl/utils/
H A Dperlbug.PL81 eval { require File::Temp; };
1014 my ($fh, $filename) = File::Temp::tempfile(UNLINK => 1);
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp812 SDValue Temp; local
905 Temp = True;
907 False = Temp;
/openbsd-current/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp3004 std::pair<StringRef, StringRef> Temp = Constraint.split('$'); local
3007 TRI, join_items("", Temp.first, Temp.second), VT);

Completed in 570 milliseconds

123456789