| 1093 | } |
| 1094 | |
| 1095 | char* FastInt128ToBufferLeft(__int128 i, char* buffer) { |
| 1096 | unsigned __int128 u = i; |
| 1097 | if (i < 0) { |
| 1098 | *buffer++ = '-'; |
| 1099 | u = ~u + 1; |
| 1100 | } |
| 1101 | return FastUInt128ToBufferLeft(u, buffer); |
| 1102 | } |
| 1103 | |
| 1104 | int HexDigitsPrefix(const char* buf, int num_digits) { |
| 1105 | for (int i = 0; i < num_digits; i++) |
no test coverage detected