| /freebsd-12.1/contrib/gcclibs/libdecnumber/ |
| H A D | decUtility.c | 236 uInt nibble; /* work */ in decDenseUnpackCoeff() local 296 nibble = bcd & 0x000f; in decDenseUnpackCoeff() 297 if (nibble) in decDenseUnpackCoeff() 300 out = (Unit) (out + nibble * powers[cut]); in decDenseUnpackCoeff() 312 nibble = bcd & 0x00f0; in decDenseUnpackCoeff() 313 if (nibble) in decDenseUnpackCoeff() 315 nibble >>= 4; in decDenseUnpackCoeff() 317 out = (Unit) (out + nibble * powers[cut]); in decDenseUnpackCoeff() 327 nibble = bcd & 0x0f00; in decDenseUnpackCoeff() 328 if (nibble) in decDenseUnpackCoeff() [all …]
|
| /freebsd-12.1/lib/libbluetooth/ |
| H A D | bluetooth.c | 60 static int bt_hex_nibble (char nibble); 360 bt_hex_nibble(char nibble) in bt_hex_nibble() argument 362 if ('0' <= nibble && nibble <= '9') in bt_hex_nibble() 363 return (nibble - '0'); in bt_hex_nibble() 365 if ('a' <= nibble && nibble <= 'f') in bt_hex_nibble() 366 return (nibble - 'a' + 0xa); in bt_hex_nibble() 368 if ('A' <= nibble && nibble <= 'F') in bt_hex_nibble() 369 return (nibble - 'A' + 0xa); in bt_hex_nibble()
|
| /freebsd-12.1/usr.sbin/iscsid/ |
| H A D | chap.c | 137 int i, hex_len, nibble; in chap_hex2bin() local 166 nibble = chap_hex2int(hex[i]); in chap_hex2bin() 167 if (nibble < 0) { in chap_hex2bin() 176 bin[bin_off] = nibble; in chap_hex2bin() 179 bin[bin_off] |= nibble << 4; in chap_hex2bin()
|
| /freebsd-12.1/usr.sbin/ctld/ |
| H A D | chap.c | 137 int i, hex_len, nibble; in chap_hex2bin() local 166 nibble = chap_hex2int(hex[i]); in chap_hex2bin() 167 if (nibble < 0) { in chap_hex2bin() 176 bin[bin_off] = nibble; in chap_hex2bin() 179 bin[bin_off] |= nibble << 4; in chap_hex2bin()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | StringExtractor.cpp | 219 uint8_t nibble = xdigit_to_sint(m_packet[m_index]); in GetHexMaxU32() local 222 result |= nibble; in GetHexMaxU32() 270 uint8_t nibble = xdigit_to_sint(m_packet[m_index]); in GetHexMaxU64() local 273 result |= nibble; in GetHexMaxU64()
|
| /freebsd-12.1/stand/ficl/softwords/ |
| H A D | jhlocal.fr | 32 \ nibble the prefix (the "2:") off the name and push true. 39 2 - swap char+ char+ swap \ dcs/jws: nibble the '2:'
|
| /freebsd-12.1/sys/dev/ppbus/ |
| H A D | ppb_1284.c | 488 char nibble[2]; in nibble_1284_inbyte() local 505 nibble[i] = ppb_rstr(bus); in nibble_1284_inbyte() 517 *buffer = ((nibble2char(nibble[1]) << 4) & 0xf0) | in nibble_1284_inbyte() 518 (nibble2char(nibble[0]) & 0x0f); in nibble_1284_inbyte()
|
| /freebsd-12.1/contrib/ntp/sntp/unity/ |
| H A D | unity.c | 210 _U_UINT nibble; in UnityPrintNumberHex() local 217 nibble = (number >> (--nibbles << 2)) & 0x0000000F; in UnityPrintNumberHex() 218 if (nibble <= 9) in UnityPrintNumberHex() 220 UNITY_OUTPUT_CHAR((char)('0' + nibble)); in UnityPrintNumberHex() 224 UNITY_OUTPUT_CHAR((char)('A' - 10 + nibble)); in UnityPrintNumberHex()
|
| /freebsd-12.1/usr.sbin/bhyve/ |
| H A D | gdb.c | 360 hex_digit(uint8_t nibble) in hex_digit() argument 363 if (nibble <= 9) in hex_digit() 364 return (nibble + '0'); in hex_digit() 366 return (nibble + 'a' - 10); in hex_digit()
|
| /freebsd-12.1/contrib/ldns/ |
| H A D | rdata.c | 422 uint8_t nibble; in ldns_rdf_address_reverse() local 483 nibble = (ldns_rdf_data(rd)[octet] & ( 0xf << (4 * (1 - in ldns_rdf_address_reverse() 489 (uint8_t)ldns_int_to_hexdigit((int)nibble); in ldns_rdf_address_reverse()
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_VERSION_NUMBER.pod | 25 The status nibble has one of the values 0 for development, 1 to e for betas
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | remote.c | 1156 static char *pack_nibble (char *buf, int nibble); 1253 int nibble; in stub_unpack_int() local 1258 nibble = stubhex (*buff++); in stub_unpack_int() 1259 retval |= nibble; in stub_unpack_int() 1271 int nibble; in unpack_varlen_hex() local 1274 while (ishex (*buff, &nibble)) in unpack_varlen_hex() 1278 retval |= nibble & 0x0f; in unpack_varlen_hex() 1292 pack_nibble (char *buf, int nibble) in pack_nibble() argument 1294 *buf++ = hexchars[(nibble & 0x0f)]; in pack_nibble()
|
| /freebsd-12.1/crypto/openssl/crypto/des/asm/ |
| H A D | des_enc.m4 | 1832 ! nibble 0 1849 ! nibble 1 1866 ! nibble 2 1883 ! nibble 3 1900 ! nibble 4 1917 ! nibble 5 1934 ! nibble 6 1951 ! nibble 7
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | compress | 112 # There's only a magic nibble (4 bits); that nibble repeats every 33
|
| /freebsd-12.1/tools/tools/cxgbtool/ |
| H A D | cxgbtool.c | 1075 uint8_t nibble = p[nibble_idx / 2]; in dump_proto_sram() local 1078 nibble >>= 4; in dump_proto_sram() 1080 nibble &= 0xf; in dump_proto_sram() 1081 printf("%x", nibble); in dump_proto_sram()
|
| /freebsd-12.1/usr.bin/units/ |
| H A D | definitions.units | 574 nibble 4 bit 575 nybble nibble
|
| /freebsd-12.1/crypto/openssl/apps/ |
| H A D | s_client.c | 439 int nibble = 0; in hexdecode() local 455 if ((nibble ^= 1) == 0) { in hexdecode() 462 if (nibble != 0) { in hexdecode()
|
| /freebsd-12.1/contrib/gcc/config/arm/ |
| H A D | lib1funcs.asm | 667 @ bit in ip will not be in the bottom nibble, and we should not
|
| H A D | ieee754-df.S | 881 @ Perform first substraction to align result to a nibble.
|
| /freebsd-12.1/sys/dev/aic7xxx/ |
| H A D | aic79xx.reg | 3374 * (0-7 only) to the top nibble and retrieve the bit indexed by that value
|
| /freebsd-12.1/crypto/heimdal/lib/roken/ |
| H A D | ChangeLog | 271 in the lower nibble.
|
| /freebsd-12.1/contrib/binutils/opcodes/ |
| H A D | ChangeLog-0001 | 300 * sh-opc.h: Fix encoding of least significant nibble of the
|
| H A D | ChangeLog-9297 | 951 nibble of the opcode.
|
| /freebsd-12.1/contrib/binutils/include/opcode/ |
| H A D | ChangeLog-9103 | 2218 * h8300.h (band, bclr): Force high bit of immediate nibble to zero.
|
| /freebsd-12.1/share/doc/IPv6/ |
| H A D | IMPLEMENTATION | 186 the ip6.arpa domain (with the nibble format) for IPv6 reverse
|