Home
last modified time | relevance | path

Searched refs:Proto (Results 1 – 25 of 104) sorted by relevance

12345

/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DSveEmitter.cpp157 std::string Proto; member in __anon2cdbc0d50111::Intrinsic
204 return Proto.size() - (2 * llvm::count(Proto, '.')) - 1; in getNumParams()
241 if (Proto[I] == 'a' || Proto[I] == 'j' || Proto[I] == 'f' || in getSplatIdx()
242 Proto[I] == 'r' || Proto[I] == 'K' || Proto[I] == 'L' || in getSplatIdx()
243 Proto[I] == 'R' || Proto[I] == '@') in getSplatIdx()
247 if (Proto[I] == '.') in getSplatIdx()
920 char Mod = Proto[0]; in getProtoModifier()
924 if (Proto.size() > 1 && Proto[1] == '.') { in getProtoModifier()
925 Mod = Proto[2]; in getProtoModifier()
933 Proto = Proto.drop_front(CharsToSkip); in getProtoModifier()
[all …]
H A DNeonEmitter.cpp370 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS, in Intrinsic() argument
382 Types.emplace_back(OutTS, getNextModifiers(Proto, Pos)); in Intrinsic()
383 StringRef Mods = getNextModifiers(Proto, Pos); in Intrinsic()
389 Mods = getNextModifiers(Proto, Pos); in Intrinsic()
494 StringRef getNextModifiers(StringRef Proto, unsigned &Pos) const;
946 if (Proto.size() == Pos) in getNextModifiers()
948 else if (Proto[Pos] != '(') in getNextModifiers()
949 return Proto.substr(Pos++, 1); in getNextModifiers()
952 size_t End = Proto.find(')', Start); in getNextModifiers()
955 return Proto.slice(Start, End); in getNextModifiers()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp395 Proto += " : "; in PrintConstructorInitializers()
396 Out << Proto; in PrintConstructorInitializers()
397 Proto.clear(); in PrintConstructorInitializers()
679 Out << Proto; in printExplicitSpecifier()
739 std::string Proto; in VisitFunctionDecl() local
768 Proto = '(' + Proto + ')'; in VisitFunctionDecl()
777 Proto += "("; in VisitFunctionDecl()
802 Proto += ")"; in VisitFunctionDecl()
835 Proto += ")"; in VisitFunctionDecl()
859 Proto.clear(); in VisitFunctionDecl()
[all …]
H A DMangle.cpp217 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT); in mangleName() local
221 if (!Proto) { in mangleName()
225 assert(!Proto->isVariadic()); in mangleName()
231 for (const auto &AT : Proto->param_types()) { in mangleName()
/freebsd/contrib/lua/src/
H A Dldump.c104 static void dumpCode (DumpState *D, const Proto *f) { in dumpCode()
110 static void dumpFunction(DumpState *D, const Proto *f, TString *psource);
112 static void dumpConstants (DumpState *D, const Proto *f) { in dumpConstants()
138 static void dumpProtos (DumpState *D, const Proto *f) { in dumpProtos()
147 static void dumpUpvalues (DumpState *D, const Proto *f) { in dumpUpvalues()
158 static void dumpDebug (DumpState *D, const Proto *f) { in dumpDebug()
183 static void dumpFunction (DumpState *D, const Proto *f, TString *psource) { in dumpFunction()
217 int luaU_dump(lua_State *L, const Proto *f, lua_Writer w, void *data, in luaU_dump()
H A Dlundump.c110 static TString *loadStringN (LoadState *S, Proto *p) { in loadStringN()
136 static TString *loadString (LoadState *S, Proto *p) { in loadString()
144 static void loadCode (LoadState *S, Proto *f) { in loadCode()
152 static void loadFunction(LoadState *S, Proto *f, TString *psource);
155 static void loadConstants (LoadState *S, Proto *f) { in loadConstants()
191 static void loadProtos (LoadState *S, Proto *f) { in loadProtos()
194 f->p = luaM_newvectorchecked(S->L, n, Proto *); in loadProtos()
212 static void loadUpvalues (LoadState *S, Proto *f) { in loadUpvalues()
227 static void loadDebug (LoadState *S, Proto *f) { in loadDebug()
258 static void loadFunction (LoadState *S, Proto *f, TString *psource) { in loadFunction()
H A Dldebug.c60 static int getbaseline (const Proto *f, int pc, int *basepc) { in getbaseline()
83 int luaG_getfuncline (const Proto *f, int pc) { in luaG_getfuncline()
177 static const char *upvalname (const Proto *p, int uv) { in upvalname()
265 const Proto *p = cl->l.p; in funcinfo()
282 static int nextline (const Proto *p, int currentline, int pc) { in nextline()
298 const Proto *p = f->l.p; in collectvalidlines()
427 static void kname (const Proto *p, int c, const char **name) { in kname()
465 static int findsetreg (const Proto *p, int lastpc, int reg) { in findsetreg()
594 static const char *funcnamefromcode (lua_State *L, const Proto *p, in funcnamefromcode()
847 static int changedline (const Proto *p, int oldpc, int newpc) { in changedline()
[all …]
H A Dlfunc.h50 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
59 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
60 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dluac.c28 static void PrintFunction(const Proto* f, int full);
143 static const Proto* combine(lua_State* L, int n) in combine()
149 Proto* f; in combine()
172 const Proto* f; in pmain()
265 static void PrintType(const Proto* f, int i) in PrintType()
294 static void PrintConstant(const Proto* f, int i) in PrintConstant()
334 static void PrintCode(const Proto* f) in PrintCode()
668 static void PrintHeader(const Proto* f) in PrintHeader()
688 static void PrintDebug(const Proto* f) in PrintDebug()
716 static void PrintFunction(const Proto* f, int full) in PrintFunction()
H A Dlfunc.c240 Proto *luaF_newproto (lua_State *L) { in luaF_newproto()
241 GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto)); in luaF_newproto()
242 Proto *f = gco2p(o); in luaF_newproto()
267 void luaF_freeproto (lua_State *L, Proto *f) { in luaF_freeproto()
283 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { in luaF_getlocalname()
H A Dlundump.h33 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlfunc.h21 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
27 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
29 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dlfunc.c108 Proto *luaF_newproto (lua_State *L) { in luaF_newproto()
109 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto), NULL, 0)->p; in luaF_newproto()
133 void luaF_freeproto (lua_State *L, Proto *f) { in luaF_freeproto()
148 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { in luaF_getlocalname()
H A Dldebug.c105 static const char *upvalname (Proto *p, int uv) { in upvalname()
197 Proto *p = cl->l.p; in funcinfo()
316 static const char *getobjname (Proto *p, int lastpc, int reg,
323 static void kname (Proto *p, int pc, int c, const char **name) { in kname()
353 static int findsetreg (Proto *p, int lastpc, int reg) { in findsetreg()
404 static const char *getobjname (Proto *p, int lastpc, int reg, in getobjname()
460 Proto *p = ci_func(ci)->p; /* calling function */ in getfuncname()
H A Dlobject.h464 typedef struct Proto { struct
468 struct Proto **p; /* functions defined inside the function */ argument
486 } Proto; argument
522 struct Proto *p;
/freebsd/contrib/netbsd-tests/lib/librumphijack/
H A Dnetstat.expout2 Proto Recv-Q Send-Q Local Address Foreign Address State
5 Proto Recv-Q Send-Q Local Address Foreign Address (state)
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4localsctp.ksh69 Proto => "sctp",
92 Proto => "sctp",
H A Dtst.localsctpstate.ksh72 Proto => "sctp",
95 Proto => "sctp",
H A Dget.ipv4remote.pl90 Proto => $proto,
H A Dtst.ipv4remoteudp.ksh71 Proto => "udp",
H A Dtst.ipv4remoteudplite.ksh72 Proto => "udplite",
H A Dtst.ipv4localudp.ksh68 Proto => "udp",
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp925 for (const PrototypeDescriptor &Proto : Prototype) { in computeTypes() local
926 auto T = computeType(BT, Log2LMUL, Proto); in computeTypes()
937 PrototypeDescriptor Proto) { in computeRVVTypeHashValue() argument
943 ((uint64_t)(Proto.PT & 0xff) << 16) | in computeRVVTypeHashValue()
944 ((uint64_t)(Proto.TM & 0xff) << 24) | in computeRVVTypeHashValue()
945 ((uint64_t)(Proto.VTM & 0xff) << 32); in computeRVVTypeHashValue()
949 PrototypeDescriptor Proto) { in computeType() argument
950 uint64_t Idx = computeRVVTypeHashValue(BT, Log2LMUL, Proto); in computeType()
960 RVVType T(BT, Log2LMUL, Proto); in computeType()
/freebsd/contrib/sendmail/contrib/
H A DsocketmapClient.pl20 Proto => 'tcp',
H A DsocketmapServer.pl17 Proto => 'tcp',

12345