| 1301 | } |
| 1302 | |
| 1303 | txSlot* fxProjectSlot(txMachine* the, txProjection* firstProjection, txSlot* slot) |
| 1304 | { |
| 1305 | txSlot* address = NULL; |
| 1306 | if (slot) { |
| 1307 | txProjection* projection = firstProjection; |
| 1308 | while (projection) { |
| 1309 | if ((projection->heap < slot) && (slot < projection->limit)) { |
| 1310 | address = (txSlot*)(projection->indexes[slot - projection->heap]); |
| 1311 | break; |
| 1312 | } |
| 1313 | projection = projection->nextProjection; |
| 1314 | } |
| 1315 | } |
| 1316 | return address; |
| 1317 | } |
| 1318 | |
| 1319 | txTypeDispatch* fxProjectTypeDispatch(txMachine* the, txTypeDispatch* dispatch) |
| 1320 | { |
no outgoing calls
no test coverage detected