Searched refs:bitno (Results 1 - 9 of 9) sorted by relevance

/linux-master/lib/crypto/mpi/
H A Dmpi-bit.c64 unsigned int limbno, bitno; local
68 bitno = n % BITS_PER_MPI_LIMB;
73 return (limb & (A_LIMB_1 << bitno)) ? 1 : 0;
82 unsigned int i, limbno, bitno; local
85 bitno = n % BITS_PER_MPI_LIMB;
93 a->d[limbno] |= (A_LIMB_1<<bitno);
101 unsigned int i, limbno, bitno; local
104 bitno = n % BITS_PER_MPI_LIMB;
112 a->d[limbno] |= (A_LIMB_1<<bitno);
113 for (bitno
124 unsigned int limbno, bitno; local
142 unsigned int limbno, bitno; local
[all...]
/linux-master/drivers/net/ppp/
H A Dbsd_comp.c570 unsigned int bitno; local
598 bitno -= n_bits; \
599 accm |= ((ent) << bitno); \
604 bitno += 8; \
606 while (bitno <= 24); \
625 bitno = 32;
747 if (bitno < 32)
766 if (bitno != 32)
768 PUTBYTE((accm | (0xff << (bitno-8))) >> 24);
833 unsigned int bitno; /* local
[all...]
/linux-master/drivers/crypto/ccp/
H A Dccp-dev-v5.c613 int bitno; local
635 bitno = find_first_bit(qlsb, MAX_LSB_CNT);
636 while (bitno < MAX_LSB_CNT) {
637 if (test_bit(bitno, lsb_pub)) {
641 cmd_q->lsb = bitno;
642 bitmap_clear(lsb_pub, bitno, 1);
645 i, bitno);
648 bitmap_clear(qlsb, bitno, 1);
649 bitno = find_first_bit(qlsb, MAX_LSB_CNT);
651 if (bitno >
670 int bitno; local
[all...]
/linux-master/arch/powerpc/platforms/52xx/
H A Dmpc52xx_pic.c146 static inline void io_be_setbit(u32 __iomem *addr, int bitno) argument
148 out_be32(addr, in_be32(addr) | (1 << bitno));
151 static inline void io_be_clrbit(u32 __iomem *addr, int bitno) argument
153 out_be32(addr, in_be32(addr) & ~(1 << bitno));
/linux-master/fs/jfs/
H A Djfs_imap.c848 int iagno, ino, extno, bitno, sword, agno; local
907 bitno = ino & (INOSPEREXT - 1);
908 mask = HIGHORDER >> bitno;
988 bitno = extno & (EXTSPERSUM - 1);
990 cpu_to_le32(~(HIGHORDER >> bitno));
1191 bitno = extno & (EXTSPERSUM - 1);
1192 mask = HIGHORDER >> bitno;
1322 int rc, ino, iagno, addext, extno, bitno, sword; local
1417 bitno = ino & (INOSPEREXT - 1);
1418 if ((bitno
2008 int extno, bitno, agno, sword, rc; local
2693 int bitno; local
2728 int iagno, ino, extno, bitno; local
[all...]
H A Djfs_dmap.c3007 int bitno, nb; local
3023 for (bitno = 0; mask != 0; bitno += nb, mask >>= nb) {
3028 ASSERT(bitno < 32);
3032 return (bitno);
/linux-master/include/linux/
H A Dio_uring_types.h489 #define IO_REQ_FLAG(bitno) ((__force io_req_flags_t) BIT_ULL((bitno)))
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_ethtool.c433 u8 bitno; member in struct:i40e_priv_flags
439 .bitno = _bitno, \
5229 if (test_bit(priv_flag->bitno, pf->flags))
5241 if (test_bit(priv_flag->bitno, pf->flags))
5278 test_bit(priv_flag->bitno, orig_flags) != new_val)
5282 set_bit(priv_flag->bitno, new_flags);
5284 clear_bit(priv_flag->bitno, new_flags);
5299 test_bit(priv_flag->bitno, orig_flags) != new_val)
5303 set_bit(priv_flag->bitno, new_flags);
5305 clear_bit(priv_flag->bitno, new_flag
[all...]
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_ethtool.c328 u32 bitno; /* bit position in pf->flags */ member in struct:ice_priv_flag
333 .bitno = _bitno, \
1397 if (test_bit(priv_flag->bitno, pf->flags))
1433 set_bit(priv_flag->bitno, pf->flags);
1435 clear_bit(priv_flag->bitno, pf->flags);

Completed in 150 milliseconds