Searched refs:f2 (Results 1 - 25 of 189) sorted by relevance

12345678

/linux-master/tools/testing/selftests/bpf/progs/
H A Dbtf__core_reloc_nesting___err_dup_incompat_types.c4 void f2(struct core_reloc_nesting___err_dup_incompat_types__2 x) {} function
H A Dbtf__core_reloc_nesting___err_partial_match_dups.c4 void f2(struct core_reloc_nesting___err_partial_match_dups__b x) {} function
H A Dbtf__core_reloc_misc.c4 void f2(struct core_reloc_misc___b x) {} function
H A Dbtf__core_reloc_nesting___dup_compat_types.c4 void f2(struct core_reloc_nesting___dup_compat_types__2 x) {} function
H A Dtest_global_func6.c17 int f2(int val, struct __sk_buff *skb) function
32 return f1(skb) + f2(2, skb) + f3(3, skb);
H A Dtest_global_func5.c17 int f2(int val, struct __sk_buff *skb) function
32 return f1(skb) + f2(2, skb) + f3(3, skb);
H A Dtest_spin_lock_fail.c87 struct foo *f1, *f2, *v, *iv; \
103 f2 = bpf_obj_new(typeof(*f2)); \
104 if (!f2) { \
113 CHECK(kptr_kptr, &f1->lock, &f2->lock);
126 struct foo *f1, *f2; local
132 f2 = bpf_map_lookup_elem(&array_map, &key);
133 if (!f2)
138 bpf_spin_unlock(&f2->lock);
150 struct foo *f1, *f2; local
174 struct foo *f1, *f2; local
[all...]
H A Dtest_global_func3.c15 int f2(int val, struct __sk_buff *skb) function
23 return f2(var, skb) + val;
H A Dtest_global_func4.c15 int f2(int val, struct __sk_buff *skb) function
23 return f2(var, skb) + val;
H A Dtest_global_func2.c29 int f2(int val, struct __sk_buff *skb) function
48 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
H A Dtest_global_func1.c31 int f2(int val, struct __sk_buff *skb) function
54 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
/linux-master/drivers/dma-buf/
H A Dst-dma-fence-unwrap.c121 struct dma_fence *fence, *f1, *f2, *array; local
131 f2 = mock_fence();
132 if (!f2) {
137 dma_fence_enable_sw_signaling(f2);
139 array = mock_array(2, f1, f2);
146 } else if (fence == f2) {
147 f2 = NULL;
154 if (f1 || f2) {
165 struct dma_fence *fence, *f1, *f2, *chain; local
175 f2
209 struct dma_fence *fence, *f1, *f2, *array, *chain; local
257 struct dma_fence *fence, *f1, *f2, *f3; local
309 struct dma_fence *fence, *f1, *f2, *f3, *f4, *f5; local
[all...]
/linux-master/include/linux/
H A Dindirect_call_wrapper.h21 #define INDIRECT_CALL_2(f, f2, f1, ...) \
23 likely(f == f2) ? f2(__VA_ARGS__) : \
26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \
29 INDIRECT_CALL_2(f, f2, f1, __VA_ARGS__); \
31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \
34 INDIRECT_CALL_3(f, f3, f2, f1, __VA_ARGS__); \
43 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__)
44 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) f(__VA_ARGS__)
45 #define INDIRECT_CALL_4(f, f4, f3, f2, f
[all...]
H A Ddma-fence.h464 * __dma_fence_is_later - return if f1 is chronologically later than f2
466 * @f2: the second fence's seqno from the same context
469 * Returns true if f1 is chronologically later than f2. Both fences must be
472 static inline bool __dma_fence_is_later(u64 f1, u64 f2, argument
480 return f1 > f2;
482 return (int)(lower_32_bits(f1) - lower_32_bits(f2)) > 0;
486 * dma_fence_is_later - return if f1 is chronologically later than f2
488 * @f2: the second fence from the same context
490 * Returns true if f1 is chronologically later than f2. Both fences must be
494 struct dma_fence *f2)
493 dma_fence_is_later(struct dma_fence *f1, struct dma_fence *f2) argument
511 dma_fence_is_later_or_same(struct dma_fence *f1, struct dma_fence *f2) argument
526 dma_fence_later(struct dma_fence *f1, struct dma_fence *f2) argument
[all...]
/linux-master/tools/testing/selftests/futex/functional/
H A Dfutex_requeue_pi_signal_restart.c35 futex_t f2 = FUTEX_INITIALIZER; variable
100 info("Calling FUTEX_LOCK_PI on f2=%x @ %p\n", f2, &f2);
102 res = futex_wait_requeue_pi(&f1, old_val, &(f2), NULL,
107 info("w2:futex: %x\n", f2);
109 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG);
156 info("m1:f2: %x\n", f2);
165 info("Calling FUTEX_LOCK_PI on f2
[all...]
H A Dfutex_requeue_pi.c42 futex_t f2 = FUTEX_INITIALIZER; variable
124 &f1, f1, &f2);
125 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout,
138 futex_lock_pi(&f2, NULL, 0, FUTEX_PRIVATE_FLAG);
140 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG);
162 info("Calling FUTEX_LOCK_PI on mutex=%x @ %p\n", f2, &f2);
163 futex_lock_pi(&f2, NULL, 0, FUTEX_PRIVATE_FLAG);
167 args->ret = futex_cmp_requeue_pi(&f1, old_val, &f2, nr_wake, nr_requeue,
185 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLA
[all...]
H A Dfutex_requeue.c47 volatile futex_t f2 = 0; local
74 * Requeue a waiter from f1 to f2, and wake f2.
81 info("Requeuing 1 futex from f1 to f2\n");
82 res = futex_cmp_requeue(f1, 0, &f2, 0, 1, 0);
91 info("Waking 1 futex at f2\n");
92 res = futex_wake(&f2, 1, 0);
114 info("Waking 3 futexes at f1 and requeuing 7 futexes from f1 to f2\n");
115 res = futex_cmp_requeue(f1, 0, &f2, 3, 7, 0);
123 info("Waking INT_MAX futexes at f2\
[all...]
/linux-master/drivers/gpu/drm/amd/display/dmub/src/
H A Ddmub_reg.h65 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
68 FN(reg, f2), v2)
70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
73 FN(reg, f2), v2, \
76 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
79 FN(reg, f2), v2, \
92 #define REG_UPDATE_2(reg, f1, v1, f2, v2) \
95 FN(reg, f2), v2)
97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \
100 FN(reg, f2), v
[all...]
/linux-master/arch/sparc/kernel/
H A Dfpu_traps.S35 fzero %f2
36 faddd %f0, %f2, %f4
37 fmuld %f0, %f2, %f6
38 faddd %f0, %f2, %f8
39 fmuld %f0, %f2, %f10
40 faddd %f0, %f2, %f12
41 fmuld %f0, %f2, %f14
42 faddd %f0, %f2, %f16
43 fmuld %f0, %f2, %f18
44 faddd %f0, %f2,
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/inc/
H A Dreg_helper.h67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
70 FN(reg, f2), v2)
72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
75 FN(reg, f2), v2,\
78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
81 FN(reg, f2), v2,\
85 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
89 FN(reg, f2), v2,\
94 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
98 FN(reg, f2), v
[all...]
/linux-master/arch/sparc/crypto/
H A Dcamellia_asm.S38 ld [%o0 + 0x08], %f2 ! i2, k[2]
42 std %f2, [%o1 + 0x08] ! k[2, 3]
45 fsrc2 %f2, %f30
53 fxor %f10, %f0, %f2
54 ld [%o0 + 0x18], %f2
57 std %f2, [%o1 + 0x28] ! k[10, 11]
59 fxor %f30, %f2, %f2
73 fxor %f30, %f2, %f2
[all...]
H A Dcrc32c_asm.S12 1: ldd [%o1], %f2
/linux-master/arch/sparc/lib/
H A Dclear_page.S82 fzero %f2
84 faddd %f0, %f2, %f4
85 fmuld %f0, %f2, %f6
86 faddd %f0, %f2, %f8
87 fmuld %f0, %f2, %f10
89 faddd %f0, %f2, %f12
90 fmuld %f0, %f2, %f14
/linux-master/tools/bootconfig/scripts/
H A Dftrace.sh23 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
29 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
55 tr=`echo $t | cut -d: -f2`
64 tr=`echo $t | cut -d: -f2-4`
67 tr=`echo $t | cut -d: -f2`
/linux-master/tools/testing/selftests/lkdtm/
H A Drun.sh43 expect=$(echo "$line" | cut -d" " -f2-)
64 repeat=$(echo "$expect" | cut -d' ' -f1 | cut -d: -f2)
65 expect=$(echo "$expect" | cut -d' ' -f2-)

Completed in 158 milliseconds

12345678