Lines Matching full:cstr
99 const char *cstr = start + m_index; in GetU32() local
100 uint32_t result = static_cast<uint32_t>(::strtoul(cstr, &end, base)); in GetU32()
102 if (end && end != cstr) { in GetU32()
114 const char *cstr = start + m_index; in GetS32() local
115 int32_t result = static_cast<int32_t>(::strtol(cstr, &end, base)); in GetS32()
117 if (end && end != cstr) { in GetS32()
129 const char *cstr = start + m_index; in GetU64() local
130 uint64_t result = ::strtoull(cstr, &end, base); in GetU64()
132 if (end && end != cstr) { in GetU64()
144 const char *cstr = start + m_index; in GetS64() local
145 int64_t result = ::strtoll(cstr, &end, base); in GetS64()
147 if (end && end != cstr) { in GetS64()