Home
last modified time | relevance | path

Searched refs:b2hex (Results 1 – 2 of 2) sorted by relevance

/dports/devel/trellis/prjtrellis-5eb0ad87/fuzzers/ECP5/075-alu54b_config/
H A Dfuzzer.py26 def b2hex(x): function
83 … lambda x: get_substs(settings={"MASK01": b2hex(x)}), empty_bitfile)
85 … lambda x: get_substs(settings={"MCPAT": b2hex(x)}), empty_bitfile)
87 … lambda x: get_substs(settings={"MASKPAT": b2hex(x)}), empty_bitfile)
89 … lambda x: get_substs(settings={"RNDPAT": b2hex(x)}), empty_bitfile)
/dports/www/mod_security/modsecurity-2.9.3/apache2/
H A Dmsc_util.c990 static const unsigned char b2hex[] = "0123456789abcdef"; in bytes2hex() local
999 hex[j++] = b2hex[data[i] >> 4]; in bytes2hex()
1000 hex[j++] = b2hex[data[i] & 0x0f]; in bytes2hex()