Home
last modified time | relevance | path

Searched refs:temp_64 (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/drivers/infiniband/hw/hfi1/
H A Dmad.c3250 u64 temp_64; in pma_get_ib_portcounters() local
3275 temp_64 = be64_to_cpu(rsp.port_rcv_errors); in pma_get_ib_portcounters()
3276 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters()
3279 p->port_rcv_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3281 temp_64 = be64_to_cpu(rsp.port_rcv_remote_physical_errors); in pma_get_ib_portcounters()
3282 if (temp_64 > 0xFFFFUL) in pma_get_ib_portcounters()
3285 p->port_rcv_remphys_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3287 temp_64 = be64_to_cpu(rsp.port_rcv_switch_relay_errors); in pma_get_ib_portcounters()
3288 p->port_rcv_switch_relay_errors = cpu_to_be16((u16)temp_64); in pma_get_ib_portcounters()
3290 temp_64 = be64_to_cpu(rsp.port_xmit_discards); in pma_get_ib_portcounters()
[all …]
/openbmc/linux/drivers/usb/cdns3/
H A Dcdnsp-gadget.c1341 u64 temp_64; in cdnsp_update_erst_dequeue() local
1344 temp_64 = cdnsp_read_64(&pdev->ir_set->erst_dequeue); in cdnsp_update_erst_dequeue()
1350 temp_64 &= ERST_PTR_MASK; in cdnsp_update_erst_dequeue()
1351 temp_64 |= ((u64)deq & (u64)~ERST_PTR_MASK); in cdnsp_update_erst_dequeue()
1356 temp_64 |= ERST_EHB; in cdnsp_update_erst_dequeue()
1358 temp_64 &= ~ERST_EHB; in cdnsp_update_erst_dequeue()
1360 cdnsp_write_64(temp_64, &pdev->ir_set->erst_dequeue); in cdnsp_update_erst_dequeue()
/openbmc/linux/drivers/usb/host/
H A Dxhci-ring.c3148 u64 temp_64; in xhci_update_erst_dequeue() local
3151 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_update_erst_dequeue()
3162 if ((temp_64 & (u64) ~ERST_PTR_MASK) == in xhci_update_erst_dequeue()
3167 temp_64 &= ERST_DESI_MASK; in xhci_update_erst_dequeue()
3168 temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK); in xhci_update_erst_dequeue()
3173 temp_64 |= ERST_EHB; in xhci_update_erst_dequeue()
3174 xhci_write_64(xhci, temp_64, &ir->ir_set->erst_dequeue); in xhci_update_erst_dequeue()
3188 u64 temp_64; in xhci_irq() local
3240 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_irq()
3241 xhci_write_64(xhci, temp_64 | ERST_EHB, in xhci_irq()
H A Dxhci.c509 u64 temp_64; in xhci_run() local
523 temp_64 = xhci_read_64(xhci, &ir->ir_set->erst_dequeue); in xhci_run()
524 temp_64 &= ~ERST_PTR_MASK; in xhci_run()
526 "ERST deq = 64'h%0lx", (long unsigned int) temp_64); in xhci_run()
4072 u64 temp_64; in xhci_setup_device() local
4211 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); in xhci_setup_device()
4213 "Op regs DCBAA ptr = %#016llx", temp_64); in xhci_setup_device()
/openbmc/qemu/target/tricore/
H A Dtranslate.c2264 TCGv_i64 temp_64 = tcg_temp_new_i64(); in gen_mul_q() local
2271 tcg_gen_ext_i32_i64(temp_64, arg1); in gen_mul_q()
2274 tcg_gen_mul_i64(temp_64, temp_64, temp2_64); in gen_mul_q()
2275 tcg_gen_shri_i64(temp_64, temp_64, up_shift); in gen_mul_q()
2276 tcg_gen_extr_i64_i32(rl, rh, temp_64); in gen_mul_q()
2283 tcg_gen_ext_i32_i64(temp_64, arg1); in gen_mul_q()
2286 tcg_gen_mul_i64(temp_64, temp_64, temp2_64); in gen_mul_q()
2289 tcg_gen_shli_i64(temp_64, temp_64, 1); in gen_mul_q()
2291 tcg_gen_shri_i64(temp_64, temp_64, up_shift - 1); in gen_mul_q()
2293 tcg_gen_extr_i64_i32(rl, rh, temp_64); in gen_mul_q()