/openbmc/linux/drivers/gpu/drm/amd/display/dc/inc/ |
H A D | reg_helper.h | 72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 76 FN(reg, f3), v3) 78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 82 FN(reg, f3), v3,\ 85 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 90 FN(reg, f3), v3,\ 94 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 99 FN(reg, f3), v3,\ 104 #define REG_SET_7(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 109 FN(reg, f3), v3,\ [all …]
|
/openbmc/linux/include/linux/ |
H A D | indirect_call_wrapper.h | 26 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) \ argument 28 likely(f == f3) ? f3(__VA_ARGS__) : \ 31 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) \ argument 34 INDIRECT_CALL_3(f, f3, f2, f1, __VA_ARGS__); \ 44 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) f(__VA_ARGS__) argument 45 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) f(__VA_ARGS__) argument
|
/openbmc/linux/drivers/gpu/drm/amd/display/dmub/src/ |
H A D | dmub_reg.h | 70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 74 FN(reg, f3), v3) 76 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 80 FN(reg, f3), v3, \ 97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \ argument 101 FN(reg, f3), v3) 103 #define REG_UPDATE_4(reg, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 107 FN(reg, f3), v3, \
|
/openbmc/u-boot/scripts/ |
H A D | Lindent | 4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1` 5 V2=`echo $RES | cut -d' ' -f3 | cut -d'.' -f2` 6 V3=`echo $RES | cut -d' ' -f3 | cut -d'.' -f3`
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_global_func5.c | 14 int f3(int, struct __sk_buff *skb); 19 return f1(skb) + f3(val, (void *)&val); /* type mismatch */ in f2() 23 int f3(int val, struct __sk_buff *skb) in f3() function 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func5()
|
H A D | test_global_func6.c | 14 int f3(int, struct __sk_buff *skb); 19 return f1(skb) + f3(val, skb + 1); /* type mismatch */ in f2() 23 int f3(int val, struct __sk_buff *skb) in f3() function 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func6()
|
H A D | test_global_func1.c | 28 int f3(int, struct __sk_buff *skb, int); 33 return f1(skb) + f3(val, skb, 1); in f2() 37 int f3(int val, struct __sk_buff *skb, int var) in f3() function 50 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func1()
|
H A D | test_global_func2.c | 26 int f3(int, struct __sk_buff *skb, int); 31 return f1(skb) + f3(val, skb, 1); in f2() 35 int f3(int val, struct __sk_buff *skb, int var) in f3() function 48 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func2()
|
H A D | test_global_func4.c | 21 int f3(int val, struct __sk_buff *skb, int var) in f3() function 29 return f3(1, skb, 2); in f4()
|
H A D | test_global_func3.c | 21 int f3(int val, struct __sk_buff *skb, int var) in f3() function 29 return f3(1, skb, 2); in f4()
|
/openbmc/linux/drivers/dma-buf/ |
H A D | st-dma-fence-unwrap.c | 257 struct dma_fence *fence, *f1, *f2, *f3; in unwrap_merge() local 275 f3 = dma_fence_unwrap_merge(f1, f2); in unwrap_merge() 276 if (!f3) { in unwrap_merge() 281 dma_fence_unwrap_for_each(fence, &iter, f3) { in unwrap_merge() 299 dma_fence_put(f3); in unwrap_merge() 309 struct dma_fence *fence, *f1, *f2, *f3, *f4, *f5; in unwrap_merge_complex() local 325 f3 = dma_fence_unwrap_merge(f1, f2); in unwrap_merge_complex() 326 if (!f3) in unwrap_merge_complex() 335 f5 = dma_fence_unwrap_merge(f3, f4, dma_fence_get_stub()); in unwrap_merge_complex() 362 dma_fence_put(f3); in unwrap_merge_complex()
|
/openbmc/qemu/tests/tcg/arm/ |
H A D | test-arm-iwmmxt.S | 26 ldfe f3, [r1, #8] 28 adfdp f3, f3, f1 32 adfd f1, f1, f3
|
/openbmc/linux/scripts/ |
H A D | Lindent | 6 RES=`indent --version | cut -d' ' -f3` 12 V3=`echo $RES | cut -d'.' -f3`
|
/openbmc/linux/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 f3 = 0; in m88ds3103b_set_mclk() 496 f3 = 0; in m88ds3103b_set_mclk() 503 f3 = div - f0 - f1 - f2; in m88ds3103b_set_mclk() 510 f3 = 16; in m88ds3103b_set_mclk() 528 if (f3 == 16) in m88ds3103b_set_mclk() 529 f3 = 0; in m88ds3103b_set_mclk() 530 else if ((f3 < 8) && (f3 != 0)) in m88ds3103b_set_mclk() 531 f3 = 8; in m88ds3103b_set_mclk() 539 f3 = 0; in m88ds3103b_set_mclk() [all …]
|
/openbmc/qemu/tests/tcg/xtensa/ |
H A D | test_lsc.S | 42 wfr f3, a3 50 ssip f3, a2, 8 52 ssi f3, a2, 0 184 movdf f3, 0x40800000, 0 190 sdip f3, a2, 16
|
/openbmc/linux/tools/perf/tests/shell/ |
H A D | stat_bpf_counters_cgrp.sh | 34 find_cgroups_self_cgrp=$(grep perf_event /proc/self/cgroup | cut -d: -f3) 37 find_cgroups_self_cgrp=$(grep ^0: /proc/self/cgroup | cut -d: -f3)
|
/openbmc/openbmc/meta-facebook/meta-ventura/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | frontled | 13 traynum=$(echo "$MESSAGE" | cut -d '-' -f3 | cut -d ' ' -f1) 22 traynum=$(echo "$MESSAGE" | cut -d '-' -f3 | cut -d ' ' -f1)
|
/openbmc/linux/drivers/pinctrl/qcom/ |
H A D | pinctrl-lpass-lpi.h | 46 #define LPI_PINGROUP(id, soff, f1, f2, f3, f4) \ argument 57 LPI_MUX_##f3, \
|
/openbmc/docs/style/cpp/ |
H A D | .clang-tidy | 15 # [1] https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f3-keep-functions-short-and-simp… 17 # [3] https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#f3-keep-functions-short-and-simp…
|
/openbmc/linux/drivers/media/tuners/ |
H A D | m88rs6000t.c | 29 u8 N, f0 = 0, f1 = 0, f2 = 0, f3 = 0; in m88rs6000t_set_demod_mclk() local 68 f3 = 0; in m88rs6000t_set_demod_mclk() 74 f3 = 0; in m88rs6000t_set_demod_mclk() 80 f3 = div - f0 - f1 - f2; in m88rs6000t_set_demod_mclk() 86 f3 = 16; in m88rs6000t_set_demod_mclk() 95 if (f3 == 16) in m88rs6000t_set_demod_mclk() 96 f3 = 0; in m88rs6000t_set_demod_mclk() 104 reg1E = ((f3 << 4) + f2) & 0xFF; in m88rs6000t_set_demod_mclk()
|
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/ |
H A D | 0001-cut-Fix-s-flag-to-omit-blank-lines.patch | 48 @@ -65,6 +65,15 @@ testing "cut with -d -f( ) -s" "cut -d' ' -f3 -s input && echo yes" "yes\n" "$in 49 testing "cut with -d -f(a) -s" "cut -da -f3 -s input" "n\nsium:Jim\n\ncion:Ed\n" "$input" "" 50 testing "cut with -d -f(a) -s -n" "cut -da -f3 -s -n input" "n\nsium:Jim\n\ncion:Ed\n" "$input" ""
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | fpregdef.h | 26 #define fv1f $f3 85 #define ft13 $f3
|
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/ |
H A D | pinmux.c | 257 #define PINALL(pingrp, f0, f1, f2, f3, mux, pupd) \ argument 263 PMUX_FUNC_ ## f3, \ 270 #define PIN(pingrp, f0, f1, f2, f3) \ argument 271 PINALL(pingrp, f0, f1, f2, f3, MUXCTL_##pingrp, PUCTL_##pingrp) 274 #define PINP(pingrp, f0, f1, f2, f3, pupd) \ argument 275 PINALL(pingrp, f0, f1, f2, f3, MUXCTL_##pingrp, PUCTL_##pupd)
|
/openbmc/linux/arch/sparc/crypto/ |
H A D | md5_asm.S | 15 ld [%o0 + 0x0c], %f3 37 st %f3, [%o0 + 0x0c]
|
H A D | sha1_asm.S | 14 ld [%o0 + 0x0c], %f3 38 st %f3, [%o0 + 0x0c]
|