Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DSveEmitter.cpp160 std::string Proto; member in __anone51b860d0111::Intrinsic
189 Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy,
199 std::string getProto() const { return Proto; } in getProto()
233 return Proto.size() - (2 * count(Proto, '.')) - 1; in getNumParams()
261 return Proto.find_first_of("ajfrKLR@!") != std::string::npos; in hasSplat()
267 for (; I < Proto.size(); ++I, ++Param) { in getSplatIdx()
268 if (Proto[I] == 'a' || Proto[I] == 'j' || Proto[I] == 'f' || in getSplatIdx()
269 Proto[I] == 'r' || Proto[I] == 'K' || Proto[I] == 'L' || in getSplatIdx()
270 Proto[I] == 'R' || Proto[I] == '@' || Proto[I] == '!') in getSplatIdx()
274 if (Proto[I] == '.') in getSplatIdx()
[all …]
H A DNeonEmitter.cpp372 Intrinsic(const Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS, in Intrinsic() argument
385 Types.emplace_back(OutTS, getNextModifiers(Proto, Pos)); in Intrinsic()
386 StringRef Mods = getNextModifiers(Proto, Pos); in Intrinsic()
392 Mods = getNextModifiers(Proto, Pos); in Intrinsic()
521 StringRef getNextModifiers(StringRef Proto, unsigned &Pos) const;
997 StringRef Intrinsic::getNextModifiers(StringRef Proto, unsigned &Pos) const { in getNextModifiers() argument
998 if (Proto.size() == Pos) in getNextModifiers()
1000 else if (Proto[Pos] != '(') in getNextModifiers()
1001 return Proto.substr(Pos++, 1); in getNextModifiers()
1004 size_t End = Proto.find(')', Start); in getNextModifiers()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp42 std::string &Proto);
368 std::string &Proto) { in PrintConstructorInitializers() argument
377 Proto += " : "; in PrintConstructorInitializers()
378 Out << Proto; in PrintConstructorInitializers()
379 Proto.clear(); in PrintConstructorInitializers()
653 std::string Proto = "explicit"; in printExplicitSpecifier() local
654 llvm::raw_string_ostream EOut(Proto); in printExplicitSpecifier()
662 Out << Proto; in printExplicitSpecifier()
718 std::string Proto; in VisitFunctionDecl() local
721 Proto += D->getQualifiedNameAsString(); in VisitFunctionDecl()
[all …]
/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.c63 static int getbaseline (const Proto *f, int pc, int *basepc) { in getbaseline()
86 int luaG_getfuncline (const Proto *f, int pc) { in luaG_getfuncline()
180 static const char *upvalname (const Proto *p, int uv) { in upvalname()
268 const Proto *p = cl->l.p; in funcinfo()
285 static int nextline (const Proto *p, int currentline, int pc) { in nextline()
299 const Proto *p = f->l.p; in collectvalidlines()
436 static int findsetreg (const Proto *p, int lastpc, int reg) { in findsetreg()
485 static const char *kname (const Proto *p, int index, const char **name) { in kname()
498 static const char *basicgetobjname (const Proto *p, int *ppc, int reg, in basicgetobjname()
532 static void rname (const Proto *p, int pc, int c, const char **name) { in rname()
[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.h32 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlfunc.h22 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
28 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
30 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dlfunc.c109 Proto *luaF_newproto (lua_State *L) { in luaF_newproto()
110 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto), NULL, 0)->p; in luaF_newproto()
134 void luaF_freeproto (lua_State *L, Proto *f) { in luaF_freeproto()
149 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { in luaF_getlocalname()
H A Dldebug.c106 static const char *upvalname (Proto *p, int uv) { in upvalname()
198 Proto *p = cl->l.p; in funcinfo()
317 static const char *getobjname (Proto *p, int lastpc, int reg,
324 static void kname (Proto *p, int pc, int c, const char **name) { in kname()
354 static int findsetreg (Proto *p, int lastpc, int reg) { in findsetreg()
405 static const char *getobjname (Proto *p, int lastpc, int reg, in getobjname()
461 Proto *p = ci_func(ci)->p; /* calling function */ in getfuncname()
H A Dlobject.h468 typedef struct Proto { struct
472 struct Proto **p; /* functions defined inside the function */ argument
490 } Proto; typedef
526 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",
H A Dtst.ipv4localudplite.ksh69 Proto => "udplite",
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp922 for (const PrototypeDescriptor &Proto : Prototype) { in computeTypes() local
923 auto T = computeType(BT, Log2LMUL, Proto); in computeTypes()
934 PrototypeDescriptor Proto) { in computeRVVTypeHashValue() argument
940 ((uint64_t)(Proto.PT & 0xff) << 16) | in computeRVVTypeHashValue()
941 ((uint64_t)(Proto.TM & 0xff) << 24) | in computeRVVTypeHashValue()
942 ((uint64_t)(Proto.VTM & 0xff) << 32); in computeRVVTypeHashValue()
946 PrototypeDescriptor Proto) { in computeType() argument
947 uint64_t Idx = computeRVVTypeHashValue(BT, Log2LMUL, Proto); in computeType()
957 RVVType T(BT, Log2LMUL, Proto); in computeType()
/freebsd/contrib/sendmail/contrib/
H A DsocketmapClient.pl20 Proto => 'tcp',
H A DsocketmapServer.pl17 Proto => 'tcp',

12345