Searched refs:hex (Results 51 - 75 of 135) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dstriconveh.c793 static char hex[16] = "0123456789ABCDEF"; local
801 scratchbuf[scratchlen++] = hex[(uc>>28) & 15];
802 scratchbuf[scratchlen++] = hex[(uc>>24) & 15];
803 scratchbuf[scratchlen++] = hex[(uc>>20) & 15];
804 scratchbuf[scratchlen++] = hex[(uc>>16) & 15];
806 scratchbuf[scratchlen++] = hex[(uc>>12) & 15];
807 scratchbuf[scratchlen++] = hex[(uc>>8) & 15];
808 scratchbuf[scratchlen++] = hex[(uc>>4) & 15];
809 scratchbuf[scratchlen++] = hex[uc & 15];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/ogl/
H A Dmisc.h103 WXDLLIMPEXP_OGL wxColour oglHexToColour(const wxString& hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DStringFunctions.h202 * @param hex The hex-number, must be at most 2 digits long.
205 wxChar HexToDec( const wxString& hex );
H A DStringFunctions.cpp93 wxChar HexToDec( const wxString& hex )
96 wxString str = hex.Upper();
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dudbg.c143 void __init udbg_progress(char *s, unsigned short hex) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dvalidat3.cpp23 #include "hex.h"
62 cout << setw(2) << setfill('0') << hex << (int)digest[j];
420 cout << setw(2) << setfill('0') << hex << (int)keys[k][j];
431 cout << setw(2) << setfill('0') << hex << (int)digest[j];
474 cout << setw(2) << setfill('0') << hex << (int)(byte)keys[k][j];
529 cout << setw(2) << setfill('0') << hex << (int)keys[k][j];
530 cout << " COUNTER: 0x" << hex << counters[k] << endl << endl;
540 cout << setw(2) << setfill('0') << hex << (int)digest[j];
590 cout << setw(2) << setfill('0') << hex << (int)digest[j];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dcasttest.c183 static char *hex="0123456789ABCDEF"; local
201 printf("%c",hex[i&0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/cast/
H A Dcasttest.c183 static char *hex="0123456789ABCDEF"; local
201 printf("%c",hex[i&0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/cell/
H A Dsetup.c78 static void cell_progress(char *s, unsigned short hex) argument
80 printk("*** %04x : %s\n", hex, s ? s : "");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/maple/
H A Dsetup.c289 static void __init maple_progress(char *s, unsigned short hex) argument
291 printk("*** %04x : %s\n", hex, s ? s : "");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/cast/
H A Dcasttest.c191 static char *hex = "0123456789ABCDEF"; local
207 printf("%c", hex[i & 0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/cast/
H A Dcasttest.c191 static char *hex = "0123456789ABCDEF"; local
207 printf("%c", hex[i & 0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/ogl/
H A Doglmisc.cpp832 // Convert 2-digit hex number to decimal
850 // Convert decimal integer to 2-character hex string
860 // 3-digit hex to wxColour
861 wxColour oglHexToColour(const wxString& hex) argument
863 if (hex.Length() == 6)
867 hex.Mid(0,2).ToLong(&r, 16);
868 hex.Mid(2,2).ToLong(&g, 16);
869 hex.Mid(4,2).ToLong(&b, 16);
878 // RGB to 3-digit hex
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/
H A Drichtextxml.cpp563 // Convert a colour to a 6-digit hex string
566 wxString hex; local
568 hex += wxDecToHex(col.Red());
569 hex += wxDecToHex(col.Green());
570 hex += wxDecToHex(col.Blue());
572 return hex;
575 // Convert 6-digit hex string to a colour
576 static wxColour HexStringToColour(const wxString& hex) argument
578 unsigned char r = (unsigned char)wxHexToDec(hex.Mid(0, 2));
579 unsigned char g = (unsigned char)wxHexToDec(hex
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-address.c292 DBusString hex; local
300 "In D-Bus address, percent character was not followed by two hex digits");
309 _dbus_string_init_const (&hex, buf);
311 if (!_dbus_string_hex_decode (&hex, 0, &hex_end,
319 "In D-Bus address, percent character was followed by characters other than hex digits");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Davpair.c164 unsigned char hex[3]; /* For hex string conversion. */ local
199 sprintf (hex, "%2.2X", *x_ptr);
200 strcat (buffer, hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/python/examples/tdbpack/
H A Dtest_tdbpack.py176 ('f', [hex]),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/VisualStudio2005/soapcpp2/soapcpp2/
H A Dsoapcpp2_lex.l102 hex 0[xX][0-9a-fA-F]+
142 {hex} { return install_hex(); }
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Drtas.h186 extern void rtas_progress(char *s, unsigned short hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/src/
H A Dsoapcpp2_lex.l102 hex 0[xX][0-9a-fA-F]+
142 {hex} { return install_hex(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/VisualStudio2005/soapcpp2/soapcpp2/
H A Dsoapcpp2_lex.l102 hex 0[xX][0-9a-fA-F]+
142 {hex} { return install_hex(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/src/
H A Dsoapcpp2_lex.l102 hex 0[xX][0-9a-fA-F]+
142 {hex} { return install_hex(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils.c946 static const char hex[] = "0123456789abcdef"; local
951 *out++ = hex[val >> 4];
952 *out++ = hex[val & 0xf];
962 static const char hex[] = "0123456789abcdef"; local
966 const int hi = strchr( hex, tolower( *in++ ) ) - hex;
967 const int lo = strchr( hex, tolower( *in++ ) ) - hex;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/pasemi/
H A Dsetup.c250 static void __init pas_progress(char *s, unsigned short hex) argument
252 printk("[%04x] : %s\n", hex, s ? s : "");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/Documentation/usb/
H A Dwusb-cbaf50 CHID is always 16 hex bytes in 'XX YY ZZ...' form

Completed in 194 milliseconds

123456