Lines Matching refs:base
36 uint32_t base = id; in sc_ipc_open() local
40 if ((ipc == NULL) || (base == 0)) in sc_ipc_open()
46 MU_Init(base); in sc_ipc_open()
50 MU_EnableRxFullInt(base, i); in sc_ipc_open()
61 uint32_t base = ipc; in sc_ipc_close() local
63 if (base != 0) in sc_ipc_close()
64 MU_Init(base); in sc_ipc_close()
69 uint32_t base = ipc; in sc_ipc_read() local
74 if ((base == 0) || (msg == NULL)) in sc_ipc_read()
78 MU_ReceiveMsg(base, 0, (uint32_t *) msg); in sc_ipc_read()
89 MU_ReceiveMsg(base, count % MU_RR_COUNT, in sc_ipc_read()
98 uint32_t base = ipc; in sc_ipc_write() local
102 if ((base == 0) || (msg == NULL)) in sc_ipc_write()
110 MU_SendMessage(base, 0, *((uint32_t *) msg)); in sc_ipc_write()
115 MU_SendMessage(base, count % MU_TR_COUNT, in sc_ipc_write()