Lines Matching full:temp
53 char temp;
66 temp = pAsciiString[i];
68 if (temp >= '0' && temp <= '9') {
69 temp = temp - '0';
70 } else if ( temp >= 'a' && temp <= 'f' ) {
71 temp = temp - 'a' + 10;
72 } else if ( temp >= 'A' && temp <= 'F' ) {
73 temp = temp - 'A' + 10;
75 temp = 0;
79 pHexaBuff[pos] = temp<<4;
81 pHexaBuff[pos] |= temp;