Searched refs:hexval (Results 1 – 9 of 9) sorted by relevance
57 hexval [0-9A-Fa-f]265 {digit}+|0x{hexval}+ { return(NUMBER); }268 {hexval}{0,4}":"{hexval}{0,4}":"({hexval}|[:.])* { return(IPV6_ADDR); }
30 static final int hexval(char c) throws java.io.IOException { in hexval() method in JavaCharStream337 buffer[bufpos] = c = (char)(hexval(c) << 12 | in readChar()338 hexval(ReadByte()) << 8 | in readChar()339 hexval(ReadByte()) << 4 | in readChar()340 hexval(ReadByte())); in readChar()
40 fuse prog [-y] <bank> <word> <hexval> [<hexval>...]52 fuse override <bank> <word> <hexval> [<hexval>...]
28 static final int hexval(char c) throws java.io.IOException { in hexval() method in JavaCharStream334 buffer[bufpos] = c = (char)(hexval(c) << 12 | in readChar()335 hexval(ReadByte()) << 8 | in readChar()336 hexval(ReadByte()) << 4 | in readChar()337 hexval(ReadByte())); in readChar()
93 uint32_t hexval; in check_get_hexval() local96 if (!sscanf(token, "%x", &hexval)) { in check_get_hexval()102 *pmem_buf++ = (hexval >> (i * 8)) & 0xff; in check_get_hexval()
31 hexval = value.strip()32 if hexval:33 self.words.append(int(hexval, 0))
1172 #define hexval(c) table_hex[(unsigned int)(c)] macro1233 ch = hexval(data[in]) << 4; in binascii_a2b_qp()1235 ch |= hexval(data[in]); in binascii_a2b_qp()
8169 (is_alpha, is_space, hexval): Renamed to...8307 * src/type42/t42drivr.c (hexval): Fix typo.8323 * src/type42/t42drivr.c (hexval): Use more efficient code.