Home
last modified time | relevance | path

Searched refs:pair (Results 1 – 25 of 48) sorted by relevance

12

/qemu/tests/qtest/
H A Ddbus-display-test.c41 int pair[2]; in test_setup() local
45 g_assert_cmpint(qemu_socketpair(AF_UNIX, SOCK_STREAM, 0, pair), ==, 0); in test_setup()
47 qtest_qmp_add_client(*qts, "@dbus-display", pair[1]); in test_setup()
49 *conn = test_dbus_p2p_from_fd(pair[0]); in test_setup()
165 int pair[2]; in test_dbus_display_console() local
177 g_assert_cmpint(qemu_socketpair(AF_UNIX, SOCK_STREAM, 0, pair), ==, 0); in test_dbus_display_console()
180 idx = g_unix_fd_list_append(fd_list, pair[1], NULL); in test_dbus_display_console()
195 GINT_TO_POINTER(pair[0])); in test_dbus_display_console()
198 if (WSADuplicateSocketW(_get_osfhandle(pair[1]), in test_dbus_display_console()
205 close(pair[1]); in test_dbus_display_console()
H A Dvnc-display-test.c45 int pair[2]; in test_setup()
49 g_assert_cmpint(qemu_socketpair(AF_UNIX, SOCK_STREAM, 0, pair), ==, 0); in test_setup()
51 qtest_qmp_add_client(test->qts, "vnc", pair[1]); in test_setup()
61 vnc_connection_open_fd(test->conn, _get_osfhandle(pair[0])); in test_setup()
63 vnc_connection_open_fd(test->conn, pair[0]); in test_setup()
H A Dmigration-test.c2285 int pair[2]; in test_migrate_fd_start_hook() local
2288 ret = qemu_socketpair(PF_LOCAL, SOCK_STREAM, 0, pair); in test_migrate_fd_start_hook()
2292 qtest_qmp_fds_assert_success(to, &pair[0], 1, in test_migrate_fd_start_hook()
2295 close(pair[0]); in test_migrate_fd_start_hook()
2301 qtest_qmp_fds_assert_success(from, &pair[1], 1, in test_migrate_fd_start_hook()
2304 close(pair[1]); in test_migrate_fd_start_hook()
/qemu/tests/image-fuzzer/qcow2/
H A Dlayout.py563 pair = (lst[0], 1)
566 pair = (lst[i], pair[1] + 1)
568 pairs.append(pair)
569 pair = (lst[i], 1)
570 pairs.append(pair)
/qemu/docs/system/
H A Dvirtio-net-failover.rst6 is used to create a net_failover pair of devices.
8 The general idea is that we have a pair of devices, a (vfio-)pci and a
12 module will pair net devices with the same MAC address.
/qemu/tests/keys/
H A DREADME1 This folder contains a well-known ssh key pair used in QEMU tests.
/qemu/host/include/aarch64/host/
H A Dstore-insert-al16.h.inc25 * arithmetic into the load-exclusive/store-conditional pair.
/qemu/target/arm/
H A Dvfp_helper.c421 uint32_t HELPER(bfcvt_pair)(uint64_t pair, void *status) in HELPER()
423 bfloat16 lo = float32_to_bfloat16(extract64(pair, 0, 32), status); in HELPER()
424 bfloat16 hi = float32_to_bfloat16(extract64(pair, 32, 32), status); in HELPER()
1147 uint64_t pair = HELPER(fjcvtzs)(value, &env->vfp.fp_status); in HELPER() local
1148 uint32_t result = pair; in HELPER()
1149 uint32_t z = (pair >> 32) == 0; in HELPER()
/qemu/linux-headers/LICENSES/preferred/
H A DBSD-2-Clause5 tag/value pair into a comment according to the placement guidelines in
H A DBSD-3-Clause5 tag/value pair into a comment according to the placement guidelines in
/qemu/target/arm/tcg/
H A Dsme-fa64.decode56 # --10 110- ---- ---- ---- ---- ---- ---- # Load/store pair of FP registers
H A Dsme_helper.c962 static inline uint32_t f16mop_adj_pair(uint32_t pair, uint32_t pg, uint32_t neg) in f16mop_adj_pair() argument
968 pair ^= neg; in f16mop_adj_pair()
970 pair &= 0xffff0000u; in f16mop_adj_pair()
973 pair &= 0x0000ffffu; in f16mop_adj_pair()
975 return pair; in f16mop_adj_pair()
/qemu/tcg/
H A Dtcg.c2911 switch (arg_ct->pair) { in get_constraint_priority()
2998 if (def->args_ct[i].pair) { in process_op_defs()
3017 .pair = 2, in process_op_defs()
3022 def->args_ct[o].pair = 1; in process_op_defs()
3034 .pair = 1, in process_op_defs()
3039 def->args_ct[o].pair = 2; in process_op_defs()
3106 switch (def->args_ct[i].pair) { in process_op_defs()
3138 def->args_ct[i].pair = 3; in process_op_defs()
3139 def->args_ct[o2].pair = 3; in process_op_defs()
4883 switch (arg_ct->pair) { in tcg_reg_alloc_op()
[all …]
/qemu/target/hexagon/imported/
H A Dcompare.idef237 "Conditionally combine two words into a register pair",
245 "Conditionally combine two words into a register pair",
253 "Conditionally combine two words into a register pair",
261 "Conditionally combine two words into a register pair",
H A Dalu.idef267 "Combine two words into a register pair",
273 "Combine a word and an immediate into a register pair",
279 "Combine a word and an immediate into a register pair",
447 "logical AND pair",{ RddV=RssV&RttV;})
450 "logical OR pair",{ RddV=RssV|RttV;})
453 "logical eXclusive OR pair",{ RddV=RssV^RttV;})
456 "logical NOT pair",{ RddV=~RssV;})
459 "Sign extend 32-bit word to 64-bit pair",
/qemu/docs/tools/
H A Dvirtfs-proxy-helper.rst32 a socket pair or a named socket based on the command line parameter.
/qemu/crypto/
H A Dcipher-nettle.c.inc288 /* First key from pair is encode, second key is decode. */
314 /* First key from pair is encode, second key is decode. */
340 /* First key from pair is encode, second key is decode. */
/qemu/docs/devel/
H A Datomics.rst350 will pair with a release operation and vice versa. This rule of thumb is
359 it can pair with any other atomic operation. Here is an example:
373 Note that a load-store pair only counts if the two operations access the
H A Dmulti-thread-tcg.rst337 The second type offer a pair of load/store instructions which offer a
340 pair where the strex instruction will return a flag indicating a
H A Dlockcnt.txt85 governing the counter/mutex pair then are the following:
H A Dtcg-plugins.rst428 Class: ldst noalloc pair (3264433 hits)
429 Class: ldst pair (412526434 hits)
/qemu/accel/tcg/
H A Dldst_atomicity.c.inc62 * The pair exactly straddles the boundary.
68 * One of the pair crosses the boundary, and is non-atomic.
69 * The other of the pair does not cross, and is atomic.
/qemu/target/riscv/insn_trans/
H A Dtrans_rva.c.inc92 * an SC to any address, in between an LR and SC pair.
/qemu/target/s390x/tcg/
H A Dtranslate.c1965 TCGv_i128 pair = tcg_temp_new_i128(); in op_cksm() local
1968 gen_helper_cksm(pair, tcg_env, o->in1, o->in2, regs[r2 + 1]); in op_cksm()
1970 tcg_gen_extr_i128_i64(o->out, len, pair); in op_cksm()
2075 TCGv_i128 pair = tcg_temp_new_i128(); in op_clst() local
2077 gen_helper_clst(pair, tcg_env, regs[0], o->in1, o->in2); in op_clst()
2078 tcg_gen_extr_i128_i64(o->in2, o->in1, pair); in op_clst()
4726 TCGv_i128 pair = tcg_temp_new_i128(); in op_tre() local
4728 gen_helper_tre(pair, tcg_env, o->out, o->out2, o->in2); in op_tre()
4729 tcg_gen_extr_i128_i64(o->out2, o->out, pair); in op_tre()
/qemu/docs/about/
H A Ddeprecated.rst400 ``rbd`` keyvalue pair encoded filenames: ``""`` (since 3.1)
404 like other block drivers. Legacy parsing of keyvalue pair encoded

12