Home
last modified time | relevance | path

Searched refs:bb_hexdigits_upcase (Results 1 – 6 of 6) sorted by relevance

/dports/sysutils/busybox/busybox-1.26.2/libbb/
H A Dmessages.c36 const char bb_hexdigits_upcase[] ALIGN1 = "0123456789ABCDEF"; variable
H A Dxfuncs.c140 *p++ = 0x20 | bb_hexdigits_upcase[c >> 4]; in bin2hex()
141 *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf]; in bin2hex()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/GPL/
H A Dtaskset.c46 *str++ = bb_hexdigits_upcase[val] | 0x20; in from_cpuset()
/dports/sysutils/busybox/busybox-1.26.2/miscutils/
H A Dtaskset.c70 *str++ = bb_hexdigits_upcase[val] | 0x20; in from_cpuset()
/dports/sysutils/busybox/busybox-1.26.2/networking/
H A Dnc_bloaty.c566 *op++ = 0x20 | bb_hexdigits_upcase[*p >> 4]; in oprint()
567 *op++ = 0x20 | bb_hexdigits_upcase[*p & 0x0f]; in oprint()
/dports/sysutils/busybox/busybox-1.26.2/include/
H A Dlibbb.h1829 extern const char bb_hexdigits_upcase[] ALIGN1;