Home
last modified time | relevance | path

Searched refs:luaS_newlstr (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstring.h19 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
42 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
H A Dlstring.c156 TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { in luaS_newlstr() function
171 return luaS_newlstr(L, str, strlen(str)); in luaS_new()
H A Dlobject.c170 setsvalue2s(L, L->top++, luaS_newlstr(L, str, l)); in pushstr()
H A Dlundump.c82 return luaS_newlstr(S->L,s,size-1); /* remove trailing '\0' */ in LoadString()
H A Dllex.c125 TString *ts = luaS_newlstr(L, str, l); /* create new string */ in luaX_newstring()
H A Dlvm.c54 setsvalue2s(L, obj, luaS_newlstr(L, s, l)); in luaV_tostring()
327 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); in luaV_concat()
H A Dlapi.c504 ts = luaS_newlstr(L, s, len); in lua_pushlstring()
1138 setsvalue2s(L, L->top, luaS_newlstr(L, "", 0)); in lua_concat()
H A Dlcode.c332 setsvalue(L, L->top++, luaS_newlstr(L, (char *)&r, sizeof(r))); in luaK_numberK()