Searched refs:lua_tointegerx (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/lua/src/ |
H A D | lua.h | 191 LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum); 362 #define lua_tointeger(L,i) lua_tointegerx(L,(i),NULL) 406 #define lua_tounsignedx(L,i,is) ((lua_Unsigned)lua_tointegerx(L,i,is))
|
H A D | lauxlib.c | 444 lua_Integer d = lua_tointegerx(L, arg, &isnum); in luaL_checkinteger() 853 l = lua_tointegerx(L, -1, &isnum); in luaL_len()
|
H A D | loslib.c | 254 lua_Integer res = lua_tointegerx(L, -1, &isnum); in getfield()
|
H A D | lmathlib.c | 75 lua_Integer n = lua_tointegerx(L, 1, &valid); in math_toint()
|
H A D | lapi.c | 365 LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *pisnum) { in lua_tointegerx() function
|