Home
last modified time | relevance | path

Searched full:f1 (Results 1 – 25 of 193) 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, \
68 test_op2 add.s, f15, f0, f1, 0x7f800001, 0x7fbfffff, \
94 test_op2 add.s, f15, f0, f1, 0x7f800001, 0x7fbfffff, \
112 test_op2 sub.s, f0, f1, f0, 0x3f800001, 0x33800000, \
115 test_op2 sub.s, f0, f1, f1, 0x3f800002, 0x33800000, \
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, \
[all …]
H A Dtest_fp1.S42 test_ord \op b0, f0, f1, 0x3f800000, 0x3f800000, \aa, FSR__ /* ord == ord */
50 test_ord \op b8, f0, f1, 0x3f800000, 0x7fc00000, \aN, \qnan_sr /* ord +QNaN */
101 test_cond moveqz.s, f0, f1, a3, 0, 0x3f800000, 0x3f800000
103 test_cond moveqz.s, f0, f1, a3, 0, 0x3f800000, 0
108 test_cond movnez.s, f0, f1, a3, 0, 0x3f800000, 0
110 test_cond movnez.s, f0, f1, a3, 0, 0x3f800000, 0x3f800000
115 test_cond movltz.s, f0, f1, a3, 0, 0x3f800000, 0x3f800000
117 test_cond movltz.s, f0, f1, a3, 0, 0x3f800000, 0
119 test_cond movltz.s, f0, f1, a3, 0, 0x3f800000, 0
124 test_cond movgez.s, f0, f1, a3, 0, 0x3f800000, 0
[all …]
H A Dtest_dfp0_arith.S45 test_op2 add.d, f0, f1, f2, F64_PINF, F64_NINF, \
61 test_op2 add.d, f15, f0, f1, F64_SNAN(1), F64_SNAN(2), \
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), \
[all …]
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, \
H A Dtest_lsc.S13 lsi f1, a2, 4
26 rfr a2, f1
162 ldi f1, a2, 8
170 rfrd a2, f1
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dtest_patching.py78 f1 = f.find_match(Function, 'function1')
88 assert not f1.contains(st1)
89 assert not f1.contains(st2)
90 assert not f1.contains(st2)
91 assert f1.contains(st3)
92 assert f1.contains(st4)
93 assert not f1.contains(st5)
94 assert not f1.contains(st6)
95 assert not f1.contains(st7)
/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-data.h.inc36 F(0xb31a, ADBR, RRE, Z, f1, f2, new, f1, adb, f64, IF_BFP)
39 F(0xed1a, ADB, RXE, Z, f1, m2_64, new, f1, adb, f64, IF_BFP)
163 F(0xb372, CPSDR, RRF_b, FPSSH, f3, f2, new, f1, cps, 0, IF_AFP1 | IF_AFP2 | IF_AFP3)
174 F(0xb319, CDBR, RRE, Z, f1, f2, 0, 0, cdb, 0, IF_BFP)
177 F(0xed19, CDB, RXE, Z, f1, m2_64, 0, 0, cdb, 0, IF_BFP)
180 F(0xb318, KDBR, RRE, Z, f1, f2, 0, 0, kdb, 0, IF_BFP)
183 F(0xed18, KDB, RXE, Z, f1, m2_64, 0, 0, kdb, 0, IF_BFP)
313 F(0xb395, CDFBR, RRF_e, Z, 0, r2_32s, new, f1, cdgb, 0, IF_BFP)
316 F(0xb3a5, CDGBR, RRF_e, Z, 0, r2_o, new, f1, cdgb, 0, IF_BFP)
327 F(0xb391, CDLFBR, RRF_e, FPE, 0, r2_32u, new, f1, cdlgb, 0, IF_BFP)
[all …]
/openbmc/qemu/tests/decode/
H A Derr_field8.decode5 &f1 f1 a
7 @fmt ........ ........ ........ .... a:4 &f1
8 insn 00000000 00000000 00000000 0000 .... @fmt f1=%field1
/openbmc/qemu/tests/qemu-iotests/
H A D24358 du -b $TEST_IMG | cut -f1
62 [ $(du -B1 $TEST_IMG | cut -f1) -lt 1048576 ] && echo "low" || echo "high"
76 du -b $TEST_IMG | cut -f1
78 du -b $TEST_IMG.data | cut -f1
82 [ $(du -B1 $TEST_IMG | cut -f1) -lt 1048576 ] && echo "low" || echo "high"
84 [ $(du -B1 $TEST_IMG.data | cut -f1) -lt 2097152 ] && echo "low" || echo "high"
H A D10982 _make_test_img $(du -b "$TEST_IMG.src" | cut -f1) | _filter_img_create_size
108 _make_test_img $(du -b "$TEST_IMG.src" | cut -f1) | _filter_img_create_size
124 _make_test_img $(du -b "$TEST_IMG.src" | cut -f1) | _filter_img_create_size
/openbmc/u-boot/lib/
H A Dmd5.c165 /* The four core functions - F1 is optimized somewhat */
167 /* #define F1(x, y, z) (x & y | ~x & z) */
168 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
169 #define F2(x, y, z) F1(z, x, y)
192 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
193 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
194 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
195 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
196 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
197 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
[all …]
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/
H A DKconfig46 config F1 config
47 bool "F1"
52 depends on F1
H A Dexpected_stderr29 Kconfig:50: symbol F2 depends on F1
30 Kconfig:48: symbol F1 default value contains F2
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dksample.py61 self.cmd_and_check("lsmod | grep %s | cut -d\' \' -f1" % sysmbol_name, sysmbol_name)
80 self.cmd_and_check("lsmod | grep %s | cut -d\' \' -f1" % sysmbol_name, sysmbol_name)
96 self.cmd_and_check("lsmod | grep %s | cut -d\' \' -f1" % sysmbol_name, sysmbol_name)
135 … self.cmd_and_check("lsmod | grep trace_events_sample | cut -d\' \' -f1", "trace_events_sample")
168 self.cmd_and_check("lsmod | grep trace_printk | cut -d\' \' -f1", "trace_printk")
191 self.cmd_and_check("lsmod | grep data_breakpoint | cut -d\' \' -f1", "data_breakpoint")
208 … self.cmd_and_check("lsmod | grep configfs_sample | cut -d\' \' -f1 | head -n1", "configfs_sample")
229 self.cmd_and_check("lsmod | grep cn_test | cut -d\' \' -f1", "cn_test")
231 …self.cmd_and_check("cat /proc/net/connector | grep cn_test | head -n1 | cut -d\' \' -f1", "cn_test…
/openbmc/qemu/target/hppa/
H A Dop_helper.c372 int f1 = sextract64(r1, i, 16); in HELPER() local
374 int fr = f1 + f2; in HELPER()
388 int f1 = extract64(r1, i, 16); in HELPER() local
390 int fr = f1 + f2; in HELPER()
404 int f1 = extract64(r1, i, 16); in HELPER() local
406 int fr = f1 + f2; in HELPER()
418 int f1 = sextract64(r1, i, 16); in HELPER() local
420 int fr = f1 - f2; in HELPER()
434 int f1 = extract64(r1, i, 16); in HELPER() local
436 int fr = f1 - f2; in HELPER()
[all …]
/openbmc/openbmc-test-automation/data/
H A Dpldm_variables.py23 VERSION_BASE = {"VALUE": ["f1", "f0", "f0", "00"], "STRING": "1.0.0"}
24 VERSION_PLATFORM = {"VALUE": ["f1", "f2", "f0", "00"], "STRING": "1.2.0"}
25 VERSION_BIOS = {"VALUE": ["f1", "f1", "f1", "00"], "STRING": "1.0.0"}
26 VERSION_FRU = {"VALUE": ["f1", "f0", "f0", "00"], "STRING": "1.0.0"}
27 VERSION_OEM = {"VALUE": ["f1", "f0", "f0", "00"], "STRING": "1.0.0"}
/openbmc/openbmc/poky/meta/classes/
H A Dextrausers.bbclass32 setting=`echo $user_group_settings | cut -d ';' -f1`
35 cmd=`echo $setting | cut -d ' ' -f1`
70 setting=`echo $remaining | cut -d ';' -f1`
/openbmc/openbmc/poky/scripts/contrib/
H A Duncovered24 diff -u <(grep "$path" | grep -v '0%$' | cut -f1 -d: | sort) \
25 <(find $path | xargs file | grep 'Python script' | cut -f1 -d:| sort) | \
/openbmc/openbmc/poky/bitbake/lib/bblayers/
H A Daction.py168 for f1 in files:
169 f1full = os.sep.join([root, f1])
173 ext = os.path.splitext(f1)[1]
179 if f1 == 'layer.conf' and root.endswith('/conf'):
236 for f1 in files:
237 ext = os.path.splitext(f1)[1]
239 f1full = os.sep.join([root, f1])
/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.h26 #define SIO_IOBP_PORTCTRL3 0xcb000248 /* I2C0 D21:F1 */
40 #define SIO_IOBP_FUNCDIS1 0xce00aa47 /* I2C0 D21:F1 */
51 #define SIO_ID_I2C0 1 /* D21:F1 */
/openbmc/phosphor-webui/app/common/directives/
H A Dvt100plus.js12 var F1 = 112; variable
36 F1 key | <ESC>1
85 case F1:
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/
H A DUTIL.interface.yaml53 - name: F1
56 F1 keyword.
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/
H A Dpinmux.c257 #define PINALL(pingrp, f0, f1, f2, f3, mux, pupd) \ argument
261 PMUX_FUNC_ ## f1, \
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)

12345678