Searched refs:f1 (Results 1 - 25 of 203) sorted by relevance

123456789

/linux-master/include/linux/
H A Dindirect_call_wrapper.h17 #define INDIRECT_CALL_1(f, f1, ...) \
19 likely(f == f1) ? f1(__VA_ARGS__) : f(__VA_ARGS__); \
21 #define INDIRECT_CALL_2(f, f2, f1, ...) \
24 INDIRECT_CALL_1(f, f1, __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__); \
42 #define INDIRECT_CALL_1(f, f1,
[all...]
H A Ddma-fence.h464 * __dma_fence_is_later - return if f1 is chronologically later than f2
465 * @f1: the first fence's seqno
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
487 * @f1: the first fence from the same context
490 * Returns true if f1 is chronologically later than f2. Both fences must be
493 static inline bool dma_fence_is_later(struct dma_fence *f1, 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/bpf/progs/
H A Dbtf__core_reloc_nesting___err_dup_incompat_types.c3 void f1(struct core_reloc_nesting___err_dup_incompat_types__1 x) {} function
H A Dbtf__core_reloc_nesting___err_partial_match_dups.c3 void f1(struct core_reloc_nesting___err_partial_match_dups__a x) {} function
H A Dbtf__core_reloc_misc.c3 void f1(struct core_reloc_misc___a x) {} function
H A Dbtf__core_reloc_nesting___dup_compat_types.c3 void f1(struct core_reloc_nesting___dup_compat_types x) {} function
H A Dtest_global_func6.c9 int f1(struct __sk_buff *skb) function
19 return f1(skb) + f3(val, skb + 1); /* type mismatch */
32 return f1(skb) + f2(2, skb) + f3(3, skb);
H A Dtest_global_func5.c9 int f1(struct __sk_buff *skb) function
19 return f1(skb) + f3(val, (void *)&val); /* type mismatch */
32 return f1(skb) + f2(2, skb) + f3(3, skb);
H A Dtest_spin_lock_fail.c87 struct foo *f1, *f2, *v, *iv; \
100 f1 = bpf_obj_new(typeof(*f1)); \
101 if (!f1) \
105 bpf_obj_drop(f1); \
113 CHECK(kptr_kptr, &f1->lock, &f2->lock);
114 CHECK(kptr_global, &f1->lock, &lockA);
115 CHECK(kptr_mapval, &f1->lock, &v->lock);
116 CHECK(kptr_innermapval, &f1->lock, &iv->lock);
119 CHECK(global_kptr, &lockA, &f1
126 struct foo *f1, *f2; local
150 struct foo *f1, *f2; local
174 struct foo *f1, *f2; local
[all...]
H A Dtest_global_func2.c17 int f1(struct __sk_buff *skb) function
31 return f1(skb) + f3(val, skb, 1);
48 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
H A Dtest_global_func1.c19 int f1(struct __sk_buff *skb) function
37 return f1(skb) + f3(val, skb, 1);
54 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);
H A Dkfunc_call_test_subprog.c9 int __noinline f1(struct __sk_buff *skb) function
34 return f1(skb);
/linux-master/drivers/dma-buf/
H A Dst-dma-fence-unwrap.c121 struct dma_fence *fence, *f1, *f2, *array; local
125 f1 = mock_fence();
126 if (!f1)
129 dma_fence_enable_sw_signaling(f1);
133 dma_fence_put(f1);
139 array = mock_array(2, f1, f2);
144 if (fence == f1) {
145 f1 = NULL;
154 if (f1 || f2) {
165 struct dma_fence *fence, *f1, *f local
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/arch/powerpc/tools/
H A Dhead_check.sh52 vma=$(grep -e " [TA] _stext$" .tmp_symbols.txt | cut -d' ' -f1)
56 start_head_addr=$(grep " t start_first_256B$" .tmp_symbols.txt | cut -d' ' -f1)
66 top_vma=$(echo "$vma" | cut -d'0' -f1)
68 expected_start_text_addr=$(grep " a text_start$" .tmp_symbols.txt | cut -d' ' -f1 | sed "s/^0/$top_vma/")
70 start_text_addr=$(grep " t start_text$" .tmp_symbols.txt | cut -d' ' -f1)
/linux-master/tools/testing/selftests/futex/functional/
H A Dfutex_wait_wouldblock.c43 futex_t f1 = FUTEX_INITIALIZER; local
47 .uaddr = (uintptr_t)&f1,
48 .val = f1+1,
75 info("Calling futex_wait on f1: %u @ %p with val=%u\n", f1, &f1, f1+1);
76 res = futex_wait(&f1, f1+1, &to, FUTEX_PRIVATE_FLAG);
98 info("Calling futex_waitv on f1
[all...]
H A Dfutex_wait_timeout.c98 futex_t f1 = FUTEX_INITIALIZER; local
104 .uaddr = (uintptr_t)&f1,
105 .val = f1,
143 res = futex_wait(&f1, f1, &to, 0);
149 res = futex_wait_bitset(&f1, f1, &to, 1, FUTEX_CLOCK_REALTIME);
155 res = futex_wait_bitset(&f1, f1, &to, 1, 0);
161 res = futex_wait_requeue_pi(&f1, f
[all...]
H A Dfutex_requeue_pi_mismatched_ops.c31 futex_t f1 = FUTEX_INITIALIZER; variable
46 child_ret = futex_wait(&f1, f1, NULL, FUTEX_PRIVATE_FLAG);
96 ret = futex_cmp_requeue_pi(&f1, f1, &f2, 1, 0, FUTEX_PRIVATE_FLAG);
104 ret = futex_wake(&f1, 1, FUTEX_PRIVATE_FLAG);
H A Dfutex_requeue.c17 volatile futex_t *f1; variable
35 if (futex_wait(f1, *f1, &to, 0))
49 f1 = &_f1;
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);
104 * Create 10 waiters at f1. At futex_requeue, wake 3 and requeue 7.
114 info("Waking 3 futexes at f1 and requeuing 7 futexes from f1 t
[all...]
/linux-master/arch/sparc/crypto/
H A Dcrc32c_asm.S11 lda [%o0] ASI_PL, %f1
17 sta %f1, [%o0] ASI_PL
/linux-master/scripts/
H A Dgen-randstruct-seed.sh6 HASH=$(echo -n "$SEED" | sha256sum | cut -d" " -f1)
/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) \
67 FN(reg, f1), v1, \
70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
72 FN(reg, f1), v1, \
76 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
78 FN(reg, f1), v1, \
92 #define REG_UPDATE_2(reg, f1, v1, f2, v2) \
94 FN(reg, f1), v1,\
97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \
99 FN(reg, f1), v
[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) \
69 FN(reg, f1), v1,\
72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
74 FN(reg, f1), v1,\
78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
80 FN(reg, f1), v1,\
85 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
88 FN(reg, f1), v1,\
94 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
97 FN(reg, f1), v
[all...]
/linux-master/tools/testing/selftests/ftrace/test.d/ftrace/
H A Dfunc-filter-glob.tc13 cut -f1 -d" " set_ftrace_filter > $TMPDIR/actual
14 cut -f1 -d" " available_filter_functions | grep "$2" > $TMPDIR/expected
/linux-master/tools/bootconfig/scripts/
H A Dftrace.sh23 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
24 file=`echo $line | cut -f1 -d:`
29 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["`
30 file=`echo $line | cut -f1 -d:`
45 echo 0 > `echo $line | cut -f1 -d:`
62 name=`echo $t | cut -d: -f1 | cut -d' ' -f1`
/linux-master/tools/testing/selftests/bpf/benchs/
H A Drun_bench_trigger.sh7 summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)

Completed in 264 milliseconds

123456789