Searched refs:HEX (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/tools/tools/ipw/
H A Dipwstats.c53 #define HEX 2 macro
54 #define MASK HEX
205 { 179, "IEEE country code", HEX },
220 { 192, "Transmission rate", HEX },
224 { 196, "Adapter highest rate", HEX },
225 { 197, "Access point highest rate", HEX },
271 case HEX:
/freebsd-13-stable/bin/pax/
H A Dcpio.c513 * uses HEX
530 * WITH crc. WATCH it the magic cookies are in OCTAL the header uses HEX
592 arcn->sb.st_ino = (ino_t)asc_ul(hd->c_ino, sizeof(hd->c_ino), HEX);
593 arcn->sb.st_mode = (mode_t)asc_ul(hd->c_mode, sizeof(hd->c_mode), HEX);
594 arcn->sb.st_uid = (uid_t)asc_ul(hd->c_uid, sizeof(hd->c_uid), HEX);
595 arcn->sb.st_gid = (gid_t)asc_ul(hd->c_gid, sizeof(hd->c_gid), HEX);
597 arcn->sb.st_mtime = (time_t)asc_ul(hd->c_mtime,sizeof(hd->c_mtime),HEX);
599 arcn->sb.st_mtime = (time_t)asc_uqd(hd->c_mtime,sizeof(hd->c_mtime),HEX);
604 sizeof(hd->c_filesize), HEX);
607 sizeof(hd->c_filesize), HEX);
[all...]
H A Dgen_subs.c235 if (base == HEX) {
276 if (base == HEX) {
332 if (base == HEX) {
373 if (base == HEX) {
H A Dpax.h244 #define HEX 16 macro
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dconstbuf.h49 HEX, member in class:test::detail::Constbuf_mode
156 mode = Constbuf_mode::HEX;
187 mode = Constbuf_mode::HEX;
240 case Constbuf_mode::HEX:
285 case Constbuf_mode::HEX:
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOStreamMacros.h26 #define HEX(x) HEXBASE << std::setw(sizeof(x) * 2) << (x) macro
/freebsd-13-stable/contrib/sendmail/libsm/
H A Dvfprintf.c191 enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */ enumerator in enum:__anon5940
600 base = HEX;
644 base = HEX;
699 case HEX:
/freebsd-13-stable/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_conf.l137 HEX 0[xX][0-9a-zA-Z]+
301 {HEX} {
/freebsd-13-stable/contrib/ofed/libibmad/
H A Ddump.c1199 #define HEX(x) ((x) < 10 ? '0' + (x) : 'a' + ((x) -10)) macro
1207 fputc(HEX(*cp >> 4), file);
1208 fputc(HEX(*cp & 0xf), file);
1211 fputc(HEX(cp[1] >> 4), file);
1212 fputc(HEX(cp[1] & 0xf), file);
/freebsd-13-stable/contrib/ofed/libibumad/
H A Dumad.c1092 #define HEX(x) ((x) < 10 ? '0' + (x) : 'a' + ((x) -10)) macro
1097 gid_str[i * 2] = HEX(addr->gid[i] >> 4);
1098 gid_str[i * 2 + 1] = HEX(addr->gid[i] & 0xf);

Completed in 68 milliseconds