Home
last modified time | relevance | path

Searched refs:hex2digit (Results 1 – 12 of 12) sorted by relevance

/dports/devel/libparserutils/libparserutils-0.2.4/test/
H A Dcscodec-utf16.c105 static inline int hex2digit(char hex) in hex2digit() function
198 (hex2digit(data[4]) << 8) | in handle_line()
199 (hex2digit(data[5]) << 4) | in handle_line()
200 hex2digit(data[6]); in handle_line()
229 | (hex2digit(data[4]) << 24) in handle_line()
230 | (hex2digit(data[5]) << 20) in handle_line()
231 | (hex2digit(data[6]) << 16) in handle_line()
232 | (hex2digit(data[7]) << 12) in handle_line()
233 | (hex2digit(data[8]) << 8) in handle_line()
234 | (hex2digit(data[9]) << 4) in handle_line()
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libgloss/
H A Ddebug.c150 hex2digit (int digit) in hex2digit() function
228 ch = hex2digit(*buf++) << 4; in hex2mem()
229 ch |= hex2digit(*buf++); in hex2mem()
255 hexValue = hex2digit(**ptr); in hex2int()
303 xmitcsum = hex2digit(inbyte() & 0x7f) << 4; in getpacket()
304 xmitcsum |= hex2digit(inbyte() & 0x7f); in getpacket()
H A Ddebug.h44 extern int hex2digit(int);
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/libgloss/
H A Ddebug.c150 hex2digit (int digit) in hex2digit() function
228 ch = hex2digit(*buf++) << 4; in hex2mem()
229 ch |= hex2digit(*buf++); in hex2mem()
255 hexValue = hex2digit(**ptr); in hex2int()
303 xmitcsum = hex2digit(inbyte() & 0x7f) << 4; in getpacket()
304 xmitcsum |= hex2digit(inbyte() & 0x7f); in getpacket()
H A Ddebug.h44 extern int hex2digit(int);
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libgloss/
H A Ddebug.c150 hex2digit (int digit) in hex2digit() function
228 ch = hex2digit(*buf++) << 4; in hex2mem()
229 ch |= hex2digit(*buf++); in hex2mem()
255 hexValue = hex2digit(**ptr); in hex2int()
303 xmitcsum = hex2digit(inbyte() & 0x7f) << 4; in getpacket()
304 xmitcsum |= hex2digit(inbyte() & 0x7f); in getpacket()
H A Ddebug.h44 extern int hex2digit(int);
/dports/net/pjsip/pjproject-2.11.1/pjlib/src/pj/
H A Dguid_win32.c35 PJ_INLINE(void) hex2digit(unsigned value, char *p) in hex2digit() function
54 hex2digit( *src, dst ); in guid_to_str()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/cygnal/libamf/
H A Dbuffer.cpp47 Buffer::hex2digit (std::uint8_t digit) in hex2digit() function in cygnal::Buffer
88 ch = hex2digit(*ptr++) << 4; in hex2mem()
89 ch |= hex2digit(*ptr++); in hex2mem()
H A Dbuffer.h435 std::uint8_t hex2digit (std::uint8_t digit);
/dports/net-mgmt/net-snmp/net-snmp-5.9/snmplib/
H A Dmib.c493 char hex2digit = HEX2DIGIT_NEED_INIT; in sprint_realloc_octet_string() local
540 if (HEX2DIGIT_NEED_INIT == hex2digit) in sprint_realloc_octet_string()
541 hex2digit = netsnmp_ds_get_boolean(NETSNMP_DS_LIBRARY_ID, in sprint_realloc_octet_string()
555 (hex2digit || ((0 == separ) && (0 == *hint)))) { in sprint_realloc_octet_string()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/doc/changelogs/
H A DChangeLog-0.8.56799 Add hex2mem() and hex2digit() from test case to base class.