Home
last modified time | relevance | path

Searched full:f2 (Results 1 – 25 of 186) sorted by relevance

12345678

/openbmc/qemu/tests/tcg/xtensa/
H A Dtest_fp0_arith.S31 test_op2 add.s, f0, f1, f2, 0x3fc00000, 0x34400000, \
51 test_op2 add.s, f0, f1, f2, 0x7f800000, 0xff800000, \
71 test_op2 add.s, f2, f3, f4, 0x7fbfffff, 0x7f800001, \
97 test_op2 add.s, f2, f3, f4, 0x7fbfffff, 0x7f800001, \
126 test_op2 mul.s, f0, f1, f2, 0x3f800001, 0x3f800001, \
144 test_op3 madd.s, f0, f1, f2, f0, 0, 0x3f800001, 0x3f800001, \
150 test_op3 madd.s, f0, f1, f2, f0, 0xbf800002, 0x3f800001, 0x3f800001, \
158 test_op3 madd.s, f0, f1, f2, f0, F32_QNAN(1), F32_1, F32_1, \
161 test_op3 madd.s, f0, f1, f2, f0, F32_1, F32_QNAN(2), F32_1, \
164 test_op3 madd.s, f0, f1, f2, f0, F32_1, F32_1, F32_QNAN(3), \
[all …]
H A Dtest_dfp0_arith.S45 test_op2 add.d, f0, f1, f2, F64_PINF, F64_NINF, \
82 test_op2 mul.d, f0, f1, f2, F64_1 | 1, F64_1 | 1, \
100 test_op3 madd.d, f0, f1, f2, f0, F64_0, F64_1 | 1, F64_1 | 1, \
106 test_op3 madd.d, f0, f1, f2, f0, \
114 test_op3 madd.d, f0, f1, f2, f0, F64_QNAN(1), F64_1, F64_1, \
117 test_op3 madd.d, f0, f1, f2, f0, F64_1, F64_QNAN(2), F64_1, \
120 test_op3 madd.d, f0, f1, f2, f0, F64_1, F64_1, F64_QNAN(3), \
124 test_op3 madd.d, f0, f1, f2, f0, F64_QNAN(1), F64_QNAN(2), F64_1, \
127 test_op3 madd.d, f0, f1, f2, f0, F64_QNAN(1), F64_1, F64_QNAN(3), \
130 test_op3 madd.d, f0, f1, f2, f0, F64_1, F64_QNAN(2), F64_QNAN(3), \
[all …]
H A Dtest_lsc.S15 lsi f2, a2, 8
19 lsiu f2, a2, 8
29 rfr a2, f2
163 ldi f2, a2, 16
173 rfrd a2, f2
H A Dtest_fp0_div.S59 test_op2 div_s, f0, f1, f2, 0x40000000, 0x40400000, \
70 test_op2 div_s, f0, f1, f2, F32_MAX, F32_0_5, \
75 test_op2 div_s, f0, f1, f2, F32_0_5, F32_MAX, \
/openbmc/qemu/scripts/coccinelle/
H A Dremove_local_err.cocci7 expression F2;
20 - F2(ARGS, &LOCAL_ERR);
22 + F2(ARGS, ERRP);
24 - V = F2(ARGS, &LOCAL_ERR);
26 + V = F2(ARGS, ERRP);
/openbmc/qemu/target/s390x/tcg/
H A Dfpu_helper.c218 uint64_t HELPER(aeb)(CPUS390XState *env, uint64_t f1, uint64_t f2) in HELPER()
220 float32 ret = float32_add(f1, f2, &env->fpu_status); in HELPER()
226 uint64_t HELPER(adb)(CPUS390XState *env, uint64_t f1, uint64_t f2) in HELPER()
228 float64 ret = float64_add(f1, f2, &env->fpu_status); in HELPER()
242 uint64_t HELPER(seb)(CPUS390XState *env, uint64_t f1, uint64_t f2) in HELPER()
244 float32 ret = float32_sub(f1, f2, &env->fpu_status); in HELPER()
250 uint64_t HELPER(sdb)(CPUS390XState *env, uint64_t f1, uint64_t f2) in HELPER()
252 float64 ret = float64_sub(f1, f2, &env->fpu_status); in HELPER()
266 uint64_t HELPER(deb)(CPUS390XState *env, uint64_t f1, uint64_t f2) in HELPER()
268 float32 ret = float32_div(f1, f2, &env->fpu_status); in HELPER()
[all …]
H A Dinsn-format.h.inc2 /* NAME F1, F2... */
5 F2(RI_a, R(1, 8), I(2,16,16))
6 F2(RI_b, R(1, 8), I(2,16,16))
7 F2(RI_c, M(1, 8), I(2,16,16))
15 F2(RIL_a, R(1, 8), I(2,16,32))
16 F2(RIL_b, R(1, 8), I(2,16,32))
17 F2(RIL_c, M(1, 8), I(2,16,32))
21 F2(RR_a, R(1, 8), R(2,12))
22 F2(RR_b, M(1, 8), R(2,12))
23 F2(RRE, R(1,24), R(2,28))
[all …]
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dtest_patching.py79 f2 = f.find_match(Function, 'function2')
97 assert not f2.contains(st1)
98 assert not f2.contains(st2)
99 assert not f2.contains(st2)
100 assert not f2.contains(st3)
101 assert not f2.contains(st4)
102 assert f2.contains(st5)
103 assert f2.contains(st6)
104 assert not f2.contains(st7)
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/
H A DKconfig48 default F2
50 config F2 config
51 bool "F2"
H A Dexpected_stderr29 Kconfig:50: symbol F2 depends on F1
30 Kconfig:48: symbol F1 default value contains F2
/openbmc/u-boot/lib/
H A Dmd5.c169 #define F2(x, y, z) F1(z, x, y) macro
209 MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5); in MD5Transform()
210 MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9); in MD5Transform()
211 MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14); in MD5Transform()
212 MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); in MD5Transform()
213 MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5); in MD5Transform()
214 MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9); in MD5Transform()
215 MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); in MD5Transform()
216 MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); in MD5Transform()
217 MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); in MD5Transform()
[all …]
/openbmc/qemu/target/hppa/
H A Dop_helper.c373 int f2 = sextract64(r2, i, 16); in HELPER() local
374 int fr = f1 + f2; in HELPER()
389 int f2 = sextract64(r2, i, 16); in HELPER() local
390 int fr = f1 + f2; in HELPER()
405 int f2 = extract64(r2, i, 16); in HELPER() local
406 int fr = f1 + f2; in HELPER()
419 int f2 = sextract64(r2, i, 16); in HELPER() local
420 int fr = f1 - f2; in HELPER()
435 int f2 = sextract64(r2, i, 16); in HELPER() local
436 int fr = f1 - f2; in HELPER()
[all …]
/openbmc/u-boot/cmd/
H A Dpcmcia.c161 uchar f2 = *(p+4); in print_fixed() local
170 if (f2 & CISTPL_IDE_HAS_SLEEP) in print_fixed()
173 if (f2 & CISTPL_IDE_HAS_STANDBY) in print_fixed()
176 if (f2 & CISTPL_IDE_HAS_IDLE) in print_fixed()
179 if (f2 & CISTPL_IDE_LOW_POWER) in print_fixed()
182 if (f2 & CISTPL_IDE_REG_INHIBIT) in print_fixed()
185 if (f2 & CISTPL_IDE_HAS_INDEX) in print_fixed()
188 if (f2 & CISTPL_IDE_IOIS16) in print_fixed()
/openbmc/openbmc/poky/meta/classes/
H A Dextrausers.bbclass33 remaining=`echo $user_group_settings | cut -d ';' -f2-`
36 opts=`echo $setting | cut -d ' ' -f2-`
71 remaining=`echo $remaining | cut -d ';' -f2-`
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dcpan.bbclass40 f2=`echo $f | sed -e 's/.PL//'`
41 test -f $f2 || continue
45 $f2
/openbmc/u-boot/drivers/pinctrl/mscc/
H A Dmscc-common.h35 #define MSCC_P(p, f0, f1, f2) \ argument
39 FUNC_GPIO, FUNC_##f0, FUNC_##f1, FUNC_##f2, \
/openbmc/u-boot/arch/x86/include/asm/arch-broadwell/
H A Dserialio.h27 #define SIO_IOBP_PORTCTRL4 0xcb000250 /* I2C1 D21:F2 */
41 #define SIO_IOBP_FUNCDIS2 0xce00aa87 /* I2C1 D21:F2 */
52 #define SIO_ID_I2C1 2 /* D21:F2 */
/openbmc/phosphor-webui/app/common/directives/
H A Dvt100plus.js13 var F2 = 113; variable
37 F2 key | <ESC>2
88 case F2:
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/
H A DUTIL.interface.yaml57 - name: F2
60 F2 keyword.
/openbmc/openbmc/meta-facebook/meta-ventura/recipes-phosphor/sensors/dbus-sensors/
H A Ddeassert-leak-handler5 LeakType=$(echo "$DetectorName" | cut -d'_' -f2)
65 | cut -d' ' -f2 | cut -d'.' -f6-7 | tr -d '"')
70 | cut -d' ' -f2 | cut -d'.' -f6-7 | tr -d '"')
/openbmc/openbmc/poky/scripts/
H A Dbitbake-prserv-tool19 s=`bitbake -e | grep ^CACHE= | cut -f2 -d\"`
36 s=`bitbake -R conf/prexport.conf -e | grep ^PRSERV_DUMPFILE= | cut -f2 -d\"`
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/
H A Dpinmux.c257 #define PINALL(pingrp, f0, f1, f2, f3, mux, pupd) \ argument
262 PMUX_FUNC_ ## f2, \
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/phosphor-state-manager/scripts/
H A Dhost-reboot16 | cut -d ' ' -f2
24 | cut -d '"' -f2
/openbmc/openbmc/poky/meta/recipes-core/systemd/
H A Ddlopen-deps.inc18 with open(f.name, "rb") as f2:
19 return f2.read()
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-s/
H A DAnik-F2_C-111.1W1 # Anik F2 @ 111.1W C-BAND

12345678