| 130 | } |
| 131 | |
| 132 | FORY_ALWAYS_INLINE void clear_output_stream() { |
| 133 | if (output_stream_ == nullptr) { |
| 134 | return; |
| 135 | } |
| 136 | output_stream_->unbind_buffer(this); |
| 137 | output_stream_ = nullptr; |
| 138 | } |
| 139 | |
| 140 | // Best-effort stream buffer compaction entry point. |
| 141 | // Stage 1 guard: avoid calling into stream shrinking for very small progress. |
no test coverage detected