Lines Matching refs:bmp
1114 struct bitmap bmp; in MBi_CommParentSendData() local
1118 MI_CpuClear16(&bmp, sizeof(struct bitmap)); in MBi_CommParentSendData()
1127 bmp.connected |= (1 << child); in MBi_CommParentSendData()
1131 bmp.req |= (1 << child); in MBi_CommParentSendData()
1135 bmp.kick |= (1 << child); in MBi_CommParentSendData()
1142 bmp.boot |= (1 << child); in MBi_CommParentSendData()
1146 bmp.mem_full |= (1 << child); in MBi_CommParentSendData()
1158 if (bmp.boot) in MBi_CommParentSendData()
1160 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_BOOTREQ, bmp.boot); in MBi_CommParentSendData()
1162 else if (bmp.connected) // Send entry request permitted message in MBi_CommParentSendData()
1164 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_SENDSTART, bmp.connected); in MBi_CommParentSendData()
1166 else if (bmp.mem_full) // Send member exceeded message in MBi_CommParentSendData()
1168 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_MEMBER_FULL, bmp.mem_full); in MBi_CommParentSendData()
1170 else if (bmp.kick) // Send entry denied message in MBi_CommParentSendData()
1172 errcode = MBi_CommParentSendMsg(MB_COMM_TYPE_PARENT_KICKREQ, bmp.kick); in MBi_CommParentSendData()
1174 else if (bmp.req) // Send MbDownloadFileInfo in MBi_CommParentSendData()