Searched refs:nib (Results 1 – 9 of 9) sorted by relevance
/linux/arch/sh/kernel/cpu/sh4/ |
H A D | fpu.c | 179 int nib[4] = { in ieee_fpe_handler() local 186 if (nib[0] == 0xb || (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) in ieee_fpe_handler() 189 if (nib[0] == 0xa || nib[0] == 0xb) { in ieee_fpe_handler() 193 } else if (nib[0] == 0x8 && nib[1] == 0xd) { in ieee_fpe_handler() 200 } else if (nib[ in ieee_fpe_handler() [all...] |
/linux/arch/sh/kernel/cpu/sh2a/ |
H A D | fpu.c | 411 int nib[4] = { in ieee_fpe_handler() local 417 if (nib[0] == 0xb || in ieee_fpe_handler() 418 (nib[0] == 0x4 && nib[2] == 0x0 && nib[3] == 0xb)) /* bsr & jsr */ in ieee_fpe_handler() 420 if (nib[0] == 0xa || nib[0] == 0xb) { /* bra & bsr */ in ieee_fpe_handler() 423 } else if (nib[0] == 0x8 && nib[1] == 0xd) { /* bt/s */ in ieee_fpe_handler() 429 } else if (nib[ in ieee_fpe_handler() [all...] |
/linux/fs/smb/client/compress/ |
H A D | lz77.c | 78 static __always_inline void *lz77_write_match(void *dst, void **nib, u32 dist, u32 len) in lz77_write_match() argument 95 if (!*nib) { in lz77_write_match() 97 *nib = dst; in lz77_write_match() 100 u8 *b = *nib; in lz77_write_match() 103 *nib = NULL; in lz77_write_match() 135 void *dstp, *nib, *flag_pos; in lz77_compress() local 143 nib = NULL; in lz77_compress() 192 dstp = lz77_write_match(dstp, &nib, dist, len); in lz77_compress()
|
/linux/drivers/leds/ |
H A D | leds-mlxreg.c | 65 u32 nib; in mlxreg_led_store_hw() local 84 nib = (ror32(data->mask, data->bit) == 0xf0) ? rol32(vset, data->bit) : in mlxreg_led_store_hw() 86 regval = (regval & data->mask) | nib; in mlxreg_led_store_hw()
|
H A D | leds-mlxcpld.c | 259 u8 nib, val; in mlxcpld_led_store_hw() local 274 nib = (mask == 0xf0) ? vset : (vset << 4); in mlxcpld_led_store_hw() 275 val = (val & mask) | nib; in mlxcpld_led_store_hw()
|
/linux/drivers/s390/crypto/ |
H A D | vfio_ap_ops.c | 339 * vfio_ap_validate_nib - validate a notification indicator byte (nib) address. 342 * @nib: the location for storing the nib address. 345 * address of the notification indicator byte (nib) used for IRQ notification. 346 * This function parses and validates the nib from gr2. 348 * Return: returns zero if the nib address is a valid; otherwise, returns 351 static int vfio_ap_validate_nib(struct kvm_vcpu *vcpu, dma_addr_t *nib) in vfio_ap_validate_nib() argument 353 *nib = vcpu->run->s.regs.gprs[2]; in vfio_ap_validate_nib() 355 if (!*nib) in vfio_ap_validate_nib() 357 if (kvm_is_error_hva(gfn_to_hva(vcpu->kvm, *nib >> PAGE_SHIF in vfio_ap_validate_nib() 427 dma_addr_t nib; vfio_ap_irq_enable() local [all...] |
/linux/sound/firewire/digi00x/ |
H A D | amdtp-dot.c | 75 static const u8 nib[15] = {0x8, 0x7, 0x9, 0x6, 0xa, 0x5, 0xb, 0x4, in dot_scrt() local 98 return ((nib[14 + off - len[ln]]) | (hr << 4)); in dot_scrt()
|
/linux/drivers/message/fusion/ |
H A D | mptctl.c | 791 u32 nib; in mptctl_do_fw_download() local 898 nib = (sgIn->FlagsLength & 0x30000000) >> 28; in mptctl_do_fw_download() 899 if (nib == 0 || nib == 3) { in mptctl_do_fw_download() 1162 u32 nib; in kfree_sgl() local 1171 nib = (sg->FlagsLength & 0xF0000000) >> 28; in kfree_sgl() 1172 while (! (nib & 0x4)) { /* eob */ in kfree_sgl() 1174 if (nib == 0 || nib == 3) { in kfree_sgl() 1192 nib in kfree_sgl() [all...] |
/linux/net/mptcp/ |
H A D | protocol.h | 180 static inline __be32 mptcp_option(u8 subopt, u8 len, u8 nib, u8 field) in mptcp_option() argument 183 ((nib & 0xF) << 8) | field); in mptcp_option()
|