/linux/drivers/dma-buf/ |
H A D | st-dma-fence-unwrap.c | 121 struct dma_fence *fence, *f1, *f2, *array; in unwrap_array() local 125 f1 = mock_fence(); in unwrap_array() 126 if (!f1) in unwrap_array() 129 dma_fence_enable_sw_signaling(f1); in unwrap_array() 133 dma_fence_put(f1); in unwrap_array() 139 array = mock_array(2, f1, f2); in unwrap_array() 144 if (fence == f1) { in unwrap_array() 145 f1 = NULL; in unwrap_array() 154 if (f1 || f2) { in unwrap_array() 165 struct dma_fence *fence, *f1, *f2, *chain; in unwrap_chain() local [all …]
|
/linux/include/linux/ |
H 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__); \ 31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \ argument 34 INDIRECT_CALL_3(f, f3, f2, f1, __VA_ARGS__); \ 42 #define INDIRECT_CALL_1(f, f1, ...) f(__VA_ARGS__) argument 43 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__) argument [all …]
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_spin_lock_fail.c | 87 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; lock_id_mismatch_mapval_mapval() local 150 struct foo *f1, *f2; lock_id_mismatch_innermapval_innermapval1() local 174 struct foo *f1, *f2; lock_id_mismatch_innermapval_innermapval2() local [all...] |
H A D | linked_list_fail.c | 12 struct foo *f, *f1, *f2; \ 34 f1 = f; \ 37 bpf_obj_drop(f1); \ 43 bpf_obj_drop(f1); \ 106 CHECK(kptr_kptr, op, &f1->lock, &f2->head); \ 107 CHECK(kptr_global, op, &f1->lock, &ghead); \ 108 CHECK(kptr_map, op, &f1->lock, &v->head); \ 109 CHECK(kptr_inner_map, op, &f1->lock, &iv->head); \ 112 CHECK(global_kptr, op, &glock, &f1->head); \ 143 CHECK(kptr_kptr, op, &f1->lock, &f2->head, &b->node); \ [all …]
|
H A D | core_reloc_types.h | 951 struct a_struct f1; member 1018 struct a_struct___diff f1; member 1068 struct a_struct___diff_sz f1; member 1118 union a_struct___incompat f1; member 1143 struct a_struct f1; member 1181 struct a_struct f1; member 1237 enum named_enum f1; member 1254 enum named_unsigned_enum64 f1; member 1272 enum named_enum___diff f1; member 1289 enum named_unsigned_enum64___diff f1; member [all …]
|
H A D | test_global_func5.c | 9 int f1(struct __sk_buff *skb) in f1() function 19 return f1(skb) + f3(val, (void *)&val); /* type mismatch */ in f2() 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func5()
|
H A D | test_global_func6.c | 9 int f1(struct __sk_buff *skb) in f1() function 19 return f1(skb) + f3(val, skb + 1); /* type mismatch */ in f2() 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func6()
|
H A D | test_global_func2.c | 17 int f1(struct __sk_buff *skb) in f1() function 31 return f1(skb) + f3(val, skb, 1); in f2() 48 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func2()
|
H A D | test_global_func1.c | 19 int f1(struct __sk_buff *skb) in f1() function 37 return f1(skb) + f3(val, skb, 1); in f2() 54 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func1()
|
/linux/drivers/gpu/drm/amd/display/dc/inc/ |
H A D | reg_helper.h | 67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument 69 FN(reg, f1), v1,\ 72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 74 FN(reg, f1), v1,\ 78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 80 FN(reg, f1), v1,\ 85 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 88 FN(reg, f1), v1,\ 94 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 97 FN(reg, f1), v1,\ [all …]
|
/linux/tools/testing/selftests/futex/functional/ |
H A D | futex_wait_wouldblock.c | 43 futex_t f1 = FUTEX_INITIALIZER; in main() local 47 .uaddr = (uintptr_t)&f1, in main() 48 .val = f1+1, in main() 75 info("Calling futex_wait on f1: %u @ %p with val=%u\n", f1, &f1, f1+1); in main() 76 res = futex_wait(&f1, f1+1, &to, FUTEX_PRIVATE_FLAG); in main() 98 info("Calling futex_waitv on f1: %u @ %p with val=%u\n", f1, &f1, f1+1); in main()
|
H A D | futex_wait_timeout.c | 98 futex_t f1 = FUTEX_INITIALIZER; in main() local 104 .uaddr = (uintptr_t)&f1, in main() 105 .val = f1, in main() 143 res = futex_wait(&f1, f1, &to, 0); in main() 149 res = futex_wait_bitset(&f1, f1, &to, 1, FUTEX_CLOCK_REALTIME); in main() 155 res = futex_wait_bitset(&f1, f1, &to, 1, 0); in main() 161 res = futex_wait_requeue_pi(&f1, f1, &futex_pi, &to, FUTEX_CLOCK_REALTIME); in main() 167 res = futex_wait_requeue_pi(&f1, f1, &futex_pi, &to, 0); in main()
|
H A D | futex_requeue_pi_mismatched_ops.c | 31 futex_t f1 = FUTEX_INITIALIZER; variable 46 child_ret = futex_wait(&f1, f1, NULL, FUTEX_PRIVATE_FLAG); in blocking_child() 96 ret = futex_cmp_requeue_pi(&f1, f1, &f2, 1, 0, FUTEX_PRIVATE_FLAG); in main() 104 ret = futex_wake(&f1, 1, FUTEX_PRIVATE_FLAG); in main()
|
H A D | futex_requeue.c | 17 volatile futex_t *f1; variable 35 if (futex_wait(f1, *f1, &to, 0)) in waiterfn() 49 f1 = &_f1; in main() 82 res = futex_cmp_requeue(f1, 0, &f2, 0, 1, 0); in main() 115 res = futex_cmp_requeue(f1, 0, &f2, 3, 7, 0); in main()
|
H A D | futex_requeue_pi.c | 41 futex_t f1 = FUTEX_INITIALIZER; variable 121 old_val = f1; in waiterfn() 124 &f1, f1, &f2); in waiterfn() 125 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout, in waiterfn() 166 old_val = f1; in broadcast_wakerfn() 167 args->ret = futex_cmp_requeue_pi(&f1, old_val, &f2, nr_wake, nr_requeue, in broadcast_wakerfn() 218 old_val = f1; in signal_wakerfn() 219 args->ret = futex_cmp_requeue_pi(&f1, old_val, &f2, in signal_wakerfn()
|
H A D | futex_requeue_pi_signal_restart.c | 34 futex_t f1 = FUTEX_INITIALIZER; variable 101 old_val = f1; in waiterfn() 102 res = futex_wait_requeue_pi(&f1, old_val, &(f2), NULL, in waiterfn() 181 old_val = f1; in main() 182 res = futex_cmp_requeue_pi(&f1, old_val, &(f2), 1, 0, in main()
|
/linux/arch/powerpc/boot/dts/ |
H A D | kmeter1.dts | 203 1 14 1 0 1 0 /* TxD0 (PB14, out, f1) */ 204 1 15 1 0 1 0 /* TxD1 (PB15, out, f1) */ 205 1 20 2 0 1 0 /* RxD0 (PB20, in, f1) */ 206 1 21 2 0 1 0 /* RxD1 (PB21, in, f1) */ 207 1 18 1 0 1 0 /* TX_EN (PB18, out, f1) */ 208 1 26 2 0 1 0 /* RX_DV (PB26, in, f1) */ 209 1 27 2 0 1 0 /* RX_ER (PB27, in, f1) */ 223 3 0 1 0 1 0 /* TxD0 (PD0, out, f1) */ 224 3 1 1 0 1 0 /* TxD1 (PD1, out, f1) */ 225 3 6 2 0 1 0 /* RxD0 (PD6, in, f1) */ [all …]
|
/linux/drivers/gpu/drm/amd/display/dmub/src/ |
H A D | dmub_reg.h | 65 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument 67 FN(reg, f1), v1, \ 70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 72 FN(reg, f1), v1, \ 76 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 78 FN(reg, f1), v1, \ 92 #define REG_UPDATE_2(reg, f1, v1, f2, v2) \ argument 94 FN(reg, f1), v1,\ 97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \ argument 99 FN(reg, f1), v1, \ [all …]
|
/linux/tools/bootconfig/scripts/ |
H A D | ftrace.sh | 23 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/arch/powerpc/tools/ |
H A D | head_check.sh | 52 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_… 70 start_text_addr=$(grep " t start_text$" .tmp_symbols.txt | cut -d' ' -f1)
|
/linux/block/partitions/ |
H A D | ibm.c | 180 struct vtoc_format1_label f1; in find_vol1_partitions() local 194 memcpy(&f1, data, sizeof(struct vtoc_format1_label)); in find_vol1_partitions() 197 if (f1.DS1FMTID == _ascebc['4'] in find_vol1_partitions() 198 || f1.DS1FMTID == _ascebc['5'] in find_vol1_partitions() 199 || f1.DS1FMTID == _ascebc['7'] in find_vol1_partitions() 200 || f1.DS1FMTID == _ascebc['9']) { in find_vol1_partitions() 206 if (f1.DS1FMTID != _ascebc['1'] && in find_vol1_partitions() 207 f1.DS1FMTID != _ascebc['8']) in find_vol1_partitions() 210 offset = cchh2blk(&f1.DS1EXT1.llimit, geo); in find_vol1_partitions() 211 size = cchh2blk(&f1.DS1EXT1.ulimit, geo) - in find_vol1_partitions()
|
/linux/Documentation/power/ |
H A D | video.rst | 105 Acer TM 660 ??? [#f1]_ 118 Compal CL-50 ??? [#f1]_ 125 Dell Inspiron 4000 ??? [#f1]_ 126 Dell Inspiron 500m ??? [#f1]_ 129 Dell Inspiron 600m ??? [#f1]_ 130 Dell Inspiron 8200 ??? [#f1]_ 131 Dell Inspiron 8500 ??? [#f1]_ 132 Dell Inspiron 8600 ??? [#f1]_ 137 HP NX7000 ??? [#f1]_ 151 IBM TP R40 2722B3G ??? [#f1]_ [all …]
|
/linux/arch/s390/include/asm/ |
H A D | fpu-insn.h | 39 static __always_inline void fpu_cefbr(u8 f1, s32 val) in fpu_cefbr() argument 43 : [f1] "I" (f1), [val] "d" (val) in fpu_cefbr() 58 static __always_inline void fpu_debr(u8 f1, u8 f2) in fpu_debr() argument 62 : [f1] "I" (f1), [f2] "I" (f2) in fpu_debr() 75 static __always_inline void fpu_ldgr(u8 f1, u32 val) in fpu_ldgr() argument 79 : [f1] "I" (f1), [val] "d" (val) in fpu_ldgr()
|
/linux/arch/x86/crypto/ |
H A D | curve25519-x86_64.c | 43 static inline u64 add_scalar(u64 *out, const u64 *f1, u64 f2) in add_scalar() argument 68 : "r"(out), "r"(f1) in add_scalar() 75 static inline void fadd(u64 *out, const u64 *f1, const u64 *f2) in fadd() argument 111 : "r"(out), "r"(f1) in fadd() 116 static inline void fsub(u64 *out, const u64 *f1, const u64 *f2) in fsub() argument 153 : "r"(out), "r"(f1), "r"(f2) in fsub() 159 static inline void fmul(u64 *out, const u64 *f1, const u64 *f2, u64 *tmp) in fmul() argument 284 : "+&r"(f1), "+&r"(f2), "+&r"(tmp) in fmul() 294 static inline void fmul2(u64 *out, const u64 *f1, const u64 *f2, u64 *tmp) in fmul2() argument 535 : "+&r"(f1), "+&r"(f2), "+&r"(tmp) in fmul2() [all …]
|
/linux/Documentation/admin-guide/media/ |
H A D | cx23885-cardlist.rst | 99 - 0070:2251, 0070:22f1 107 - 14f1:8651 111 - 14f1:8657 127 - 14f1:8578 151 - 14f1:8502
|