Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/demos/wm/dataShare-1/src/
Dmain.c103 static u16 gSendBuf[SHARED_DATA_SIZE / sizeof(u16)] ATTRIBUTE_ALIGN(32); variable
342 gSendBuf[0] = (u16)(gPictureFrame >> 16); in ModeParent()
343 gSendBuf[1] = (u16)(gPictureFrame & 0xffff); in ModeParent()
344 gSendBuf[2] = (u16)(gGameFrame >> 16); in ModeParent()
345 gSendBuf[3] = (u16)(gGameFrame & 0xffff); in ModeParent()
349 result = WH_StepDS((void *)gSendBuf); in ModeParent()
390 gSendBuf[0] = (u16)(gPictureFrame >> 16); in ModeChild()
391 gSendBuf[1] = (u16)(gPictureFrame & 0xffff); in ModeChild()
392 gSendBuf[2] = (u16)(gGameFrame >> 16); in ModeChild()
393 gSendBuf[3] = (u16)(gGameFrame & 0xffff); in ModeChild()
[all …]
/TwlSDK-5.1.0/build/demos/wm/mp_simple-1/src/
Dmain.c101 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
314 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
352 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
381 gSendBuf[0] = gFrame; in VBlankIntr()
383 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
387 gSendBuf[0] = gFrame; in VBlankIntr()
389 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.1.0/build/demos/wvr/switchover/src/
Dwireless_main.c86 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
356 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
394 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
423 gSendBuf[0] = gFrame; in VBlankIntr()
425 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
429 gSendBuf[0] = gFrame; in VBlankIntr()
431 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.1.0/build/demos/wvr/simple/src/
Dmain.c86 static u32 gSendBuf[1024] ATTRIBUTE_ALIGN(32); variable
331 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeParent()
369 PrintString(4, 3, 0x4, "Send: %08X", gSendBuf[0]); in ModeChild()
398 gSendBuf[0] = gFrame; in VBlankIntr()
400 (void)WH_SendData(gSendBuf, PARENT_DATA_SIZE, NULL); in VBlankIntr()
404 gSendBuf[0] = gFrame; in VBlankIntr()
406 (void)WH_SendData(gSendBuf, CHILD_DATA_SIZE, NULL); in VBlankIntr()
/TwlSDK-5.1.0/build/demos/wbt/wbt-1/src/
Dmain.c113 static u8 gSendBuf[256] ATTRIBUTE_ALIGN(32); variable
711 const u16 size = (u16)WBT_MpParentSendHook(gSendBuf, WC_PARENT_DATA_SIZE_MAX); in ParentSendCallback()
713 (void)WH_SendData(gSendBuf, size, NULL); in ParentSendCallback()
728 const u16 size = (u16)WBT_MpChildSendHook(gSendBuf, WC_CHILD_DATA_SIZE_MAX); in ChildSendCallback()
730 (void)WH_SendData(gSendBuf, size, NULL); in ChildSendCallback()