Home | History | Annotate | Download | only in src

Lines Matching refs:p1

102 void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
107 setobj2s(L, func + 1, p1); /* 1st argument */
124 int luaT_callbinTM (lua_State *L, const TValue *p1, const TValue *p2,
126 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */
130 luaT_callTM(L, tm, p1, p2, res, 1);
135 void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
137 if (!luaT_callbinTM(L, p1, p2, res, event)) {
140 luaG_concaterror(L, p1, p2);
145 if (tonumber(p1, &dummy) && tonumber(p2, &dummy))
146 luaG_tointerror(L, p1, p2);
148 luaG_opinterror(L, p1, p2, "perform bitwise operation on");
152 luaG_opinterror(L, p1, p2, "perform arithmetic on");
158 int luaT_callorderTM (lua_State *L, const TValue *p1, const TValue *p2,
160 if (!luaT_callbinTM(L, p1, p2, L->top, event))