Searched refs:f1 (Results 1 – 6 of 6) sorted by relevance
| /include/linux/ |
| A D | indirect_call_wrapper.h | 17 #define INDIRECT_CALL_1(f, f1, ...) \ argument 19 likely(f == f1) ? f1(__VA_ARGS__) : f(__VA_ARGS__); \ 21 #define INDIRECT_CALL_2(f, f2, f1, ...) \ argument 24 INDIRECT_CALL_1(f, f1, __VA_ARGS__); \ 26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \ argument 29 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__); \ 42 #define INDIRECT_CALL_1(f, f1, ...) f(__VA_ARGS__) argument 57 #define INDIRECT_CALL_INET(f, f2, f1, ...) \ argument 58 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__) 60 #define INDIRECT_CALL_INET(f, f2, f1, ...) INDIRECT_CALL_1(f, f1, __VA_ARGS__) argument [all …]
|
| A D | dma-fence.h | 478 return f1 > f2; in __dma_fence_is_later() 480 return (int)(lower_32_bits(f1) - lower_32_bits(f2)) > 0; in __dma_fence_is_later() 491 static inline bool dma_fence_is_later(struct dma_fence *f1, in dma_fence_is_later() argument 494 if (WARN_ON(f1->context != f2->context)) in dma_fence_is_later() 497 return __dma_fence_is_later(f1, f1->seqno, f2->seqno); in dma_fence_is_later() 509 static inline bool dma_fence_is_later_or_same(struct dma_fence *f1, in dma_fence_is_later_or_same() argument 512 return f1 == f2 || dma_fence_is_later(f1, f2); in dma_fence_is_later_or_same() 524 static inline struct dma_fence *dma_fence_later(struct dma_fence *f1, in dma_fence_later() argument 527 if (WARN_ON(f1->context != f2->context)) in dma_fence_later() 535 if (dma_fence_is_later(f1, f2)) in dma_fence_later() [all …]
|
| A D | virtio_features.h | 65 static inline bool virtio_features_equal(const u64 *f1, const u64 *f2) in virtio_features_equal() argument 70 if (f1[i] != f2[i]) in virtio_features_equal() 80 static inline void virtio_features_andnot(u64 *to, const u64 *f1, const u64 *f2) in virtio_features_andnot() argument 85 to[i] = f1[i] & ~f2[i]; in virtio_features_andnot()
|
| A D | netdevice.h | 5247 static inline netdev_features_t netdev_intersect_features(netdev_features_t f1, in netdev_intersect_features() argument 5250 if ((f1 ^ f2) & NETIF_F_HW_CSUM) { in netdev_intersect_features() 5251 if (f1 & NETIF_F_HW_CSUM) in netdev_intersect_features() 5252 f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM); in netdev_intersect_features() 5257 return f1 & f2; in netdev_intersect_features()
|
| /include/net/ |
| A D | inet_common.h | 77 #define indirect_call_gro_receive(f2, f1, cb, head, skb) \ argument 81 INDIRECT_CALL_2(cb, f2, f1, head, skb); \
|
| A D | gro.h | 415 #define indirect_call_gro_receive_inet(cb, f2, f1, head, skb) \ argument 419 INDIRECT_CALL_INET(cb, f2, f1, head, skb); \
|
Completed in 22 milliseconds