Home
last modified time | relevance | path

Searched refs:gnext (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dltable.c161 else n = gnext(n); in findindex()
294 gnext(n) = NULL; in setnodevector()
423 while (gnext(othern) != mp) othern = gnext(othern); /* find previous */ in luaH_newkey()
424 gnext(othern) = n; /* redo the chain with `n' in place of `mp' */ in luaH_newkey()
426 gnext(mp) = NULL; /* now `mp' is free */ in luaH_newkey()
431 gnext(n) = gnext(mp); /* chain new position */ in luaH_newkey()
432 gnext(mp) = n; in luaH_newkey()
456 else n = gnext(n); in luaH_getint()
472 else n = gnext(n); in luaH_getstr()
498 else n = gnext(n); in luaH_get()
Dltable.h16 #define gnext(n) ((n)->i_key.nk.next) macro