Lines Matching refs:Str
84 HexFile::parseLine(char *Str, Addr *A, uint32_t *D)
94 while (Str[i] != '\0' && Str[i]==' ')
98 while (Str[i] != '\0') {
99 if (Str[i] >= '0' && Str[i] <= '9') {
100 Digit = Str[i] - '0';
101 } else if (Str[i] >= 'a' && Str[i] <= 'f') {
102 Digit = Str[i] - 'a' + 10;
103 } else if (Str[i] >= 'A' && Str[i] <= 'F') {
104 Digit=Str[i]-'A'+10;
105 } else if (Str[i] == ' ' || Str[i] == '\n') {