Searched refs:sort_comp (Results 1 – 1 of 1) sorted by relevance
/external/syslinux/com32/lua/src/ |
D | ltablib.c | 169 static int sort_comp (lua_State *L, int a, int b) { in sort_comp() function 190 if (sort_comp(L, -1, -2)) /* a[u] < a[l]? */ in auxsort() 198 if (sort_comp(L, -2, -1)) /* a[i]<a[l]? */ in auxsort() 203 if (sort_comp(L, -1, -2)) /* a[u]<a[i]? */ in auxsort() 217 while (lua_rawgeti(L, 1, ++i), sort_comp(L, -1, -2)) { in auxsort() 222 while (lua_rawgeti(L, 1, --j), sort_comp(L, -3, -1)) { in auxsort()
|