Searched refs:dbuf (Results 1 – 4 of 4) sorted by relevance
/qemu/tests/tcg/hexagon/ |
H A D | brev.c | 29 int64_t dbuf[SIZE] __attribute__((aligned(1 << 16))) = {0}; variable 160 dbuf[i] = bitreverse(i); in main() 169 TEST_BREV_LOAD(d, int64_t, dbuf, 13, i); in main() 175 TEST_BREV_STORE(d, int64_t, dbuf, i, 13); in main()
|
H A D | circ.c | 39 int64_t dbuf[NDOBLS] __attribute__((aligned(1 << 12))) = {0}; variable 59 INIT(dbuf, NDOBLS) in INIT() 262 TEST_LOAD_IMM(d, int64_t, dbuf, NDOBLS, 8, lld) 291 TEST_LOAD_REG(d, int64_t, dbuf, NDOBLS, lld) in TEST_LOAD_REG() 337 CHECK_STORE(d, dbuf, NDOBLS, llx) 366 CIRC_TEST_STORE_IMM(d, d, int64_t, dbuf, NDOBLS, 0, 8) 397 CIRC_TEST_STORE_REG(d, d, int64_t, dbuf, NDOBLS, 0) 434 DEBUG_PRINTF("Address of dbuf = 0x%p\n", dbuf); in main()
|
/qemu/hw/net/ |
H A D | vmxnet3.c | 677 struct Vmxnet3_RxDesc *dbuf, uint32_t *didx) in vmxnet3_read_next_rx_descr() argument 683 vmxnet3_ring_read_curr_cell(d, ring, dbuf); in vmxnet3_read_next_rx_descr() 684 dbuf->addr = le64_to_cpu(dbuf->addr); in vmxnet3_read_next_rx_descr() 685 dbuf->val1 = le32_to_cpu(dbuf->val1); in vmxnet3_read_next_rx_descr() 686 dbuf->ext1 = le32_to_cpu(dbuf->ext1); in vmxnet3_read_next_rx_descr()
|
/qemu/target/m68k/ |
H A D | translate.c | 2049 TCGv dbuf; in DISAS_INSN() local 2058 dbuf = tcg_temp_new(); in DISAS_INSN() 2068 tcg_gen_shri_i32(dbuf, reg, (i - 1) * 8); in DISAS_INSN() 2069 tcg_gen_qemu_st_i32(dbuf, abuf, IS_USER(s), MO_UB); in DISAS_INSN() 2076 tcg_gen_qemu_ld_tl(dbuf, abuf, IS_USER(s), MO_UB); in DISAS_INSN() 2077 tcg_gen_deposit_i32(reg, reg, dbuf, (i - 1) * 8, 8); in DISAS_INSN()
|