OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tohexdigit
(Results
1 - 2
of
2
) sorted by relevancy
/src/lib/libedit/
chartype.c
310
#define
tohexdigit
(v) "0123456789ABCDEF"[v]
macro
312
*dst++ =
tohexdigit
(((unsigned int) c >> 16) & 0xf);
313
*dst++ =
tohexdigit
(((unsigned int) c >> 12) & 0xf);
314
*dst++ =
tohexdigit
(((unsigned int) c >> 8) & 0xf);
315
*dst++ =
tohexdigit
(((unsigned int) c >> 4) & 0xf);
316
*dst =
tohexdigit
(((unsigned int) c ) & 0xf);
chartype.c
310
#define
tohexdigit
(v) "0123456789ABCDEF"[v]
macro
312
*dst++ =
tohexdigit
(((unsigned int) c >> 16) & 0xf);
313
*dst++ =
tohexdigit
(((unsigned int) c >> 12) & 0xf);
314
*dst++ =
tohexdigit
(((unsigned int) c >> 8) & 0xf);
315
*dst++ =
tohexdigit
(((unsigned int) c >> 4) & 0xf);
316
*dst =
tohexdigit
(((unsigned int) c ) & 0xf);
Completed in 21 milliseconds
Indexes created Thu Oct 02 01:09:59 GMT 2025