Home
last modified time | relevance | path

Searched refs:luaM_newvector (Results 1 – 4 of 4) sorted by relevance

/minix3/external/mit/lua/dist/src/
H A Dlundump.c109 f->code = luaM_newvector(S->L, n, Instruction); in LoadCode()
121 f->k = luaM_newvector(S->L, n, TValue); in LoadConstants()
157 f->p = luaM_newvector(S->L, n, Proto *); in LoadProtos()
171 f->upvalues = luaM_newvector(S->L, n, Upvaldesc); in LoadUpvalues()
185 f->lineinfo = luaM_newvector(S->L, n, int); in LoadDebug()
189 f->locvars = luaM_newvector(S->L, n, LocVar); in LoadDebug()
H A Dlmem.h51 #define luaM_newvector(L,n,t) \ macro
H A Dlstate.c151 L1->stack = luaM_newvector(L, BASIC_STACK_SIZE, TValue); in stack_init()
H A Dltable.c335 t->node = luaM_newvector(L, size, Node); in setnodevector()