Searched refs:op1 (Results 1 – 7 of 7) sorted by relevance
/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
D | phy_qmath.c | 24 u16 qm_mulu16(u16 op1, u16 op2) in qm_mulu16() argument 26 return (u16) (((u32) op1 * (u32) op2) >> 16); in qm_mulu16() 37 s16 qm_muls16(s16 op1, s16 op2) in qm_muls16() argument 40 if (op1 == (s16) 0x8000 && op2 == (s16) 0x8000) in qm_muls16() 43 result = ((s32) (op1) * (s32) (op2)); in qm_muls16() 53 s32 qm_add32(s32 op1, s32 op2) in qm_add32() argument 56 result = op1 + op2; in qm_add32() 57 if (op1 < 0 && op2 < 0 && result > 0) in qm_add32() 59 else if (op1 > 0 && op2 > 0 && result < 0) in qm_add32() 70 s16 qm_add16(s16 op1, s16 op2) in qm_add16() argument [all …]
|
D | phy_qmath.h | 22 u16 qm_mulu16(u16 op1, u16 op2); 24 s16 qm_muls16(s16 op1, s16 op2); 26 s32 qm_add32(s32 op1, s32 op2); 28 s16 qm_add16(s16 op1, s16 op2); 30 s16 qm_sub16(s16 op1, s16 op2);
|
/drivers/gpu/host1x/ |
D | cdma.c | 97 static void host1x_pushbuffer_push(struct push_buffer *pb, u32 op1, u32 op2) in host1x_pushbuffer_push() argument 102 *(p++) = op1; in host1x_pushbuffer_push() 449 void host1x_cdma_push(struct host1x_cdma *cdma, u32 op1, u32 op2) in host1x_cdma_push() argument 457 op1, op2); in host1x_cdma_push() 467 host1x_pushbuffer_push(pb, op1, op2); in host1x_cdma_push()
|
D | cdma.h | 91 void host1x_cdma_push(struct host1x_cdma *cdma, u32 op1, u32 op2);
|
/drivers/gpu/host1x/hw/ |
D | channel_hw.c | 68 u32 op1 = host1x_opcode_gather(g->words); in submit_gathers() local 71 trace_write_gather(cdma, g->bo, g->offset, op1 & 0xffff); in submit_gathers() 72 host1x_cdma_push(cdma, op1, op2); in submit_gathers()
|
/drivers/iommu/ |
D | msm_iommu.c | 40 #define MRC(reg, processor, op1, crn, crm, op2) \ argument 42 " mrc " #processor "," #op1 ", %0," #crn "," #crm "," #op2 "\n" \
|
/drivers/tty/serial/ |
D | mpc52xx_uart.c | 163 out_8(&PSC(port)->op1, MPC52xx_PSC_OP_RTS); in mpc52xx_psc_set_rts() 939 out_8(&PSC_5125(port)->op1, MPC52xx_PSC_OP_RTS); in mpc5125_psc_set_rts()
|