| 772 | } |
| 773 | |
| 774 | void fxMeasureChunk(txMachine* the, void* theData, txMarshallBuffer* theBuffer) |
| 775 | { |
| 776 | txChunk* aChunk = ((txChunk*)(((txByte*)theData) - sizeof(txChunk))); |
| 777 | txSize aSize = aChunk->size & 0x7FFFFFFF; |
| 778 | theBuffer->size += aSize; |
| 779 | if (theBuffer->size < 0) |
| 780 | fxMeasureThrow(the, theBuffer, "too big"); |
| 781 | mxMarshallAlign(theBuffer->size, aSize); |
| 782 | } |
| 783 | |
| 784 | txBoolean fxMeasureKey(txMachine* the, txID id, txMarshallBuffer* theBuffer, txBoolean alien) |
| 785 | { |
no test coverage detected