Home
last modified time | relevance | path

Searched refs:op2 (Results 1 – 6 of 6) sorted by relevance

/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
Dphy_qmath.c24 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 …]
Dphy_qmath.h22 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/
Dcdma.c97 static void host1x_pushbuffer_push(struct push_buffer *pb, u32 op1, u32 op2) in host1x_pushbuffer_push() argument
103 *(p++) = op2; 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()
Dcdma.h91 void host1x_cdma_push(struct host1x_cdma *cdma, u32 op1, u32 op2);
/drivers/gpu/host1x/hw/
Dchannel_hw.c69 u32 op2 = g->base + g->offset; in submit_gathers() local
72 host1x_cdma_push(cdma, op1, op2); in submit_gathers()
/drivers/iommu/
Dmsm_iommu.c40 #define MRC(reg, processor, op1, crn, crm, op2) \ argument
42 " mrc " #processor "," #op1 ", %0," #crn "," #crm "," #op2 "\n" \