Lines Matching refs:cstr
97 const char *cstr = start + m_index; in GetU32() local
98 uint32_t result = static_cast<uint32_t>(::strtoul(cstr, &end, base)); in GetU32()
100 if (end && end != cstr) { in GetU32()
112 const char *cstr = start + m_index; in GetS32() local
113 int32_t result = static_cast<int32_t>(::strtol(cstr, &end, base)); in GetS32()
115 if (end && end != cstr) { in GetS32()
127 const char *cstr = start + m_index; in GetU64() local
128 uint64_t result = ::strtoull(cstr, &end, base); in GetU64()
130 if (end && end != cstr) { in GetU64()
142 const char *cstr = start + m_index; in GetS64() local
143 int64_t result = ::strtoll(cstr, &end, base); in GetS64()
145 if (end && end != cstr) { in GetS64()