Home
last modified time | relevance | path

Searched refs:nib (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/lib/libc/inet/
Dnsap_addr.c48 u_char c, nib; in inet_nsap_addr() local
63 nib = xtob(c); in inet_nsap_addr()
68 *binary++ = (nib << 4) | xtob(c); in inet_nsap_addr()
84 int nib; in inet_nsap_ntoa() local
103 nib = *binary >> 4; in inet_nsap_ntoa()
104 *ascii++ = nib + (nib < 10 ? '0' : '7'); in inet_nsap_ntoa()
105 nib = *binary++ & 0x0f; in inet_nsap_ntoa()
106 *ascii++ = nib + (nib < 10 ? '0' : '7'); in inet_nsap_ntoa()
/freebsd-12-stable/contrib/gdb/gdb/gdbserver/
Dremote-utils.c234 tohex (int nib) in tohex() argument
236 if (nib < 10) in tohex()
237 return '0' + nib; in tohex()
239 return 'a' + nib - 10; in tohex()
520 int nib; in convert_int_to_ascii() local
525 nib = ((ch & 0xf0) >> 4) & 0x0f; in convert_int_to_ascii()
526 *to++ = tohex (nib); in convert_int_to_ascii()
527 nib = ch & 0x0f; in convert_int_to_ascii()
528 *to++ = tohex (nib); in convert_int_to_ascii()
599 int nib, sig; in prepare_resume_reply() local
[all …]
/freebsd-12-stable/contrib/gdb/gdb/
Dmonitor.c1576 unsigned char c, nib; in longlong_hexchars() local
1596 nib = c >> 4; /* high nibble bits */ in longlong_hexchars()
1597 *outbuff++ = hexlate[nib]; in longlong_hexchars()
1598 nib = c & 0x0f; /* low nibble bits */ in longlong_hexchars()
1599 *outbuff++ = hexlate[nib]; in longlong_hexchars()
Dremote.c127 static int tohex (int nib);
2397 tohex (int nib) in tohex() argument
2399 if (nib < 10) in tohex()
2400 return '0' + nib; in tohex()
2402 return 'a' + nib - 10; in tohex()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dapple321 # purposes in YellowStep/Cocoa, including some nib files.
/freebsd-12-stable/contrib/binutils/gas/
DChangeLog-02032210 (build_bytes): Remove unused variable 'nib'. Detect overflow in
/freebsd-12-stable/share/dict/
Dweb2a12886 coffee nib
40052 pen nib
45535 quill nib
Dweb2124299 nib
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDiagnosticSemaKinds.td1445 "not work correctly with 'nib' loader">,