Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dltable.c413 Node *othern; in luaH_newkey() local
421 othern = mainposition(t, gkey(mp)); in luaH_newkey()
422 if (othern != mp) { /* is colliding node out of its main position? */ in luaH_newkey()
424 while (gnext(othern) != mp) othern = gnext(othern); /* find previous */ in luaH_newkey()
425 gnext(othern) = n; /* redo the chain with `n' in place of `mp' */ in luaH_newkey()
/freebsd/contrib/lua/src/
H A Dltable.c684 Node *othern; in luaH_newkey() local
693 othern = mainpositionfromnode(t, mp); in luaH_newkey()
694 if (othern != mp) { /* is colliding node out of its main position? */ in luaH_newkey()
696 while (othern + gnext(othern) != mp) /* find previous */ in luaH_newkey()
697 othern += gnext(othern); in luaH_newkey()
698 gnext(othern) = cast_int(f - othern); /* rechain to point to 'f' */ in luaH_newkey()