Return a buffer we can use for arguments. This updates the function offset.
| 122 | /// |
| 123 | /// This updates the function offset. |
| 124 | char *getArgBuffer(U32 size) |
| 125 | { |
| 126 | validateBufferSize(mStart + mFunctionOffset + size); |
| 127 | char *ret = mBuffer + mStart + mFunctionOffset; |
| 128 | mFunctionOffset += size; |
| 129 | return ret; |
| 130 | } |
| 131 | |
| 132 | /// Clear the function offset. |
| 133 | void clearFunctionOffset() |
no outgoing calls
no test coverage detected