Lines Matching full:cstr
91 const char *cstr = start + m_index; in GetU32() local
92 uint32_t result = static_cast<uint32_t>(::strtoul(cstr, &end, base)); in GetU32()
94 if (end && end != cstr) { in GetU32()
106 const char *cstr = start + m_index; in GetS32() local
107 int32_t result = static_cast<int32_t>(::strtol(cstr, &end, base)); in GetS32()
109 if (end && end != cstr) { in GetS32()
121 const char *cstr = start + m_index; in GetU64() local
122 uint64_t result = ::strtoull(cstr, &end, base); in GetU64()
124 if (end && end != cstr) { in GetU64()
136 const char *cstr = start + m_index; in GetS64() local
137 int64_t result = ::strtoll(cstr, &end, base); in GetS64()
139 if (end && end != cstr) { in GetS64()