Given a write frame, advance its cursor by 'n' cells. * * Precondition: n <= frame->offset */
| 139 | * Precondition: n <= frame->offset |
| 140 | */ |
| 141 | static void skip(frameItem* frame, size_t n) { |
| 142 | simplicity_debug_assert(n <= frame->offset); |
| 143 | frame->offset -= n; |
| 144 | } |
| 145 | |
| 146 | /* Given a compact bit representation of a value 'v : B', write the value 'v' to a write frame, skipping cells as needed |
| 147 | * and advance its cursor. |
no outgoing calls
no test coverage detected