Home
last modified time | relevance | path

Searched refs:action1 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/xz/src/liblzma/rangecoder/
H A Drange_decoder.h140 #define rc_bit_last(prob, action0, action1, seq) \ argument
147 action1; \
154 #define rc_bit(prob, action0, action1, seq) \ argument
157 symbol = (symbol << 1) + 1; action1, \
166 #define rc_bit_case(prob, action0, action1, seq) \ argument
167 case seq: rc_bit(prob, action0, action1, seq)
/freebsd/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fs_tree.c1775 u32 action1 = act1->actions; in check_conflicting_actions() local
1779 xored_actions = action1 ^ action2; in check_conflicting_actions()
1784 if (action1 & MLX5_FLOW_ACT_ACTIONS_FLOW_TAG && in check_conflicting_actions()
1789 if (action1 & MLX5_FLOW_ACT_ACTIONS_MODIFY_HDR) in check_conflicting_actions()
1792 if (action1 & MLX5_FLOW_ACT_ACTIONS_PACKET_REFORMAT) in check_conflicting_actions()
1795 if (action1 & MLX5_FLOW_ACT_ACTIONS_COUNT) in check_conflicting_actions()
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md3123 .WillOnce(action1);
3129 execute `action1` in thread 1 and `action2` in thread 2.
3133 that the execution of `action1` and `action2` in the above example *may*
3135 `action1` and `action2` to make the test thread-safe.