Home
last modified time | relevance | path

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

/TwlSDK-5.5/build/demos/wm/dataShare-1/src/
Dmain.c103 static u16 gSendBuf[SHARED_DATA_SIZE / sizeof(u16)] ATTRIBUTE_ALIGN(32); variable
369 gSendBuf[0] = (u16)(gPictureFrame >> 16); in ModeParent()
370 gSendBuf[1] = (u16)(gPictureFrame & 0xffff); in ModeParent()
371 gSendBuf[2] = (u16)(gGameFrame >> 16); in ModeParent()
372 gSendBuf[3] = (u16)(gGameFrame & 0xffff); in ModeParent()
376 result = WH_StepDS((void *)gSendBuf); in ModeParent()
420 gSendBuf[0] = (u16)(gPictureFrame >> 16); in ModeChild()
421 gSendBuf[1] = (u16)(gPictureFrame & 0xffff); in ModeChild()
422 gSendBuf[2] = (u16)(gGameFrame >> 16); in ModeChild()
423 gSendBuf[3] = (u16)(gGameFrame & 0xffff); in ModeChild()
[all …]
/TwlSDK-5.5/build/demos/wvr/switchover/src/
Dwireless_main.c86 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
388 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
430 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
463 gSendBuf[0] = gFrame; in VBlankIntr()
465 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
469 gSendBuf[0] = gFrame; in VBlankIntr()
471 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.5/build/demos/wm/mp_simple-1/src/
Dmain.c101 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
342 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
384 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
417 gSendBuf[0] = gFrame; in VBlankIntr()
419 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
423 gSendBuf[0] = gFrame; in VBlankIntr()
425 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.5/build/demos/wvr/simple/src/
Dmain.c86 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
360 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
402 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
435 gSendBuf[0] = gFrame; in VBlankIntr()
437 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
441 gSendBuf[0] = gFrame; in VBlankIntr()
443 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.5/build/demos/wbt/wbt-1/src/
Dmain.c113 static u8 gSendBuf[256] ATTRIBUTE_ALIGN(32); variable
742 const u16 size = (u16)WBT_MpParentSendHook(gSendBuf, WC_PARENT_DATA_SIZE_MAX); in ParentSendCallback()
744 (void)WH_SendData(gSendBuf, size, NULL); in ParentSendCallback()
759 const u16 size = (u16)WBT_MpChildSendHook(gSendBuf, WC_CHILD_DATA_SIZE_MAX); in ChildSendCallback()
761 (void)WH_SendData(gSendBuf, size, NULL); in ChildSendCallback()