Lines Matching defs:hex
131 { LDNS_WIREPARSE_ERR_SYNTAX_HEX, "Conversion error, hex encoding expected" },
135 { LDNS_WIREPARSE_ERR_SYNTAX_ILNP64, "Conversion error, 4 colon separated hex numbers expected" },
137 "Conversion error, 6 two character hex numbers "
140 "Conversion error, 8 two character hex numbers "
412 /** print hex format into text buffer for specified length */
415 const char* hex = "0123456789ABCDEF";
418 (void)sldns_str_print(s, slen, "%c%c", hex[(buf[i]&0xf0)>>4],
419 hex[buf[i]&0x0f]);
424 /** print remainder of buffer in hex format with prefixed text */
825 /* print rdlen in hex */