Searched refs:mctx (Results 1 – 2 of 2) sorted by relevance
13 static void michael_block(struct michael_mic_ctx *mctx, u32 val) in michael_block() argument15 mctx->l ^= val; in michael_block()16 mctx->r ^= rol32(mctx->l, 17); in michael_block()17 mctx->l += mctx->r; in michael_block()18 mctx->r ^= ((mctx->l & 0xff00ff00) >> 8) | in michael_block()19 ((mctx->l & 0x00ff00ff) << 8); in michael_block()20 mctx->l += mctx->r; in michael_block()21 mctx->r ^= rol32(mctx->l, 3); in michael_block()22 mctx->l += mctx->r; in michael_block()23 mctx->r ^= ror32(mctx->l, 2); in michael_block()[all …]
1000 struct net_bridge_mcast_port *mctx; in br_multicast_rport_from_node_skb() local1004 mctx = hlist_entry_safe(rp, struct net_bridge_mcast_port, in br_multicast_rport_from_node_skb()1008 mctx = hlist_entry_safe(rp, struct net_bridge_mcast_port, in br_multicast_rport_from_node_skb()1011 if (mctx) in br_multicast_rport_from_node_skb()1012 return mctx->port; in br_multicast_rport_from_node_skb()