OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:luaH_getint
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
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;
/external/lua/src/
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;
Completed in 226 milliseconds