Calculates the encoding length in bytes of the signed number n.
| 445 | |
| 446 | // Calculates the encoding length in bytes of the signed number n. |
| 447 | static inline int SignedEncodingLength(int64 n) { |
| 448 | return kBitsToLength[Log2Floor64(n < 0 ? ~n : n) + 1]; |
| 449 | } |
| 450 | |
| 451 | static void StoreBigEndian64(char* dst, uint64 v) { |
| 452 | for (int i = 0; i < 8; i++) { |
no test coverage detected