HomeSort by relevance Sort by last modified time
    Searched refs:luaH_getint (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltable.h 25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
ltable.c 446 const TValue *luaH_getint (Table *t, int key) {
490 return luaH_getint(t, k); /* use specialized version */
519 const TValue *p = luaH_getint(t, key);
536 while (!ttisnil(luaH_getint(t, j))) {
542 while (!ttisnil(luaH_getint(t, i))) i++;
549 if (ttisnil(luaH_getint(t, m))) j = m;
lapi.c 612 gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
654 setobj2s(L, L->top, luaH_getint(hvalue(t), n));
739 gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
986 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);
  /external/lua/src/
ltable.h 43 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key);
ltable.c 516 const TValue *luaH_getint (Table *t, lua_Integer key) {
592 case LUA_TNUMINT: return luaH_getint(t, ivalue(key));
597 return luaH_getint(t, k); /* use specialized version */
619 const TValue *p = luaH_getint(t, key);
636 while (!ttisnil(luaH_getint(t, j))) {
641 while (!ttisnil(luaH_getint(t, i))) i++;
649 if (ttisnil(luaH_getint(t, m))) j = m;
lapi.c 608 return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
633 if (luaV_fastget(L, t, n, slot, luaH_getint)) {
663 setobj2s(L, L->top, luaH_getint(hvalue(t), n));
762 auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name);
789 if (luaV_fastset(L, t, n, slot, luaH_getint, L->top - 1))
1005 const TValue *gt = luaH_getint(reg, LUA_RIDX_GLOBALS);

Completed in 3702 milliseconds