Lines Matching refs:cstr
90 const char *cstr = start + m_index; in GetU32() local
91 uint32_t result = static_cast<uint32_t>(::strtoul(cstr, &end, base)); in GetU32()
93 if (end && end != cstr) { in GetU32()
105 const char *cstr = start + m_index; in GetS32() local
106 int32_t result = static_cast<int32_t>(::strtol(cstr, &end, base)); in GetS32()
108 if (end && end != cstr) { in GetS32()
120 const char *cstr = start + m_index; in GetU64() local
121 uint64_t result = ::strtoull(cstr, &end, base); in GetU64()
123 if (end && end != cstr) { in GetU64()
135 const char *cstr = start + m_index; in GetS64() local
136 int64_t result = ::strtoll(cstr, &end, base); in GetS64()
138 if (end && end != cstr) { in GetS64()