Home
last modified time | relevance | path

Searched refs:test_bit (Results 1 – 10 of 10) sorted by last modified time

/illumos-gate/usr/src/uts/common/sys/ib/clients/rdsv3/
H A Drdsv3_impl.h79 #define test_bit(b, p) \ macro
97 #define test_bit(b, p) \ macro
118 #define test_le_bit(b, p) test_bit(b ^ LE_BIT_XOR, p)
389 return (test_bit(flag, &sk->sk_flag)); in rdsv3_sk_sock_flag()
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Dsend.c288 test_bit(RDSV3_MSG_RETRANSMITTED, &rm->m_flags)) { in rdsv3_send_xmit()
493 if (test_bit(RDSV3_MSG_ON_SOCK, &rm->m_flags) && in rdsv3_rdma_send_complete()
622 if (!test_bit(RDSV3_MSG_ON_SOCK, &rm->m_flags)) in rdsv3_send_remove_from_sock()
769 if (!test_bit(RDSV3_MSG_ON_CONN, &rm->m_flags)) in rdsv3_send_drop_to()
1118 if (!test_bit(RDSV3_LL_SEND_FULL, &conn->c_flags)) in rdsv3_sendmsg()
1187 if (!test_bit(RDSV3_LL_SEND_FULL, &conn->c_flags)) in rdsv3_send_pong()
H A Dib_send.c431 test_bit(RDSV3_LL_SEND_FULL, &conn->c_flags) ? in rdsv3_ib_send_add_credits()
660 if (test_bit(RDSV3_MSG_ACK_REQUIRED, &rm->m_flags)) in rdsv3_ib_xmit()
662 if (test_bit(RDSV3_MSG_RETRANSMITTED, &rm->m_flags)) in rdsv3_ib_xmit()
H A Dmessage.c85 if (test_bit(RDSV3_MSG_PAGEVEC, &rm->m_flags)) in rdsv3_message_purge()
448 !test_bit(RDSV3_MSG_MAPPED, &rm->m_flags)); in rdsv3_message_wait()
H A Dib_cm.c434 if (!test_bit(RDSV3_LL_SEND_FULL, &conn->c_flags)) in rdsv3_ib_tasklet_fn()
H A Dib_recv.c540 if (!test_bit(IB_ACK_REQUESTED, &ic->i_ack_flags)) in rdsv3_ib_attempt_ack()
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_sp_verbs.c168 #define ECORE_TEST_BIT(bit, var) test_bit(bit, var)
/illumos-gate/usr/src/tools/smatch/src/smatch_data/
H A Dkernel.ignore_casted_params5 test_bit
/illumos-gate/usr/src/tools/smatch/src/
H A Dcompile-i386.c283 if (test_bit(regno, regs_in_use)) in get_hardreg()
336 if (!test_bit(regno, regs_in_use)) { in register_busy()
342 if (test_bit(regno, regs_in_use)) in register_busy()
H A Dbitmap.h10 static inline int test_bit(unsigned int nr, unsigned long *bitmap) in test_bit() function