| /openbsd-src/gnu/usr.bin/perl/dist/IO/t/ |
| H A D | io_udp.t | 47 my $udpa = IO::Socket::INET->new(Proto => 'udp', LocalAddr => 'localhost') 48 || IO::Socket::INET->new(Proto => 'udp', LocalAddr => '127.0.0.1') 52 my $udpb = IO::Socket::INET->new(Proto => 'udp', LocalAddr => 'localhost') 53 || IO::Socket::INET->new(Proto => 'udp', LocalAddr => '127.0.0.1') 78 my $udpc = IO::Socket::INET->new(Proto => 'udp', LocalAddr => 'localhost') 79 || IO::Socket::INET->new(Proto => 'udp', LocalAddr => '127.0.0.1')
|
| H A D | io_sock.t | 42 Proto => 'tcp', 78 Proto => 'tcp', 82 Proto => 'tcp', 175 Proto => 'udp', 178 Proto => 'udp', 188 my $sock = IO::Socket::INET->new(Proto => 'udp', 190 || IO::Socket::INET->new(Proto => 'udp', 229 $listen = IO::Socket::INET->new(LocalAddr => 'localhost', Listen => 2, Proto => 'tcp', Timeout => 1…
|
| /openbsd-src/regress/sys/kern/sosplice/error/ |
| H A D | args-EBUSY.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "tcp", 33 Proto => "tcp",
|
| H A D | args-splice-EBUSY.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "tcp", 33 Proto => "tcp",
|
| H A D | args-splice-EINVAL.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "tcp",
|
| H A D | args-splice-ENOTCONN.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "tcp",
|
| H A D | args-splice-EPROTONOSUPPORT.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "udp",
|
| H A D | args-splice-EOPNOTSUPP.pl | 12 Proto => "tcp", 18 Proto => "tcp", 24 Proto => "tcp",
|
| H A D | args-idle-EINVAL.pl | 13 Proto => "tcp", 19 Proto => "tcp", 25 Proto => "tcp",
|
| H A D | args-max-EINVAL.pl | 13 Proto => "tcp", 19 Proto => "tcp", 25 Proto => "tcp",
|
| H A D | args-ENOTCONN.pl | 12 Proto => "tcp", 16 Proto => "tcp",
|
| H A D | args-udp-EPROTONOSUPPORT.pl | 12 Proto => "udp", 16 Proto => "tcp",
|
| H A D | args-EOPNOTSUPP.pl | 12 Proto => "tcp", 17 Proto => "tcp",
|
| H A D | args-splice-EBADF.pl | 12 Proto => "tcp", 18 Proto => "tcp",
|
| H A D | args-splice-ENOTSOCK.pl | 12 Proto => "tcp", 18 Proto => "tcp",
|
| H A D | args-udp-ENOTCONN.pl | 12 Proto => "udp", 17 Proto => "udp",
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter2/ |
| H A D | toy.cpp | 148 std::unique_ptr<PrototypeAST> Proto; member in __anonb06221950111::FunctionAST 152 FunctionAST(std::unique_ptr<PrototypeAST> Proto, in FunctionAST() argument 154 : Proto(std::move(Proto)), Body(std::move(Body)) {} in FunctionAST() 345 auto Proto = ParsePrototype(); in ParseDefinition() local 346 if (!Proto) in ParseDefinition() 350 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseDefinition() 358 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", in ParseTopLevelExpr() local 360 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseTopLevelExpr()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | DeclPrinter.cpp | 41 std::string &Proto); 307 std::string &Proto) { in PrintConstructorInitializers() argument 314 Proto += " : "; in PrintConstructorInitializers() 315 Out << Proto; in PrintConstructorInitializers() 316 Proto.clear(); in PrintConstructorInitializers() 580 std::string Proto = "explicit"; in printExplicitSpecifier() local 581 llvm::raw_string_ostream EOut(Proto); in printExplicitSpecifier() 590 Out << Proto; in printExplicitSpecifier() 632 std::string Proto; in VisitFunctionDecl() local 635 Proto += D->getQualifiedNameAsString(); in VisitFunctionDecl() [all …]
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter3/ |
| H A D | toy.cpp | 172 std::unique_ptr<PrototypeAST> Proto; member in __anon24de92960111::FunctionAST 176 FunctionAST(std::unique_ptr<PrototypeAST> Proto, in FunctionAST() argument 178 : Proto(std::move(Proto)), Body(std::move(Body)) {} in FunctionAST() 372 auto Proto = ParsePrototype(); in ParseDefinition() local 373 if (!Proto) in ParseDefinition() 377 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseDefinition() 385 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", in ParseTopLevelExpr() local 387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseTopLevelExpr() 485 Function *TheFunction = TheModule->getFunction(Proto->getName()); in codegen() 488 TheFunction = Proto->codegen(); in codegen()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter4/ |
| H A D | toy.cpp | 182 std::unique_ptr<PrototypeAST> Proto; member in __anon995b03970111::FunctionAST 186 FunctionAST(std::unique_ptr<PrototypeAST> Proto, in FunctionAST() argument 188 : Proto(std::move(Proto)), Body(std::move(Body)) {} in FunctionAST() 382 auto Proto = ParsePrototype(); in ParseDefinition() local 383 if (!Proto) in ParseDefinition() 387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseDefinition() 395 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", in ParseTopLevelExpr() local 397 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseTopLevelExpr() 515 auto &P = *Proto; in codegen() 516 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen()
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 146 std::string Proto; member in __anon5066fa640111::Intrinsic 173 Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy, 182 std::string getProto() const { return Proto; } in getProto() 192 unsigned getNumParams() const { return Proto.size() - 1; } in getNumParams() 218 return Proto.find_first_of("ajfrKLR@") != std::string::npos; in hasSplat() 224 auto Idx = Proto.find_first_of("ajfrKLR@"); in getSplatIdx() 237 std::string Proto) const; 812 Intrinsic::Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy, in Intrinsic() argument 817 : Name(Name.str()), LLVMName(LLVMName), Proto(Proto.str()), in Intrinsic() 822 for (unsigned I = 0; I < Proto.size(); ++I) { in Intrinsic() [all …]
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| H A D | toy-jit.cpp | 226 PrototypeAST *Proto; member in FunctionAST 230 : Proto(proto), Body(body) {} in FunctionAST() 581 PrototypeAST *Proto = ParsePrototype(); in ParseDefinition() local 582 if (Proto == 0) return 0; in ParseDefinition() 585 return new FunctionAST(Proto, E); in ParseDefinition() 593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); in ParseTopLevelExpr() local 594 return new FunctionAST(Proto, E); in ParseTopLevelExpr() 966 Function *TheFunction = Proto->Codegen(); in Codegen() 971 if (Proto->isBinaryOp()) in Codegen() 972 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence(); in Codegen() [all …]
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy-jit.cpp | 241 PrototypeAST *Proto; member in FunctionAST 245 : Proto(proto), Body(body) {} in FunctionAST() 596 PrototypeAST *Proto = ParsePrototype(); in ParseDefinition() local 597 if (Proto == 0) return 0; in ParseDefinition() 600 return new FunctionAST(Proto, E); in ParseDefinition() 608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); in ParseTopLevelExpr() local 609 return new FunctionAST(Proto, E); in ParseTopLevelExpr() 984 Function *TheFunction = Proto->Codegen(); in Codegen() 989 if (Proto->isBinaryOp()) in Codegen() 990 BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence(); in Codegen() [all …]
|
| /openbsd-src/regress/sys/kern/sosplice/loop/ |
| H A D | chain.pl | 58 Proto => $proto, 69 Proto => $proto, 89 Proto => $proto,
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 227 std::unique_ptr<PrototypeAST> Proto; member in __anon0dd774980111::FunctionAST 231 FunctionAST(std::unique_ptr<PrototypeAST> Proto, in FunctionAST() argument 233 : Proto(std::move(Proto)), Body(std::move(Body)) {} in FunctionAST() 509 auto Proto = ParsePrototype(); in ParseDefinition() local 510 if (!Proto) in ParseDefinition() 514 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseDefinition() 522 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", in ParseTopLevelExpr() local 524 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); in ParseTopLevelExpr() 789 auto &P = *Proto; in codegen() 790 FunctionProtos[Proto->getName()] = std::move(Proto); in codegen()
|