| 84 | } |
| 85 | |
| 86 | txInteger fxFindHoles(txSlot** table, txFlag* flags, txID count) |
| 87 | { |
| 88 | txInteger src = 0; |
| 89 | txInteger dst = 0; |
| 90 | txInteger result = 0; |
| 91 | while (src < count) { |
| 92 | if (flags[src] && table[dst]) { |
| 93 | src = 0; |
| 94 | while (table[dst]) |
| 95 | dst++; |
| 96 | result = dst; |
| 97 | } |
| 98 | src++; |
| 99 | dst++; |
| 100 | } |
| 101 | return result; |
| 102 | } |
| 103 | |
| 104 | void fxIndexSlot(txLinker* linker, txSlot* slot, txInteger index) |
| 105 | { |