Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 38) sorted by relevance

12

/qemu/tests/unit/
H A Dtest-coroutine.c179 Coroutine *c1; in test_no_dangling_access() local
186 qemu_coroutine_enter(c1); in test_no_dangling_access()
189 tmp = *c1; in test_no_dangling_access()
194 *c1 = tmp; in test_no_dangling_access()
230 qemu_coroutine_enter(c1); in do_test_co_mutex()
237 qemu_coroutine_enter(c1); in do_test_co_mutex()
308 Coroutine *c1, *c2; in test_co_rwlock_upgrade() local
314 qemu_coroutine_enter(c1); in test_co_rwlock_upgrade()
318 qemu_coroutine_enter(c1); in test_co_rwlock_upgrade()
408 qemu_coroutine_enter(c1); in test_co_rwlock_downgrade()
[all …]
H A Dtest-xs-node.c108 static bool compare_content(GByteArray *c1, GByteArray *c2) in compare_content() argument
112 if (c1) { in compare_content()
113 len1 = c1->len; in compare_content()
126 return !memcmp(c1->data, c2->data, len1); in compare_content()
H A Dtest-vmstate.c1303 static void compare_containers(TestQListContainer *c1, TestQListContainer *c2) in compare_containers() argument
1307 while (!QLIST_EMPTY(&c1->list)) { in compare_containers()
1308 first_item_c1 = QLIST_FIRST(&c1->list); in compare_containers()
/qemu/tests/tcg/multiarch/
H A Dcatch-syscalls.c19 char c0 = 'A', c1; in main() local
33 if (read(fd[0], &c1, sizeof(c1)) != sizeof(c1)) { in main()
38 if (c0 == c1) { in main()
/qemu/tests/tcg/i386/
H A Dtest-i386-bmi2.c28 #define insn2q(name, arg0, c0, arg1, c1) \ argument
32 asm volatile (#name "q %2, %1, %0" : "=r"(result64) : c0(arg0), c1(arg1)); \
36 #define insn2l(name, arg0, c0, arg1, c1) \ argument
40 asm volatile (#name "l %k2, %k1, %k0" : "=r"(result32) : c0(arg0), c1(arg1)); \
/qemu/tcg/sparc64/
H A Dtcg-target.c.inc678 tcg_out_cmp(s, cond, c1, c2, c2const);
722 tcg_out_cmp(s, cond, c1, c2, c2const);
744 c2 = c1;
746 c1 = TCG_REG_G0, c2const = 0;
754 c1 = TCG_REG_G0;
765 TCGReg t = c1;
766 c1 = c2;
775 tcg_out_cmp(s, cond, c1, c2, c2const);
781 tcg_out_cmp(s, cond, c1, c2, c2const);
812 c2 = c1, c2const = 0, c1 = TCG_REG_G0;
[all …]
/qemu/target/m68k/
H A Dop_helper.c759 int16_t c1 = env->dregs[Dc1]; in HELPER() local
768 if (l1 == c1 && l2 == c2) { in HELPER()
773 if (c1 != l1) { in HELPER()
775 env->cc_v = c1; in HELPER()
792 uint32_t c1 = env->dregs[Dc1]; in do_cas2l() local
808 c = deposit64(c2, 32, 32, c1); in do_cas2l()
814 c = deposit64(c1, 32, 32, c2); in do_cas2l()
829 if (l1 == c1 && l2 == c2) { in do_cas2l()
835 if (c1 != l1) { in do_cas2l()
837 env->cc_v = c1; in do_cas2l()
/qemu/target/mips/tcg/
H A Dtx79_translate.c237 TCGv_i64 c0, c1, ax, bx, t0, t1, t2; in trans_parallel_compare() local
245 c1 = tcg_constant_tl(0xffffffff); in trans_parallel_compare()
258 tcg_gen_movcond_i64(cond, t2, t1, t0, c1, c0); in trans_parallel_compare()
267 tcg_gen_movcond_i64(cond, t2, t1, t0, c1, c0); in trans_parallel_compare()
/qemu/tests/tcg/arm/system/
H A Dboot.S157 mcr p15, 0, r0, c1, c0, 2
184 mcr p15, 0, r0, c1, c0, 0
/qemu/target/xtensa/core-test_mmuhifi_c3/
H A Dgdb-config.c.inc86 "03:04:04:c3","03:04:04:c1",0,0,0,0)
88 "03:04:14:c3","03:04:44:c1",0,0,0,0)
90 "03:04:24:c3","03:04:84:c1",0,0,0,0)
92 "03:04:34:c3","03:04:c4:c1",0,0,0,0)
/qemu/target/s390x/tcg/
H A Dvec_string_helper.c41 static inline int match_index(uint64_t c0, uint64_t c1) in match_index() argument
43 return (c0 ? clz64(c0) : clz64(c1) + 64) >> 3; in match_index()
376 const uint8_t c1 = s390_vec_read_element8(v4, j * (1 << es)); in vstrc() local
379 if (element_compare(data, l1, c1) && in vstrc()
/qemu/block/
H A Dvvfat.c2358 uint32_t c, c1; in commit_mappings() local
2360 for (c = cluster, c1 = modified_fat_get(s, c); c + 1 == c1; in commit_mappings()
2361 c = c1, c1 = modified_fat_get(s, c1)); in commit_mappings()
2375 if (!fat_eof(s, c1)) { in commit_mappings()
2380 if (next_mapping == NULL || next_mapping->begin > c1) { in commit_mappings()
2383 next_mapping = insert_mapping(s, c1, c1+1); in commit_mappings()
2385 if (c1 < c) in commit_mappings()
2412 cluster = c1; in commit_mappings()
2547 uint32_t c1; in commit_one_file() local
2552 c1 = modified_fat_get(s, c); in commit_one_file()
[all …]
/qemu/target/sparc/
H A Dtranslate.c158 TCGv c1; member
1122 cmp->c1 = t1 = tcg_temp_new(); in gen_compare()
1128 cmp->c1 = tcg_constant_tl(0); in gen_compare()
1219 TCGv_i32 c1 = fcc; in gen_fcompare() local
1239 c1 = tcg_temp_new_i32(); in gen_fcompare()
1245 c1 = tcg_temp_new_i32(); in gen_fcompare()
1246 tcg_gen_andi_i32(c1, fcc, 1); in gen_fcompare()
1272 cmp->c1 = tcg_temp_new(); in gen_fcompare()
1273 tcg_gen_extu_i32_tl(cmp->c1, c1); in gen_fcompare()
1295 cmp->c1 = tcg_temp_new(); in gen_compare_reg()
[all …]
/qemu/hw/display/
H A Dartist.c497 bool c1; in draw_line() local
521 c1 = false; in draw_line()
535 c1 = true; in draw_line()
564 if (c1) { in draw_line()
585 if (c1) { in draw_line()
/qemu/docs/system/s390x/
H A Dbootdevices.rst24 qemu-system-s390x -blockdev file,node-name=c1,filename=... \
26 -device scsi-cd,drive=c1,bootindex=1
/qemu/qga/vss-win32/
H A Drequester.cpp178 unsigned int cComponents, c1, c2, j; in AddComponents() local
206 hr = pMetadata->GetFileCounts(&c1, &c2, &cComponents); in AddComponents()
/qemu/ui/
H A Dvnc-enc-tight.c352 uint##bpp##_t c0, c1, ci; \
371 c1 = data[i]; \
377 } else if (ci == c1) { \
385 *fg = (uint32_t)c1; \
387 *bg = (uint32_t)c1; \
399 palette_put(palette, c1); \
H A Dconsole-vc.c380 TextCell *cells, *c, *c1; in text_console_resize() local
401 c1 = &t->cells[y * last_width]; in text_console_resize()
403 *c++ = *c1++; in text_console_resize()
/qemu/tests/rocker/
H A Dbridge-stp41 simp ssh tut h1 --cmd "ping -w 1 -c1 11.0.0.2 >/dev/null"
H A Dbridge-vlan-stp53 simp ssh tut h1 --cmd "ping -w 1 -c1 11.0.0.2 >/dev/null"
/qemu/docs/devel/
H A Dtcg-ops.rst509 * - movcond_i32/i64 *dest*, *c1*, *c2*, *v1*, *v2*, *cond*
511 - | *dest* = (*c1* *cond* *c2* ? *v1* : *v2*)
513 | Set *dest* to *v1* if (*c1* *cond* *c2*) is true, otherwise set to *v2*.
857 * - cmpsel_vec *v0*, *c1*, *c2*, *v3*, *v4*, *cond*
864 v0[i] = (c1[i] cond c2[i]) ? v3[i] : v4[i].
/qemu/tcg/s390x/
H A Dtcg-target.c.inc1355 TCGReg dest, TCGReg c1, TCGArg c2,
1363 cc = tgen_cmp(s, type, cond, c1, c2, c2const, false);
1376 TCGReg t = c1;
1377 c1 = c2;
1402 tgen_cmp(s, type, cond, c1, c2, c2const, true);
1430 tgen_cmp(s, type, cond, c1, c2, c2const, true);
1441 cc = tgen_cmp(s, type, cond, c1, c2, c2const, false);
1489 TCGReg c1, TCGArg c2, int c2const,
1494 cc = tgen_cmp2(s, type, c, c1, c2, c2const, false, &inv_cc);
3093 TCGv_vec c1, TCGv_vec c2,
[all …]
/qemu/target/cris/
H A Dtranslate.c1928 TCGv c2, c1; in dec_move_rs() local
1930 c1 = tcg_constant_tl(dc->op1); in dec_move_rs()
1933 gen_helper_movl_sreg_reg(tcg_env, c2, c1); in dec_move_rs()
1938 TCGv c2, c1; in dec_move_sr() local
1940 c1 = tcg_constant_tl(dc->op1); in dec_move_sr()
1943 gen_helper_movl_reg_sreg(tcg_env, c1, c2); in dec_move_sr()
/qemu/tcg/mips/
H A Dtcg-target.c.inc1047 TCGReg c1, TCGReg c2, TCGReg v1, TCGReg v2)
1059 tmpflags = tcg_out_setcond_int(s, cond, TCG_TMP0, c1, c2);
1060 c1 = tmpflags & ~SETCOND_FLAGS;
1068 tcg_out_opc_reg(s, m_opc_f, TCG_TMP1, v2, c1);
1070 tcg_out_opc_reg(s, m_opc_t, ret, v1, c1);
1082 tcg_out_opc_reg(s, m_opc, ret, v1, c1);
1086 tcg_out_opc_imm(s, b_opc, c1, TCG_REG_ZERO, 2);
/qemu/target/arm/tcg/
H A Dhelper-a64.c598 float16 a1, a2, b1, b2, c1, c2; in HELPER() local
604 c1 = extract32(two_c, 0, 16); in HELPER()
606 r1 = float16_muladd(a1, b1, c1, 0, fpst); in HELPER()

12