faster api for push 5 ~ 8 bytes.
| 113 | |
| 114 | // faster api for push 5 ~ 8 bytes. |
| 115 | sonic_force_inline void Push5_8(const char* bytes8, size_t n) { |
| 116 | Grow(8); |
| 117 | std::memcpy(top_, bytes8, 8); |
| 118 | top_ += n; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * @brief Get the top value in the buffer. |
no outgoing calls
no test coverage detected