| /src/sys/external/bsd/gnu-efi/dist/apps/ |
| drv0.c | 89 * Error looking up handles for proto: 14 101 GNU_EFI_APPS_DRV0_PROTOCOL Proto; 144 &InternalGnuEfiAppsDrv0ProtocolData.Proto, 160 InternalGnuEfiAppsDrv0ProtocolData.Proto.SayHello 162 InternalGnuEfiAppsDrv0ProtocolData.Proto.GetNumberOfHello 166 /* Grab handle to this image: we'll attach our proto instance to it */ 176 /* Attach our proto to the current driver image */ 179 &InternalGnuEfiAppsDrv0ProtocolData.Proto, NULL);
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| testsock6.pl | 23 Proto => tcp)
|
| send.pl | 28 Proto => "tcp",) or die "$!";
|
| ditch.pl | 83 Proto => "udp",
|
| /src/external/mit/lua/dist/src/ |
| lundump.h | 35 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
| lfunc.h | 52 LUAI_FUNC Proto *luaF_newproto (lua_State *L); 61 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); 62 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
|
| ldump.c | 115 static void dumpCode (DumpState *D, const Proto *f) { 121 static void dumpFunction(DumpState *D, const Proto *f, TString *psource); 123 static void dumpConstants (DumpState *D, const Proto *f) { 151 static void dumpProtos (DumpState *D, const Proto *f) { 160 static void dumpUpvalues (DumpState *D, const Proto *f) { 171 static void dumpDebug (DumpState *D, const Proto *f) { 196 static void dumpFunction (DumpState *D, const Proto *f, TString *psource) { 230 int luaU_dump(lua_State *L, const Proto *f, lua_Writer w, void *data,
|
| lundump.c | 114 static TString *loadStringN (LoadState *S, Proto *p) { 140 static TString *loadString (LoadState *S, Proto *p) { 148 static void loadCode (LoadState *S, Proto *f) { 156 static void loadFunction(LoadState *S, Proto *f, TString *psource); 159 static void loadConstants (LoadState *S, Proto *f) { 197 static void loadProtos (LoadState *S, Proto *f) { 200 f->p = luaM_newvectorchecked(S->L, n, Proto *); 218 static void loadUpvalues (LoadState *S, Proto *f) { 233 static void loadDebug (LoadState *S, Proto *f) { 264 static void loadFunction (LoadState *S, Proto *f, TString *psource) [all...] |
| ldebug.c | 64 static int getbaseline (const Proto *f, int pc, int *basepc) { 87 int luaG_getfuncline (const Proto *f, int pc) { 181 static const char *upvalname (const Proto *p, int uv) { 269 const Proto *p = cl->l.p; 286 static int nextline (const Proto *p, int currentline, int pc) { 302 const Proto *p = f->l.p; 424 static const char *getobjname (const Proto *p, int lastpc, int reg, 431 static void kname (const Proto *p, int c, const char **name) { 440 static void rname (const Proto *p, int pc, int c, const char **name) { 450 static void rkname (const Proto *p, int pc, Instruction i, const char **name) [all...] |
| ldebug.h | 41 LUAI_FUNC int luaG_getfuncline (const Proto *f, int pc);
|
| luac.c | 30 static void PrintFunction(const Proto* f, int full); 145 static const Proto* combine(lua_State* L, int n) 151 Proto* f; 174 const Proto* f; 267 static void PrintType(const Proto* f, int i) 296 static void PrintConstant(const Proto* f, int i) 340 static void PrintCode(const Proto* f) 674 static void PrintHeader(const Proto* f) 694 static void PrintDebug(const Proto* f) 722 static void PrintFunction(const Proto* f, int full [all...] |
| lfunc.c | 244 Proto *luaF_newproto (lua_State *L) { 245 GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto)); 246 Proto *f = gco2p(o); 271 void luaF_freeproto (lua_State *L, Proto *f) { 287 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/ |
| toy.cpp | 148 std::unique_ptr<PrototypeAST> Proto; 152 FunctionAST(std::unique_ptr<PrototypeAST> Proto, 154 : Proto(std::move(Proto)), Body(std::move(Body)) {} 345 auto Proto = ParsePrototype(); 346 if (!Proto) 350 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); 357 // Make an anonymous proto. 358 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", 360 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/ |
| toy.cpp | 182 std::unique_ptr<PrototypeAST> Proto; 186 FunctionAST(std::unique_ptr<PrototypeAST> Proto, 188 : Proto(std::move(Proto)), Body(std::move(Body)) {} 382 auto Proto = ParsePrototype(); 383 if (!Proto) 387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); 394 // Make an anonymous proto. 395 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", 397 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/ |
| toy.cpp | 172 std::unique_ptr<PrototypeAST> Proto; 176 FunctionAST(std::unique_ptr<PrototypeAST> Proto, 178 : Proto(std::move(Proto)), Body(std::move(Body)) {} 372 auto Proto = ParsePrototype(); 373 if (!Proto) 377 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)); 384 // Make an anonymous proto. 385 auto Proto = std::make_unique<PrototypeAST>("__anon_expr", 387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E)) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans6/ |
| ans.pl | 23 LocalPort => $localport, Proto => "udp") or die "$!"; 73 Proto => "udp") or die "$!";
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclPrinter.cpp | 41 std::string &Proto); 303 std::string &Proto) { 310 Proto += " : "; 311 Out << Proto; 312 Proto.clear(); 579 std::string Proto = "explicit"; 580 llvm::raw_string_ostream EOut(Proto); 631 std::string Proto; 634 Proto += D->getQualifiedNameAsString(); 636 llvm::raw_string_ostream OS(Proto); [all...] |
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| SveEmitter.cpp | 146 std::string Proto; 173 Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy, 182 std::string getProto() const { return Proto; } 192 unsigned getNumParams() const { return Proto.size() - 1; } 218 return Proto.find_first_of("ajfrKLR@") != std::string::npos; 224 auto Idx = Proto.find_first_of("ajfrKLR@"); 237 std::string Proto) const; 812 Intrinsic::Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy, 817 : Name(Name.str()), LLVMName(LLVMName), Proto(Proto.str()) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| KaleidoscopeJIT.h | 42 std::unique_ptr<PrototypeAST> Proto; 46 FunctionAST(std::unique_ptr<PrototypeAST> Proto, 48 : Proto(std::move(Proto)), Body(std::move(Body)) {}
|
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans7/ |
| ans.pl | 23 LocalPort => $localport, Proto => "udp") or die "$!";
|
| /src/external/mpl/bind/dist/bin/tests/system/formerr/ |
| formerr.pl | 86 Proto => "tcp") or die "$!";
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| toy-jit.cpp | 241 PrototypeAST *Proto; 244 FunctionAST(PrototypeAST *proto, ExprAST *body) 245 : Proto(proto), Body(body) {} 596 PrototypeAST *Proto = ParsePrototype(); 597 if (Proto == 0) return 0; 600 return new FunctionAST(Proto, E); 607 // Make an anonymous proto. 608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 609 return new FunctionAST(Proto, E) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| toy.cpp | 225 PrototypeAST *Proto; 228 FunctionAST(PrototypeAST *proto, ExprAST *body) 229 : Proto(proto), Body(body) {} 580 PrototypeAST *Proto = ParsePrototype(); 581 if (Proto == 0) return 0; 584 return new FunctionAST(Proto, E); 591 // Make an anonymous proto. 592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 593 return new FunctionAST(Proto, E) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| toy-jit.cpp | 226 PrototypeAST *Proto; 229 FunctionAST(PrototypeAST *proto, ExprAST *body) 230 : Proto(proto), Body(body) {} 581 PrototypeAST *Proto = ParsePrototype(); 582 if (Proto == 0) return 0; 585 return new FunctionAST(Proto, E); 592 // Make an anonymous proto. 593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 594 return new FunctionAST(Proto, E) [all...] |
| toy.cpp | 227 PrototypeAST *Proto; 230 FunctionAST(PrototypeAST *proto, ExprAST *body) 231 : Proto(proto), Body(body) {} 582 PrototypeAST *Proto = ParsePrototype(); 583 if (Proto == 0) return 0; 586 return new FunctionAST(Proto, E); 593 // Make an anonymous proto. 594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 595 return new FunctionAST(Proto, E) [all...] |