| 557 | // without having to write negative numbers as positions. |
| 558 | |
| 559 | bool Encoder::valueIsInBase(const Value *value) const { |
| 560 | return _base && value >= _base.buf && value < (const void*)_base.end(); |
| 561 | } |
| 562 | |
| 563 | // Parameter p is an offset into the current stream, not taking into account the base. |
| 564 | void Encoder::writePointer(ssize_t p) { |
no test coverage detected