Lines Matching refs:cstr
145 const char *cstr = start + m_index; in GetU32() local
146 uint32_t result = static_cast<uint32_t>(::strtoul (cstr, &end, base)); in GetU32()
148 if (end && end != cstr) in GetU32()
164 const char *cstr = start + m_index; in GetS32() local
165 int32_t result = static_cast<int32_t>(::strtol (cstr, &end, base)); in GetS32()
167 if (end && end != cstr) in GetS32()
184 const char *cstr = start + m_index; in GetU64() local
185 uint64_t result = ::strtoull (cstr, &end, base); in GetU64()
187 if (end && end != cstr) in GetU64()
203 const char *cstr = start + m_index; in GetS64() local
204 int64_t result = ::strtoll (cstr, &end, base); in GetS64()
206 if (end && end != cstr) in GetS64()