Searched refs:luaS_newlstr (Results 1 – 8 of 8) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lstring.h | 19 #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 D | lstring.c | 156 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 D | lobject.c | 170 setsvalue2s(L, L->top++, luaS_newlstr(L, str, l)); in pushstr()
|
H A D | lundump.c | 82 return luaS_newlstr(S->L,s,size-1); /* remove trailing '\0' */ in LoadString()
|
H A D | llex.c | 125 TString *ts = luaS_newlstr(L, str, l); /* create new string */ in luaX_newstring()
|
H A D | lvm.c | 54 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 D | lapi.c | 504 ts = luaS_newlstr(L, s, len); in lua_pushlstring() 1138 setsvalue2s(L, L->top, luaS_newlstr(L, "", 0)); in lua_concat()
|
H A D | lcode.c | 332 setsvalue(L, L->top++, luaS_newlstr(L, (char *)&r, sizeof(r))); in luaK_numberK()
|