Searched refs:hex (Results 26 - 50 of 135) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Daddrtoname.c314 static const char hex[] = "0123456789abcdef"; variable
496 *cp++ = hex[*ep >> 4 ];
497 *cp++ = hex[*ep++ & 0xf];
500 *cp++ = hex[*ep >> 4 ];
501 *cp++ = hex[*ep++ & 0xf];
528 *cp++ = hex[*(ep + i - 1) >> 4];
529 *cp++ = hex[*(ep + i - 1) & 0xf];
564 *cp++ = hex[*ep >> 4];
565 *cp++ = hex[*ep++ & 0xf];
568 *cp++ = hex[*e
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/test/
H A Dinfcover.c239 decodes liberally, in that hex digits can be adjacent, in which case two in
240 a row writes a byte. Or they can delimited by any non-hex character, where
241 the delimiters are ignored except when a single hex digit is followed by a
245 local unsigned char *h2b(const char *hex, unsigned *len) argument
250 in = malloc((strlen(hex) + 1) >> 1);
256 if (*hex >= '0' && *hex <= '9')
257 val = (val << 4) + *hex - '0';
258 else if (*hex >= 'A' && *hex <
284 inf(char *hex, char *what, unsigned step, int win, unsigned len, int err) argument
507 try(char *hex, char *id, int err) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dudbg.h29 extern void udbg_progress(char *s, unsigned short hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/test/
H A Dinfcover.c239 decodes liberally, in that hex digits can be adjacent, in which case two in
240 a row writes a byte. Or they can delimited by any non-hex character, where
241 the delimiters are ignored except when a single hex digit is followed by a
245 local unsigned char *h2b(const char *hex, unsigned *len) argument
250 in = malloc((strlen(hex) + 1) >> 1);
256 if (*hex >= '0' && *hex <= '9')
257 val = (val << 4) + *hex - '0';
258 else if (*hex >= 'A' && *hex <
284 inf(char *hex, char *what, unsigned step, int win, unsigned len, int err) argument
507 try(char *hex, char *id, int err) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/cell/
H A Dqpace_setup.c59 static void qpace_progress(char *s, unsigned short hex) argument
61 printk("*** %04x : %s\n", hex, s ? s : "");
H A Dcelleb_setup.c89 static void celleb_progress(char *s, unsigned short hex) argument
91 printk("*** %04x : %s\n", hex, s ? s : "");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/emulator/src/
H A Demulator.cpp541 // Convert a colour to a 6-digit hex string
544 wxString hex; local
546 hex += wxDecToHex(col.Red());
547 hex += wxDecToHex(col.Green());
548 hex += wxDecToHex(col.Blue());
550 return hex;
553 // Convert 6-digit hex string to a colour
554 wxColour wxHexStringToColour(const wxString& hex) argument
556 unsigned char r = (unsigned char)wxHexToDec(hex.Mid(0, 2));
557 unsigned char g = (unsigned char)wxHexToDec(hex
[all...]
H A Demulator.h153 // Convert a colour to a 6-digit hex string
156 // Convert 6-digit hex string to a colour
157 wxColour wxHexStringToColour(const wxString& hex);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A DgenUnicode.py332 pline += "{%s, %s}" % (hex(low), hex(high))
435 output.write("(code == %s)" % (hex(begin)))
438 hex(begin), hex(end)))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_dump185/
H A Ddb_dump185.c308 static char hex[] = "0123456789abcdef"; variable
323 hex[(*p & 0xf0) >> 4], hex[*p & 0x0f]);
345 hex[(*p & 0xf0) >> 4], hex[*p & 0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A DgenUnicode.py332 pline += "{%s, %s}" % (hex(low), hex(high))
435 output.write("(code == %s)" % (hex(begin)))
438 hex(begin), hex(end)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/kernel/
H A Dgdb-stub.c31 * g return the value of the CPU registers hex data or ENN
34 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
57 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
180 static int hex(unsigned char ch);
188 * Convert ch from a hex digit to an int
190 static int hex(unsigned char ch) function
287 xmitcsum = hex(ch) << 4;
292 xmitcsum |= hex(ch);
384 * While we find nice hex chars, build an int.
395 hexValue = hex(**pt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/fileview/
H A DPrint.h73 inline wxString hex(uint8_t value) { return wxString::Format(wxT("0x%02x"), value); } function
74 inline wxString hex(uint16_t value) { return wxString::Format(wxT("0x%04x"), value); } function
75 inline wxString hex(uint32_t value) { return wxString::Format(wxT("0x%08x"), value); } function
H A DPrint.cpp100 return x << hex(ip) << " (" << Uint32toStringIP(wxUINT32_SWAP_ALWAYS(ip)) << ')';
105 return x << hex(ip) << " (" << Uint32toStringIP(ip) << ')';
324 out << hex(tag.GetNameID()) << ' ' << DecodeTagNameID(tag.GetNameID());
351 out << hex(enc);
411 out << hex(tag.GetNameID()) << ' ' << DecodeServerTagNameID(tag.GetNameID());
420 out << hex((uint32_t)tag.GetInt());
423 out << hex(flags);
468 out << hex(tag.GetNameID()) << ' ' << DecodeFriendTagNameID(tag.GetNameID());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/tools/
H A Dmrlg.cgi139 $name =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
142 $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dutils.cpp354 int rc, gc, bc, hex = 0; local
358 if (r == maxv) { h = bc - gc, hex = 0; }
359 else if (g == maxv) { h = rc - bc, hex = 2; }
360 else if (b == maxv) { h = gc - rc, hex = 4; }
361 h = hex * 60 + (h * 60 / wxMAX_RGB);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMuleCollection.cpp276 std::string hex = "0123456789abcdef"; local
278 fileHash[pos*2] = hex[((bFileHash[pos] >> 4) & 0xF)];
279 fileHash[(pos*2) + 1] = hex[(bFileHash[pos]) & 0x0F];
442 std::string hex = "0123456789abcdefABCDEF"; local
444 if (hex.find(fileHash[i]) == std::string::npos) {
H A DED2KLinkParser.cpp125 * @param hex The hex-number, must be at most 2 digits long.
128 char HexToDec( const string& hex )
132 for ( size_t i = 0; i < hex.length(); ++i ) {
133 char cur = toupper( hex.at(i) );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/kernel/
H A Dgdb-stub.c26 * g return the value of the CPU registers hex data or ENN
29 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
52 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
215 static int hex(unsigned char ch);
221 * Convert ch from a hex digit to an int
223 static int hex(unsigned char ch) function
315 xmitcsum = hex(ch) << 4;
320 xmitcsum |= hex(ch);
405 * While we find nice hex chars, build an int.
414 ch = hex(**pt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/python/examples/tdbpack/
H A Doldtdbutil.py115 hint = hex(myint)[2:]
137 val = hex(ord(buffer[i]))[2:]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/ps3/
H A Dsetup.c222 static void __init ps3_progress(char *s, unsigned short hex) argument
224 printk("*** %04x : %s\n", hex, s ? s : "");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mfd/
H A Djanz-cmodio.c53 /* hex switch position */
54 u8 hex; member in struct:cmodio_device
162 return snprintf(buf, PAGE_SIZE, "%x\n", priv->hex);
218 /* Read the hex switch on the carrier board */
219 priv->hex = ioread8(&priv->ctrl->int_enable);
221 /* Add the MODULbus number (hex switch value) to the device's sysfs */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/
H A Drichtextformatdlg.cpp610 // Convert a colour to a 6-digit hex string
613 wxString hex;
615 hex += wxDecToHex(col.Red());
616 hex += wxDecToHex(col.Green());
617 hex += wxDecToHex(col.Blue());
619 return hex;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/trace/
H A Dtrace_output.c229 unsigned char hex[HEX_CHARS]; local
241 hex[j++] = hex_asc_hi(data[i]);
242 hex[j++] = hex_asc_lo(data[i]);
244 hex[j++] = ' ';
246 return trace_seq_putmem(s, hex, j);
781 if (event->funcs->hex == NULL)
782 event->funcs->hex = trace_nop_print;
907 .hex = trace_fn_hex,
1048 .hex = trace_ctx_hex,
1060 .hex
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/kernel/
H A Dkgdb.c39 * g return the value of the CPU registers hex data or ENN
42 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
65 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
191 static int hex (char ch);
572 hex (char ch) function
622 ch = hex (*buf++) << 4;
623 ch = ch + hex (*buf++);
682 xmitcsum = hex (getDebugChar ()) << 4;
683 xmitcsum += hex (getDebugChar ());
759 n... = register number (hex)
[all...]

Completed in 249 milliseconds

123456