| 237 | } |
| 238 | |
| 239 | CC_NOINLINE static void String_Hex32(cc_string* str, cc_uint32 value) { |
| 240 | int shift; |
| 241 | |
| 242 | for (shift = 24; shift >= 0; shift -= 8) { |
| 243 | cc_uint8 part = (cc_uint8)(value >> shift); |
| 244 | String_AppendHex(str, part); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | CC_NOINLINE static void String_Hex64(cc_string* str, cc_uint64 value) { |
| 249 | int shift; |
no test coverage detected