| 605 | } |
| 606 | |
| 607 | void* fxGrowChunk(txMachine* the, txSize size) |
| 608 | { |
| 609 | txBlock* block = fxGrowChunks(the, size); |
| 610 | txChunk* chunk = C_NULL; |
| 611 | if (block) { |
| 612 | chunk = (txChunk*)(block->current); |
| 613 | block->current += size; |
| 614 | chunk->temporary = block->current; |
| 615 | } |
| 616 | return chunk; |
| 617 | } |
| 618 | |
| 619 | void* fxGrowChunks(txMachine* the, txSize size) |
| 620 | { |
no test coverage detected