Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 45) sorted by relevance

12

/qemu/system/
H A Dqtest.c382 g_assert(words); in qtest_process_command()
464 g_assert(words[1] && words[2] && words[3] && words[4]); in qtest_process_command()
496 g_assert(words[1] && words[2]); in qtest_process_command()
541 g_assert(words[1] && words[2]); in qtest_process_command()
609 g_assert(words[1] && words[2]); in qtest_process_command()
637 g_assert(words[1] && words[2]); in qtest_process_command()
658 g_assert(words[1] && words[2] && words[3]); in qtest_process_command()
691 g_assert(words[1] && words[2] && words[3]); in qtest_process_command()
716 g_assert(words[1] && words[2] && words[3]); in qtest_process_command()
765 g_assert(words[1] && words[2]); in qtest_process_command()
[all …]
/qemu/util/
H A Dbitops.c132 unsigned long words; in find_last_bit() local
136 words = size / BITS_PER_LONG; in find_last_bit()
140 tmp = (addr[words] & (~0UL >> (BITS_PER_LONG in find_last_bit()
147 while (words) { in find_last_bit()
148 tmp = addr[--words]; in find_last_bit()
151 return words * BITS_PER_LONG + BITS_PER_LONG - 1 - clzl(tmp); in find_last_bit()
/qemu/disas/
H A Dhexagon.c34 uint32_t words[PACKET_WORDS_MAX]; in print_insn_hexagon() local
41 (bfd_byte *)&words[i], in print_insn_hexagon()
50 if (is_packet_end(words[i])) { in print_insn_hexagon()
61 len = disassemble_hexagon(words, i, memaddr, buf); in print_insn_hexagon()
/qemu/hw/dma/
H A Dxlnx-zdma.c381 dst_type = FIELD_EX32(s->dsc_dst.words[3], ZDMA_CH_DST_DSCR_WORD3, TYPE); in zdma_load_dst_descriptor()
400 dst_size = FIELD_EX32(s->dsc_dst.words[2], ZDMA_CH_DST_DSCR_WORD2, in zdma_write_dst()
414 dst_intr = FIELD_EX32(s->dsc_dst.words[3], ZDMA_CH_DST_DSCR_WORD3, in zdma_write_dst()
437 s->dsc_dst.words[2] = FIELD_DP32(s->dsc_dst.words[2], in zdma_write_dst()
456 src_size = FIELD_EX32(s->dsc_src.words[2], ZDMA_CH_SRC_DSCR_WORD2, SIZE); in zdma_process_descr()
457 src_cmd = FIELD_EX32(s->dsc_src.words[3], ZDMA_CH_SRC_DSCR_WORD3, CMD); in zdma_process_descr()
458 src_type = FIELD_EX32(s->dsc_src.words[3], ZDMA_CH_SRC_DSCR_WORD3, TYPE); in zdma_process_descr()
482 src_size = FIELD_EX32(s->dsc_dst.words[2], ZDMA_CH_DST_DSCR_WORD2, in zdma_process_descr()
574 bool src_type = FIELD_EX32(s->dsc_src.words[3], in zdma_ch_ctrlx_postw()
807 VMSTATE_UINT32_ARRAY(dsc_src.words, XlnxZDMA, 4),
[all …]
/qemu/tests/qemu-iotests/
H A Dfindtests.py67 words = line.split()
68 test_file = self.parse_test_name(words[0])
69 groups = words[1:]
/qemu/scripts/
H A Dblock-coroutine-wrapper.py147 words = func_name.split('_')
148 words = [w[0].upper() + w[1:] for w in words]
149 return ''.join(words)
/qemu/target/hexagon/
H A Ddecode.c658 int decode_packet(DisasContext *ctx, int max_words, const uint32_t *words, in decode_packet() argument
674 encoding32 = words[words_read]; in decode_packet()
707 if ((words_read == 2) && (decode_parsebits_is_loopend(words[0]))) { in decode_packet()
712 has_loop0 = decode_parsebits_is_loopend(words[0]); in decode_packet()
713 has_loop1 = decode_parsebits_is_loopend(words[1]); in decode_packet()
747 int disassemble_hexagon(uint32_t *words, int nwords, bfd_vma pc, in disassemble_hexagon() argument
756 if (decode_packet(&ctx, nwords, words, &pkt, true) > 0) { in disassemble_hexagon()
757 snprint_a_pkt_disas(buf, &pkt, words, pc); in disassemble_hexagon()
H A Dprintinsn.c53 void snprint_a_pkt_disas(GString *buf, Packet *pkt, uint32_t *words, in snprint_a_pkt_disas() argument
79 g_string_append_printf(buf, "0x" TARGET_FMT_lx "\t", words[i]); in snprint_a_pkt_disas()
H A Dprintinsn.h23 void snprint_a_pkt_disas(GString *buf, Packet *pkt, uint32_t *words,
H A Ddecode.h30 int decode_packet(DisasContext *ctx, int max_words, const uint32_t *words,
H A Dtranslate.c214 uint32_t words[]) in read_packet_words() argument
219 memset(words, 0, PACKET_WORDS_MAX * sizeof(uint32_t)); in read_packet_words()
221 words[nwords] = in read_packet_words()
224 found_end = is_packet_end(words[nwords]); in read_packet_words()
242 HEX_DEBUG_LOG("0x%x, ", words[i]); in read_packet_words()
964 uint32_t words[PACKET_WORDS_MAX]; in decode_and_translate_packet() local
969 nwords = read_packet_words(env, ctx, words); in decode_and_translate_packet()
976 if (decode_packet(ctx, nwords, words, &pkt, false) > 0) { in decode_and_translate_packet()
H A Dcpu_bits.h56 int disassemble_hexagon(uint32_t *words, int nwords, bfd_vma pc, GString *buf);
/qemu/tests/qtest/
H A Dlibqtest.c671 gchar **words; in qtest_rsp_args() local
683 g_assert(words[1] != NULL); in qtest_rsp_args()
684 g_assert(words[2] != NULL); in qtest_rsp_args()
697 g_strfreev(words); in qtest_rsp_args()
701 g_assert(words[0] != NULL); in qtest_rsp_args()
705 g_assert(words[i] != NULL); in qtest_rsp_args()
708 return words; in qtest_rsp_args()
715 g_strfreev(words); in qtest_rsp()
991 gchar **words; in qtest_clock_rsp() local
993 words = qtest_rsp_args(s, 2); in qtest_clock_rsp()
[all …]
/qemu/hw/ppc/
H A Dspapr_rtas.c551 static bool spapr_qtest_callback(CharBackend *chr, gchar **words) in spapr_qtest_callback() argument
553 if (strcmp(words[0], "rtas") == 0) { in spapr_qtest_callback()
558 rc = qemu_strtoul(words[2], NULL, 0, &nargs); in spapr_qtest_callback()
560 rc = qemu_strtou64(words[3], NULL, 0, &args); in spapr_qtest_callback()
562 rc = qemu_strtoul(words[4], NULL, 0, &nret); in spapr_qtest_callback()
564 rc = qemu_strtou64(words[5], NULL, 0, &ret); in spapr_qtest_callback()
566 res = qtest_rtas_call(words[1], nargs, args, nret, ret); in spapr_qtest_callback()
/qemu/target/hexagon/imported/
H A Dalu.idef545 "Add vector of words",
554 "Add vector of words with saturation",
820 "Sub vector of words",
863 "Absolute Value vector of words",
872 "Absolute Value vector of words",
990 "Average vector of words",
999 "Average vector of words",
1008 "Average vector of words",
1017 "Average vector of words",
1063 "Average vector of unsigned words",
[all …]
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",
/qemu/include/sysemu/
H A Dqtest.h29 void qtest_set_command_cb(bool (*pc_cb)(CharBackend *chr, gchar **words));
/qemu/python/qemu/qmp/
H A Dqmp_tui.py106 words = msg.split(' ')
107 words = list(filter(None, words))
108 return ' '.join(words)
/qemu/include/hw/dma/
H A Dxlnx-zdma.h51 uint32_t words[4]; member
/qemu/include/libdecnumber/
H A DdecNumberLocal.h310 #define DFWORD(df, off) ((df)->words[DECWORDS-1-(off)])
312 #define DFWWORD(dfw, off) ((dfw)->words[DECWWORDS-1-(off)])
314 #define DFWORD(df, off) ((df)->words[off])
316 #define DFWWORD(dfw, off) ((dfw)->words[off])
/qemu/hw/s390x/
H A Dcss.c1901 uint32_t words[8]; in css_collect_chp_desc() local
1919 words[1] = 0; in css_collect_chp_desc()
1920 memcpy(buf + desc_size, words, 8); in css_collect_chp_desc()
1924 words[1] = 0; in css_collect_chp_desc()
1925 words[2] = 0; in css_collect_chp_desc()
1926 words[3] = 0; in css_collect_chp_desc()
1927 words[4] = 0; in css_collect_chp_desc()
1928 words[5] = 0; in css_collect_chp_desc()
1929 words[6] = 0; in css_collect_chp_desc()
1930 words[7] = 0; in css_collect_chp_desc()
[all …]
/qemu/target/hexagon/imported/mmvec/
H A Dext.idef1303 "Vector absolute value of words",
1308 "Vector absolute value of words",
1314 "Vector absolute value of words",
1319 "Vector absolute value of words",
1329 "Vector absolute value of words",
1334 "Vector absolute value of words",
1484 "Vector absolute value of words",
1489 "Vector absolute value of words",
1495 "Vector absolute value of words",
1500 "Vector absolute value of words",
[all …]
/qemu/
H A DMakefile3 ifneq ($(words $(subst :, ,$(CURDIR))), 1)
/qemu/qapi/
H A Dpragma.json122 # feature-words, filtered-features
/qemu/tests/tcg/tricore/c/
H A Dcrt0-tc2x.S230 sh %d0,%d1,-2 # %d0 = length / 4 (words)
276 sh %d0,%d1,-2 # %d0 = length / 4 (words)

12