hex 1536 source3/lib/util_str.c const char *hex = "0123456789ABCDEF"; hex 1542 source3/lib/util_str.c s[j+1] = hex[((unsigned char)buf[i]) >> 4]; hex 1543 source3/lib/util_str.c s[j+2] = hex[((unsigned char)buf[i]) & 0xF]; hex 1554 source3/lib/util_str.c const char *hex = "0123456789ABCDEF"; hex 1559 source3/lib/util_str.c s[j] = hex[((unsigned char)buf[i]) >> 4]; hex 1560 source3/lib/util_str.c s[j+1] = hex[((unsigned char)buf[i]) & 0xF]; hex 153 source3/libsmb/libsmb_path.c char hex[] = "0123456789ABCDEF"; hex 167 source3/libsmb/libsmb_path.c *dest++ = hex[(*src >> 4) & 0x0f]; hex 168 source3/libsmb/libsmb_path.c *dest++ = hex[*src & 0x0f]; hex 708 source3/rpcclient/cmd_spoolss.c char *hex = hex_encode_talloc(NULL, value.data_p, value.size); hex 711 source3/rpcclient/cmd_spoolss.c len = strlen(hex); hex 713 source3/rpcclient/cmd_spoolss.c if (hex[i] == '\0') { hex 719 source3/rpcclient/cmd_spoolss.c putchar(hex[i]); hex 721 source3/rpcclient/cmd_spoolss.c TALLOC_FREE(hex); hex 766 source3/rpcclient/cmd_spoolss.c char *hex = hex_encode_talloc(NULL, hex 770 source3/rpcclient/cmd_spoolss.c len = strlen(hex); hex 772 source3/rpcclient/cmd_spoolss.c if (hex[i] == '\0') { hex 778 source3/rpcclient/cmd_spoolss.c putchar(hex[i]); hex 780 source3/rpcclient/cmd_spoolss.c TALLOC_FREE(hex); hex 598 source4/lib/wmi/wmi_wrap.c static const char hex[17] = "0123456789abcdef"; hex 603 source4/lib/wmi/wmi_wrap.c *(c++) = hex[(uu & 0xf0) >> 4]; hex 604 source4/lib/wmi/wmi_wrap.c *(c++) = hex[uu & 0xf]; hex 1357 source4/lib/wmi/wmi_wrap.c PyObject *hex = PySwigObject_hex(v); hex 1358 source4/lib/wmi/wmi_wrap.c PyObject *repr = PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name, PyString_AsString(hex)); hex 1359 source4/lib/wmi/wmi_wrap.c Py_DECREF(hex);