Searched refs:hexdigit (Results 1 - 18 of 18) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-properties.c59 static const char hexdigit[] = "0123456789abcdef"; local
100 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
101 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
110 hexdigit[(uc1 >> 12) & 0x0f], hexdigit[(uc1 >> 8) & 0x0f],
111 hexdigit[(uc1 >> 4) & 0x0f], hexdigit[uc1 & 0x0f]);
114 hexdigit[(uc
129 static const char hexdigit[] = "0123456789abcdef"; local
[all...]
H A Dmsgunfmt.cs132 String hexdigit = "0123456789abcdef";
145 b.Append(hexdigit[(uc >> 28) & 0x0f]);
146 b.Append(hexdigit[(uc >> 24) & 0x0f]);
147 b.Append(hexdigit[(uc >> 20) & 0x0f]);
148 b.Append(hexdigit[(uc >> 16) & 0x0f]);
149 b.Append(hexdigit[(uc >> 12) & 0x0f]);
150 b.Append(hexdigit[(uc >> 8) & 0x0f]);
151 b.Append(hexdigit[(uc >> 4) & 0x0f]);
152 b.Append(hexdigit[uc & 0x0f]);
159 b.Append(hexdigit[(u
[all...]
H A Dwrite-csharp.c126 static const char hexdigit[] = "0123456789abcdef"; local
142 *b++ = hexdigit[(uc >> 28) & 0x0f];
143 *b++ = hexdigit[(uc >> 24) & 0x0f];
144 *b++ = hexdigit[(uc >> 20) & 0x0f];
145 *b++ = hexdigit[(uc >> 16) & 0x0f];
146 *b++ = hexdigit[(uc >> 12) & 0x0f];
147 *b++ = hexdigit[(uc >> 8) & 0x0f];
148 *b++ = hexdigit[(uc >> 4) & 0x0f];
149 *b++ = hexdigit[uc & 0x0f];
156 *b++ = hexdigit[(u
174 static const char hexdigit[] = "0123456789abcdef"; local
[all...]
H A Dwrite-tcl.c56 static const char hexdigit[] = "0123456789abcdef"; local
94 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
95 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
H A Dwrite-java.c358 static const char hexdigit[] = "0123456789abcdef"; local
381 hexdigit[(uc >> 12) & 0x0f], hexdigit[(uc >> 8) & 0x0f],
382 hexdigit[(uc >> 4) & 0x0f], hexdigit[uc & 0x0f]);
390 hexdigit[(uc1 >> 12) & 0x0f], hexdigit[(uc1 >> 8) & 0x0f],
391 hexdigit[(uc1 >> 4) & 0x0f], hexdigit[uc1 & 0x0f]);
393 hexdigit[(uc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/radvd/
H A Dscanner.l31 hexdigit ([a-f]|[A-F]|[0-9])
32 addr1 {hexdigit}{1,4}":"({hexdigit}{1,4}":")*(":"{hexdigit}{1,4})+
33 addr2 {hexdigit}{1,4}(":"{hexdigit}{1,4})*"::"
34 addr3 ({hexdigit}{1,4}":"){7}{hexdigit}{1,4}
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Dserver6_token.l68 hexdigit ([a-f]|[A-F]|[0-9])
69 hexpair {hexdigit}{hexdigit}
72 addr_head ("::"|{hexdigit}{1,4}(":"|"::"))
73 addr_tail ({hexdigit}{1,4}|({hexdigit}{1,4}"::")|{ipv4addr})?
74 addr_body ({hexdigit}{1,4}(":"|"::"))*
H A Dclient6_token.l91 hexdigit [0-9A-Fa-f]
92 hexpair {hexdigit}{hexdigit}
96 addr_head ("::"|{hexdigit}{1,4}(":"|"::"))
97 addr_tail ({hexdigit}{1,4}|({hexdigit}{1,4}"::")|{ipv4addr})
98 addr_body ({hexdigit}{1,4}(":"|"::"))*
H A Ddad_token.l81 hexdigit ([a-f]|[A-F]|[0-9])
82 hexpair ({hexdigit}{hexdigit})
H A Dra_token.l72 hexdigit ([a-f]|[A-F]|[0-9])
73 hexdigits ({hexdigit}{1,32})
H A Dresolv_token.l79 hexdigit ([a-f]|[A-F]|[0-9])
81 addr_head ("::"|{hexdigit}{1,4}(":"|"::"))
82 addr_tail ({hexdigit}{1,4}|({hexdigit}{1,4}"::")|{ipv4addr})?
83 addr_body ({hexdigit}{1,4}(":"|"::"))*
H A Dlease_token.l102 hexdigit ([a-f]|[A-F]|[0-9])
103 hexpair ({hexdigit}{hexdigit})
105 addr_head ("::"|{hexdigit}{1,4}(":"|"::"))
106 addr_tail ({hexdigit}{1,4}|({hexdigit}{1,4}"::")|{ipv4addr})?
107 addr_body ({hexdigit}{1,4}(":"|"::"))*
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl-csharp/
H A Dintl.cs132 String hexdigit = "0123456789abcdef";
145 b.Append(hexdigit[(uc >> 28) & 0x0f]);
146 b.Append(hexdigit[(uc >> 24) & 0x0f]);
147 b.Append(hexdigit[(uc >> 20) & 0x0f]);
148 b.Append(hexdigit[(uc >> 16) & 0x0f]);
149 b.Append(hexdigit[(uc >> 12) & 0x0f]);
150 b.Append(hexdigit[(uc >> 8) & 0x0f]);
151 b.Append(hexdigit[(uc >> 4) & 0x0f]);
152 b.Append(hexdigit[uc & 0x0f]);
159 b.Append(hexdigit[(u
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/platforms/
H A Dresidual.c609 static unsigned const char hexdigit[]="0123456789ABCDEF"; local
614 (hexdigit[(Number>>12)&0x0f] == str[3]) &&
615 (hexdigit[(Number>>8)&0x0f] == str[4]) &&
616 (hexdigit[(Number>>4)&0x0f] == str[5]) &&
617 (hexdigit[Number&0x0f] == str[6]) ) return 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/xmon/
H A Dxmon.c82 static int hexdigit(int);
1664 d = hexdigit(c);
1673 d = hexdigit(c);
1691 int hexdigit(int c) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/xmon/
H A Dxmon.c125 static int hexdigit(int);
2343 d = hexdigit(c);
2376 d = hexdigit(c);
2385 d = hexdigit(c);
2403 int hexdigit(int c) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/gigaset/
H A Disocdata.c249 static const char hexdigit[] = "0123456789abcdef"; local
260 dbgline[i++] = hexdigit[(c >> 4) & 0x0f];
261 dbgline[i++] = hexdigit[c & 0x0f];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Dpktgen.c2565 static char tohex(char hexdigit) argument
2567 return hexdigit > 9 ? hexdigit + 'a' - 10 : hexdigit + '0';

Completed in 142 milliseconds