Lines Matching refs:Str
186 char *strCopy(char *OutBuf, const char *Str, int32_t Size = BufSize) {
187 while (*Str) {
188 *OutBuf++ = *Str++;
207 uint32_t strLen(const char *Str) { in strLen() argument
209 while (*Str++) in strLen()
241 unsigned long hexToLong(const char *Str, char Terminator = '\0') {
243 while (*Str != Terminator) {
245 if ('0' <= *Str && *Str <= '9')
246 Res += *Str++ - '0';
247 else if ('a' <= *Str && *Str <= 'f')
248 Res += *Str++ - 'a' + 10;
249 else if ('A' <= *Str && *Str <= 'F')
250 Res += *Str++ - 'A' + 10;