Searched refs:nibble (Results 1 - 11 of 11) sorted by relevance

/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A DdecUtility.c236 uInt nibble; /* work */ local
295 /* nibble to handle [extras could overflow a Unit] */
296 nibble = bcd & 0x000f;
297 if (nibble)
300 out = (Unit) (out + nibble * powers[cut]);
312 nibble = bcd & 0x00f0;
313 if (nibble)
315 nibble >>= 4;
317 out = (Unit) (out + nibble * powers[cut]);
327 nibble
[all...]
/freebsd-9.3-release/lib/libbluetooth/
H A Dbluetooth.c58 static int bt_hex_nibble (char nibble);
358 bt_hex_nibble(char nibble) argument
360 if ('0' <= nibble && nibble <= '9')
361 return (nibble - '0');
363 if ('a' <= nibble && nibble <= 'f')
364 return (nibble - 'a' + 0xa);
366 if ('A' <= nibble && nibble <
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dbyaddr.h86 *\li There is a reverse lookup format for IPv6 addresses, 'nibble'
88 *\li The 'nibble' format for that address is
94 *\li #DNS_BYADDROPT_IPV6INT can be used to get nibble lookups under ip6.int.
150 dns_byaddr_createptrname(isc_netaddr_t *address, isc_boolean_t nibble,
158 * nibble flag indicates that the 'nibble' format is to be used if an IPv6
/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_1284.c222 /* nibble mode is not supported */
486 char nibble[2]; local
494 /* Event 8 - peripheral writes the first nibble */
502 /* read nibble */
503 nibble[i] = ppb_rstr(bus);
505 /* Event 10 - ack, nibble received */
515 *buffer = ((nibble2char(nibble[1]) << 4) & 0xf0) |
516 (nibble2char(nibble[0]) & 0x0f);
653 * Normal nibble mode or request device id mode (see ppb_1284.h)
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dbyaddr.c52 dns_byaddr_createptrname(isc_netaddr_t *address, isc_boolean_t nibble, argument
58 UNUSED(nibble);
/freebsd-9.3-release/contrib/ntp/sntp/unity/
H A Dunity.c210 _U_UINT nibble; local
217 nibble = (number >> (--nibbles << 2)) & 0x0000000F;
218 if (nibble <= 9)
220 UNITY_OUTPUT_CHAR((char)('0' + nibble));
224 UNITY_OUTPUT_CHAR((char)('A' - 10 + nibble));
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DAsmWriter.cpp834 // Bit position, in the current word, of the next nibble to print.
846 unsigned int nibble = (word>>shiftcount) & 15; local
847 if (nibble < 10)
848 Out << (unsigned char)(nibble + '0');
850 Out << (unsigned char)(nibble - 10 + 'A');
876 unsigned int nibble = (word>>shiftcount) & 15; local
877 if (nibble < 10)
878 Out << (unsigned char)(nibble + '0');
880 Out << (unsigned char)(nibble - 10 + 'A');
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dremote.c1160 static char *pack_nibble (char *buf, int nibble);
1257 int nibble;
1262 nibble = stubhex (*buff++);
1263 retval |= nibble;
1275 int nibble;
1278 while (ishex (*buff, &nibble))
1282 retval |= nibble & 0x0f;
1296 pack_nibble (char *buf, int nibble)
1298 *buf++ = hexchars[(nibble & 0x0f)];
1253 int nibble; local
1271 int nibble; local
1292 pack_nibble(char *buf, int nibble) argument
/freebsd-9.3-release/tools/tools/cxgbtool/
H A Dcxgbtool.c1075 uint8_t nibble = p[nibble_idx / 2]; local
1078 nibble >>= 4;
1080 nibble &= 0xf;
1081 printf("%x", nibble);
/freebsd-9.3-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm667 @ bit in ip will not be in the bottom nibble, and we should not
H A Dieee754-df.S881 @ Perform first substraction to align result to a nibble.

Completed in 326 milliseconds