Home
last modified time | relevance | path

Searched refs:s2v (Results 1 – 21 of 21) sorted by relevance

/external/lua/src/
Dlvm.c207 TValue *pinit = s2v(ra); in forprep()
208 TValue *plimit = s2v(ra + 1); in forprep()
209 TValue *pstep = s2v(ra + 2); in forprep()
216 setivalue(s2v(ra + 3), init); /* control variable */ in forprep()
253 setfltvalue(s2v(ra), init); /* internal index */ in forprep()
254 setfltvalue(s2v(ra + 3), init); /* control variable */ in forprep()
267 lua_Number step = fltvalue(s2v(ra + 2)); in floatforloop()
268 lua_Number limit = fltvalue(s2v(ra + 1)); in floatforloop()
269 lua_Number idx = fltvalue(s2v(ra)); /* internal index */ in floatforloop()
273 chgfltvalue(s2v(ra), idx); /* update internal index */ in floatforloop()
[all …]
Dlapi.c62 else return s2v(o); in index2value()
66 return s2v(L->top + idx); in index2value()
73 if (ttislcf(s2v(ci->func))) /* light C function? */ in index2value()
76 CClosure *func = clCvalue(s2v(ci->func)); in index2value()
184 setnilvalue(s2v(L->top++)); /* clear new slots */ in lua_settop()
206 setobj(L, &temp, s2v(from)); in reverse()
239 luaC_barrier(L, clCvalue(s2v(L->ci->func)), fr); in lua_copy()
321 luaO_arith(L, op, s2v(L->top - 2), s2v(L->top - 1), L->top - 2); in lua_arith()
348 size_t sz = luaO_str2num(s, s2v(L->top)); in lua_stringtonumber()
475 setnilvalue(s2v(L->top)); in lua_pushnil()
[all …]
Dltm.c169 if (!callbinTM(L, s2v(top - 2), s2v(top - 1), top - 2, TM_CONCAT)) in luaT_tryconcatTM()
170 luaG_concaterror(L, s2v(top - 2), s2v(top - 1)); in luaT_tryconcatTM()
203 return !l_isfalse(s2v(L->top)); in luaT_callorderTM()
210 return l_isfalse(s2v(L->top)); in luaT_callorderTM()
249 setnilvalue(s2v(ci->func + i)); /* erase original parameter (for GC) */ in luaT_adjustvarargs()
268 setnilvalue(s2v(where + i)); in luaT_getvarargs()
Dldo.c102 setnilvalue(s2v(oldtop)); /* no error message */ in luaD_seterrorobj()
171 up->v = s2v((uplevel(up) - oldstack) + newstack); in correctstack()
196 setnilvalue(s2v(newstack + lim)); /* erase new segment */ in luaD_reallocstack()
318 p = clLvalue(s2v(ci->func))->p; in luaD_hookcall()
355 const TValue *tm = luaT_gettmbyobj(L, s2v(func), TM_CALL); in luaD_tryfuncTM()
358 luaG_typeerror(L, s2v(func), "call"); /* nothing to call */ in luaD_tryfuncTM()
381 setnilvalue(s2v(res)); /* adjust with nil */ in moveresults()
405 setnilvalue(s2v(res + i)); in moveresults()
433 Proto *p = clLvalue(s2v(func))->p; in luaD_pretailcall()
442 setnilvalue(s2v(func + narg1)); /* complete missing arguments */ in luaD_pretailcall()
[all …]
Dlfunc.c69 uv->v = s2v(level); /* current value lives in the stack */ in newupval()
151 TValue *uv = s2v(level); /* value being closed */ in callclosemth()
163 if (prepclosingmethod(L, uv, s2v(level))) { /* something to call? */ in callclosemth()
195 TValue *obj = s2v(level); in luaF_newtbcupval()
207 prepclosingmethod(L, s2v(level), s2v(level + 1)); in luaF_newtbcupval()
Dlobject.h125 #define setobjs2s(L,o1,o2) setobj(L,s2v(o1),s2v(o2))
127 #define setobj2s(L,o1,o2) setobj(L,s2v(o1),o2)
148 #define s2v(o) (&(o)->val) macro
249 #define setthvalue2s(L,o,t) setthvalue(L,s2v(o),t)
353 #define setsvalue2s(L,o,s) setsvalue(L,s2v(o),s)
590 #define setclLvalue2s(L,o,cl) setclLvalue(L,s2v(o),cl)
664 #define sethvalue2s(L,o,h) sethvalue(L,s2v(o),h)
Dldebug.c189 if (clLvalue(s2v(ci->func))->p->is_vararg) { in findvararg()
228 if (!isLfunction(s2v(L->top - 1))) /* not a Lua function? */ in lua_getlocal()
231 name = luaF_getlocalname(clLvalue(s2v(L->top - 1))->p, n, 0); in lua_getlocal()
296 setnilvalue(s2v(L->top)); in collectvalidlines()
394 func = s2v(L->top - 1); in lua_getinfo()
401 func = s2v(ci->func); in lua_getinfo()
657 return (0 <= i && i < (ci->top - base) && s2v(base + i) == o); in isinstack()
757 lua_assert(ttisfunction(s2v(errfunc))); in luaG_errormsg()
Dlstate.c220 setnilvalue(s2v(L1->stack + i)); /* erase new stack */ in stack_init()
230 setnilvalue(s2v(L1->top)); /* 'function' entry for this 'ci' */ in stack_init()
368 setnilvalue(s2v(L->stack)); /* 'function' entry for basic 'ci' */ in lua_resetthread()
459 TValue *errobj = s2v(L->top - 1); /* error object */ in luaE_warnerror()
Dldebug.h18 #define ci_func(ci) (clLvalue(s2v((ci)->func)))
Dltable.c307 unsigned int i = findindex(L, t, s2v(key), asize); /* find original key */ in luaH_next()
310 setivalue(s2v(key), i + 1); in luaH_next()
318 getnodekey(L, s2v(key), n); in luaH_next()
Dlobject.c128 if (!luaO_rawarith(L, op, p1, p2, s2v(res))) { in luaO_arith()
535 return svalue(s2v(L->top - 1)); in luaO_pushvfstring()
Dllex.c134 o = luaH_set(L, ls->h, s2v(L->top - 1)); in luaX_newstring()
Dluac.c141 #define toproto(L,i) getproto(s2v(L->top+(i)))
Dlgc.c632 markvalue(g, s2v(o)); in traversethread()
638 setnilvalue(s2v(o)); in traversethread()
/external/llvm/test/CodeGen/X86/
Dvec_i64.ll20 %s2v = insertelement <2 x i64> undef, i64 %tmp1, i32 0
21 %loadl = shufflevector <2 x i64> zeroinitializer, <2 x i64> %s2v, <2 x i32> <i32 2, i32 1>
39 %s2v = insertelement <2 x i64> undef, i64 %load, i32 0
40 %loadl = shufflevector <2 x i64> zeroinitializer, <2 x i64> %s2v, <2 x i32> <i32 2, i32 1>
/external/llvm-project/llvm/test/CodeGen/X86/
Dvec_i64.ll20 %s2v = insertelement <2 x i64> undef, i64 %tmp1, i32 0
21 %loadl = shufflevector <2 x i64> zeroinitializer, <2 x i64> %s2v, <2 x i32> <i32 2, i32 1>
39 %s2v = insertelement <2 x i64> undef, i64 %load, i32 0
40 %loadl = shufflevector <2 x i64> zeroinitializer, <2 x i64> %s2v, <2 x i32> <i32 2, i32 1>
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp5.cpp102 S2<vi> s2v; in test() local
/external/llvm-project/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp5.cpp126 S2<vi> s2v; in test() local
/external/hyphenation-patterns/nn/
Dhyph-nn.pat.txt22454 1s2vø
/external/hyphenation-patterns/nb/
Dhyph-nb.pat.txt22454 1s2vø
/external/skia/experimental/wasm-skp-debugger/debugger/
Danim.mskp12275 …+ѫ������^���O���m� ���@�sR�|��ں�{s����ݥ 'Nhnf�{ZD����)�9 ��t)�Ճ�s2v"�Dd�'_�%̭5 .[��`�…