MCPcopy Create free account
hub / github.com/MegEngine/MegCC / parse_hex_uint64

Function parse_hex_uint64

runtime/flatcc/include/flatcc/portable/pparseint.h:332–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332static inline const char *parse_hex_uint64(const char *buf, size_t len, uint64_t *value, int *status)
333{
334 buf = parse_hex_integer(buf, len, value, status);
335 if (*status == PARSE_INTEGER_SIGNED) {
336 *status = PARSE_INTEGER_UNDERFLOW;
337 return 0;
338 }
339 return buf;
340}
341
342__portable_define_parse_signed(int64, int64_t, INT64_MAX)
343__portable_define_parse_signed(int32, int32_t, INT32_MAX)

Callers

nothing calls this directly

Calls 1

parse_hex_integerFunction · 0.85

Tested by

no test coverage detected