Home | History | Annotate | Download | only in src

Lines Matching refs:TString

33 int luaS_eqlngstr (TString *a, TString *b) {
45 int luaS_eqstr (TString *a, TString *b) {
98 static TString *createstrobj (lua_State *L, const char *str, size_t l,
100 TString *ts;
101 size_t totalsize; /* total size of TString object */
102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char));
116 static TString *newshrstr (lua_State *L, const char *str, size_t l,
120 TString *s;
133 static TString *internshrstr (lua_State *L, const char *str, size_t l) {
140 TString *ts = rawgco2ts(o);
156 TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
160 if (l + 1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
170 TString *luaS_new (lua_State *L, const char *str) {