| /OK3568_Linux_fs/kernel/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__); \ 41 #define INDIRECT_CALL_1(f, f1, ...) f(__VA_ARGS__) argument 42 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__) argument [all …]
|
| H A D | dma-fence.h | 454 static inline bool __dma_fence_is_later(u64 f1, u64 f2, in __dma_fence_is_later() argument 462 return f1 > f2; in __dma_fence_is_later() 464 return (int)(lower_32_bits(f1) - lower_32_bits(f2)) > 0; in __dma_fence_is_later() 475 static inline bool dma_fence_is_later(struct dma_fence *f1, in dma_fence_is_later() argument 478 if (WARN_ON(f1->context != f2->context)) in dma_fence_is_later() 481 return __dma_fence_is_later(f1->seqno, f2->seqno, f1->ops); in dma_fence_is_later() 493 static inline struct dma_fence *dma_fence_later(struct dma_fence *f1, in dma_fence_later() argument 496 if (WARN_ON(f1->context != f2->context)) in dma_fence_later() 504 if (dma_fence_is_later(f1, f2)) in dma_fence_later() 505 return dma_fence_is_signaled(f1) ? NULL : f1; in dma_fence_later()
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/futex/functional/ |
| H A D | futex_wait_wouldblock.c | 42 futex_t f1 = FUTEX_INITIALIZER; in main() local 68 info("Calling futex_wait on f1: %u @ %p with val=%u\n", f1, &f1, f1+1); in main() 69 res = futex_wait(&f1, f1+1, &to, FUTEX_PRIVATE_FLAG); 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_wait_timeout.c | 42 futex_t f1 = FUTEX_INITIALIZER; in main() local 77 info("Calling futex_wait on f1: %u @ %p\n", f1, &f1); in main() 78 res = futex_wait(&f1, f1, &to, FUTEX_PRIVATE_FLAG); in main()
|
| H A D | futex_requeue_pi.c | 39 futex_t f1 = FUTEX_INITIALIZER; variable 119 old_val = f1; in waiterfn() 122 &f1, f1, &f2); in waiterfn() 123 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout, in waiterfn() 164 old_val = f1; in broadcast_wakerfn() 165 args->ret = futex_cmp_requeue_pi(&f1, old_val, &f2, nr_wake, nr_requeue, in broadcast_wakerfn() 216 old_val = f1; in signal_wakerfn() 217 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()
|
| /OK3568_Linux_fs/kernel/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`
|
| /OK3568_Linux_fs/kernel/arch/powerpc/tools/ |
| H A D | head_check.sh | 52 vma=$(cat .tmp_symbols.txt | grep -e " [TA] _stext$" | cut -d' ' -f1) 56 start_head_addr=$(cat .tmp_symbols.txt | grep " t start_first_256B$" | cut -d' ' -f1) 66 top_vma=$(echo $vma | cut -d'0' -f1) 68 expected_start_text_addr=$(cat .tmp_symbols.txt | grep " a text_start$" | cut -d' ' -f1 | sed "s/^0… 70 start_text_addr=$(cat .tmp_symbols.txt | grep " t start_text$" | cut -d' ' -f1)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | align.h | 69 static align_flags max (const align_flags f0, const align_flags f1) in max() argument 71 int log0 = MAX (f0.levels[0].log, f1.levels[0].log); in max() 72 int maxskip0 = MAX (f0.levels[0].maxskip, f1.levels[0].maxskip); in max() 73 int log1 = MAX (f0.levels[1].log, f1.levels[1].log); in max() 74 int maxskip1 = MAX (f0.levels[1].maxskip, f1.levels[1].maxskip); in max()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | align.h | 69 static align_flags max (const align_flags f0, const align_flags f1) in max() argument 71 int log0 = MAX (f0.levels[0].log, f1.levels[0].log); in max() 72 int maxskip0 = MAX (f0.levels[0].maxskip, f1.levels[0].maxskip); in max() 73 int log1 = MAX (f0.levels[1].log, f1.levels[1].log); in max() 74 int maxskip1 = MAX (f0.levels[1].maxskip, f1.levels[1].maxskip); in max()
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/kernel/block/partitions/ |
| H A D | ibm.c | 145 struct vtoc_format1_label f1; in find_vol1_partitions() local 159 memcpy(&f1, data, sizeof(struct vtoc_format1_label)); in find_vol1_partitions() 162 if (f1.DS1FMTID == _ascebc['4'] in find_vol1_partitions() 163 || f1.DS1FMTID == _ascebc['5'] in find_vol1_partitions() 164 || f1.DS1FMTID == _ascebc['7'] in find_vol1_partitions() 165 || f1.DS1FMTID == _ascebc['9']) { in find_vol1_partitions() 171 if (f1.DS1FMTID != _ascebc['1'] && in find_vol1_partitions() 172 f1.DS1FMTID != _ascebc['8']) in find_vol1_partitions() 175 offset = cchh2blk(&f1.DS1EXT1.llimit, geo); in find_vol1_partitions() 176 size = cchh2blk(&f1.DS1EXT1.ulimit, geo) - in find_vol1_partitions()
|
| /OK3568_Linux_fs/kernel/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() 76 static inline void fadd(u64 *out, const u64 *f1, const u64 *f2) in fadd() argument 112 : "r" (out), "r" (f1) in fadd() 118 static inline void fsub(u64 *out, const u64 *f1, const u64 *f2) in fsub() argument 155 : "r" (out), "r" (f1), "r" (f2) in fsub() 162 static inline void fmul(u64 *out, const u64 *f1, const u64 *f2, u64 *tmp) in fmul() argument 233 : "+&r" (tmp), "+&r" (f1), "+&r" (out), "+&r" (f2) in fmul() 243 static inline void fmul2(u64 *out, const u64 *f1, const u64 *f2, u64 *tmp) in fmul2() argument 378 : "+&r" (tmp), "+&r" (f1), "+&r" (out), "+&r" (f2) in fmul2() [all …]
|
| /OK3568_Linux_fs/buildroot/support/testing/tests/package/ |
| H A D | sample_python_pytest.py | 8 def f1(): function 19 def test_2(f1): argument 21 assert f1 == 15
|
| H A D | sample_python_pytest_asyncio.py | 9 def f1(): function 22 async def test_2(f1): argument 24 assert f1 == 15
|
| /OK3568_Linux_fs/external/mpp/mpp/base/ |
| H A D | mpp_frame.cpp | 213 MppFrameImpl *f1 = (MppFrameImpl *)frame1; in mpp_frame_info_cmp() local 215 if ((f0->width == f1->width) && in mpp_frame_info_cmp() 216 (f0->height == f1->height) && in mpp_frame_info_cmp() 217 (f0->hor_stride == f1->hor_stride) && in mpp_frame_info_cmp() 218 (f0->ver_stride == f1->ver_stride) && in mpp_frame_info_cmp() 219 ((f0->fmt & ~MPP_FRAME_HDR_MASK) == (f1->fmt & ~MPP_FRAME_HDR_MASK)) && in mpp_frame_info_cmp() 220 (f0->buf_size == f1->buf_size)) { in mpp_frame_info_cmp()
|
| /OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/ |
| H A D | m88ds3103.c | 455 u8 sm, f0 = 0, f1 = 0, f2 = 0, f3 = 0; in m88ds3103b_set_mclk() local 489 f1 = div / N; in m88ds3103b_set_mclk() 490 f2 = div - f1; in m88ds3103b_set_mclk() 496 f1 = (div - f0) / (N - 1); in m88ds3103b_set_mclk() 497 f2 = div - f0 - f1; in m88ds3103b_set_mclk() 503 f1 = (div - f0) / (N - 1); in m88ds3103b_set_mclk() 504 f2 = (div - f0 - f1) / (N - 2); in m88ds3103b_set_mclk() 505 f3 = div - f0 - f1 - f2; in m88ds3103b_set_mclk() 510 f1 = 16; in m88ds3103b_set_mclk() 520 if (f1 == 16) in m88ds3103b_set_mclk() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | test_global_func6.c | 8 int f1(struct __sk_buff *skb) in f1() function 18 return f1(skb) + f3(val, skb + 1); /* type mismatch */ in f2() 30 return f1(skb) + f2(2, skb) + f3(3, skb); in test_cls()
|
| H A D | test_global_func5.c | 8 int f1(struct __sk_buff *skb) in f1() function 18 return f1(skb) + f3(val, (void *)&val); /* type mismatch */ in f2() 30 return f1(skb) + f2(2, skb) + f3(3, skb); in test_cls()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/ftrace/test.d/ |
| H A D | functions | 21 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 22 file=`echo $line | cut -f1 -d:` 27 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 28 file=`echo $line | cut -f1 -d:` 43 echo 0 > `echo $line | cut -f1 -d:` 60 name=`echo $t | cut -d: -f1 | cut -d' ' -f1`
|
| /OK3568_Linux_fs/kernel/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
|