Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 6 of 6) sorted by relevance

/include/linux/
A Dindirect_call_wrapper.h21 #define INDIRECT_CALL_2(f, f2, f1, ...) \ argument
23 likely(f == f2) ? f2(__VA_ARGS__) : \
26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \ argument
29 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__); \
31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \ argument
34 INDIRECT_CALL_3(f, f3, f2, f1, __VA_ARGS__); \
43 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__) argument
44 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) f(__VA_ARGS__) argument
57 #define INDIRECT_CALL_INET(f, f2, f1, ...) \ argument
58 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__)
[all …]
A Ddma-fence.h478 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()
492 struct dma_fence *f2) 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()
510 struct dma_fence *f2) 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()
525 struct dma_fence *f2) 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 Dvirtio_features.h65 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 Dnetdevice.h5248 netdev_features_t f2) in netdev_intersect_features() argument
5250 if ((f1 ^ f2) & NETIF_F_HW_CSUM) { in netdev_intersect_features()
5254 f2 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM); in netdev_intersect_features()
5257 return f1 & f2; in netdev_intersect_features()
/include/net/
A Dinet_common.h77 #define indirect_call_gro_receive(f2, f1, cb, head, skb) \ argument
81 INDIRECT_CALL_2(cb, f2, f1, head, skb); \
A Dgro.h415 #define indirect_call_gro_receive_inet(cb, f2, f1, head, skb) \ argument
419 INDIRECT_CALL_INET(cb, f2, f1, head, skb); \

Completed in 25 milliseconds