Searched refs:hex (Results 101 - 125 of 135) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils.h404 void tr_hex_to_sha1( uint8_t * out, const char * hex ) TR_GNUC_NONNULL(1,2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dvalidat2.cpp24 #include "hex.h"
77 cout << setw(2) << setfill('0') << hex << (int)buf[j];
87 cout << setw(2) << setfill('0') << hex << (int)buf[j];
97 cout << setw(2) << setfill('0') << hex << (int)buf[j];
H A Dtest.cpp380 SecByteBlock HexDecodeString(const char *hex)
382 StringSource ss(hex, true, new HexDecoder);
H A Dgf2n.cpp469 case std::ios::hex :
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Daudit.c1295 * audit_log_hex - convert a buffer to hex and append it to the audit skb
1297 * @buf: buffer to convert to hex
1303 * ascii hex digits. The new string is placed onto the skb.
1311 static const unsigned char *hex = "0123456789ABCDEF"; local
1330 *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */
1331 *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */
1370 * audit_string_contains_control - does a string need to be logged in hex
1393 * Strings that are escaped are printed in hex (2 digits per char).
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wan/
H A Dcycx_x25.c1018 unsigned char hex[1024], local
1019 * phex = hex;
1021 if (len >= (sizeof(hex) / 2))
1022 len = (sizeof(hex) / 2) - 1;
1029 printk(KERN_INFO "%s: %s\n", msg, hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_brew/
H A Dbdbread.mak68 HEXTOOL = $(ARMBIN)\fromelf # ARM ADS utility to create hex file from image
177 # The object subdirectory, target image file, and target hex file are deleted.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Duri.tex365 Translates all escape sequences (% hex hex) of \arg{uri} into
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/
H A Djmemdosa.asm231 int 2fh ; a magic cookie, hex 4300
232 cmp al,80h ; AL should contain hex 80
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/ogl/
H A Dbasic.cpp1704 wxString hex(oglColourToHex(m_pen->GetColour()));
1705 hex = wxString(_T("#")) + hex;
1706 clause->AddAttributeValueString(_T("pen_colour"), hex);
1718 wxString hex(oglColourToHex(m_brush->GetColour()));
1719 hex = wxString(_T("#")) + hex;
1720 clause->AddAttributeValueString(_T("brush_colour"), hex);
H A Ddrawn.cpp1111 * Store each coordinate pair in a hex string to save space.
1112 * E.g. "1B9080CD". 4 hex digits per coordinate pair.
1278 // Convert unsigned 16-bit integer to 4-character hex string
1293 // One hex digit to decimal number
1294 static int HexToInt1(wxChar hex) argument
1296 switch (hex)
1335 // 4-digit hex string to unsigned integer
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Drtas.c201 void rtas_progress(char *s, unsigned short hex) argument
238 /* use hex display if available */
240 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/rpcclient/
H A Dcmd_spoolss.c692 char *hex = hex_encode(NULL, value.data_p, value.size); local
695 len = strlen(hex);
697 if (hex[i] == '\0') {
703 putchar(hex[i]);
705 TALLOC_FREE(hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/autoconf/
H A Dshtool3732 hex=`echo "$ver:$rev:$typnum:$levnum" |\
3788 hex )
3789 echo "${hex}"
3800 vHex="$hex"
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/kernel/
H A Dhead.S602 # write the 32-bit hex number in GR8 to ttyS0
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/
H A Dentry.c869 static const char hex[] = "0123456789abcdef"; local
874 *(s++) = hex[(b ? *k : *k >> 4) & 0xF];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/test/
H A DMakefile.am229 data/auth/invalid-hex-encoding.auth-script \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dentry.c869 static const char hex[] = "0123456789abcdef"; local
874 *(s++) = hex[(b ? *k : *k >> 4) & 0xF];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/LDAP/smbldap-tools-0.9.2/
H A Dsmbldap-usermod589 Creates rid and primaryGroupID in hex instead of decimal (for Samba 2.2.2 unpatched only - higher versions always use decimal)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlwriter.c1608 static char hex[16] = local
1620 (const char *) &hex[data[i] >> 4]);
1626 (const char *) &hex[data[i] & 0xF]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlwriter.c1664 static char hex[16] = local
1676 (const char *) &hex[data[i] >> 4]);
1682 (const char *) &hex[data[i] & 0xF]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dxmlwriter.c1664 static char hex[16] = local
1676 (const char *) &hex[data[i] >> 4]);
1682 (const char *) &hex[data[i] & 0xF]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxmlwriter.c1608 static char hex[16] = local
1620 (const char *) &hex[data[i] >> 4]);
1626 (const char *) &hex[data[i] & 0xF]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dibmmca.c1003 const char hex[16] = "0123456789abcdef"; local
1008 answer[0] = hex[val];
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dsymbol.c2331 static int hex(char ch) function
2343 * While we find nice hex chars, build a long_val.
2352 const int hex_val = hex(*p);

Completed in 226 milliseconds

123456