Lines Matching refs:hexValue
163 int hexValue; in hex2mem() local
176 hexValue = hex(*tmp_hex--); in hex2mem()
177 if (hexValue < 0) in hex2mem()
179 *tmp_raw = hexValue; in hex2mem()
180 hexValue = hex(*tmp_hex--); in hex2mem()
181 if (hexValue < 0) in hex2mem()
183 *tmp_raw |= hexValue << 4; in hex2mem()
203 int hexValue; in hexToInt() local
209 hexValue = hex(**ptr); in hexToInt()
210 if (hexValue < 0) in hexToInt()
213 *intValue = (*intValue << 4) | hexValue; in hexToInt()