Home
last modified time | relevance | path

Searched refs:u32 (Results 1 – 10 of 10) sorted by relevance

/RevoEX-2.4-CW4W/build/demos/mpfsdemo/src/
Dmpfssimple.c36 void ExecuteDownload(void* (*alloc)(u32), void (*free)(void*), const void *program);
37 void ExecuteWireless(void* (*alloc)(u32), void (*free)(void*), MEMHeapHandle heap, const void *p…
50 static const u32 program_buffer_max = (u32)(3 * 1024 * 1024);
59 static void* MyAlloc(u32 size) in MyAlloc()
84 OSSetMEM2ArenaLo( (void*)OSRoundUp32B((u32)heapAddress + USERHEAP_SIZE)); in main()
101 const u32 file_len = ((DVDGetLength(file) + 31) & ~31); in main()
Ddownload.c67 void ExecuteDownload(void* (*alloc)(u32), void (*free)(void*), const void *program);
70 void ExecuteDownload(void* (*alloc)(u32), void (*free)(void*), const void *program) in ExecuteDownload() argument
81 u32 fixed_entry = 0; in ExecuteDownload()
97 u32 entry; in ExecuteDownload()
98 u32 booted; in ExecuteDownload()
107 const u32 full_entry = (u32)(((1 << config->programMaxEntry) - 1) & ~1); in ExecuteDownload()
Dfsserver.c44 void ExecuteWireless(void* (*alloc)(u32), void (*free)(void*), MEMHeapHandle heap, const void *p…
85 void ExecuteWireless(void* (*alloc)(u32), void (*free)(void*), MEMHeapHandle heap, const void *p… in ExecuteWireless() argument
/RevoEX-2.4-CW4W/build/demos/mpdemo/src/
Dmpsimple.c78 static u32 sRecvBuf[MP_AID_MAX];
94 static void* mpAlloc( u32 size );
161 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in main()
192 static u32 frameData[512/sizeof(u32)] ATTRIBUTE_ALIGN(32); in DoMPCommunication()
193 u32 count; in DoMPCommunication()
197 u32 restBits; in DoMPCommunication()
208 result = MPSend( frameData, sizeof(u32), 0xfffe, MY_PORT, &restBits ); in DoMPCommunication()
313 sRecvBuf[info->dataReceived.fromAid] = MPMPToH32(*(u32*)info->dataReceived.data); in PortCallbackFunction()
327 void* mpAlloc( u32 size ) in mpAlloc()
DmpsimpleAsync.c78 static u32 sRecvBuf[MP_AID_MAX];
95 void* myAlloc( u32 size );
166 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in main()
194 static u32 frameData[512/sizeof(u32)] ATTRIBUTE_ALIGN(32); in main()
195 u32 count = 0; in main()
197 u32 restBits = 0; in main()
213 …result = MPSendAsync ( frameData, sizeof(u32), 0xfffe, MY_PORT, &restBits, SendAsyncCallbackFuncti… in main()
347 sRecvBuf[info->dataReceived.fromAid] = MPMPToH32(*(u32*)info->dataReceived.data); in PortCallbackFunction()
361 void* myAlloc( u32 size ) in myAlloc()
/RevoEX-2.4-CW4W/build/demos/mpdldemo/src/
Dmpdlntr2rvl.c99 static void* MyAlloc( u32 size );
103 static const u32 program_buffer_max = (u32)(3 * 1024 * 1024);
211 static u32 connectedAid;
232 static u16 ConvKPadKeyToDSPad(u32 mixedKey);
240 u32 tv_format; in main()
278 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in main()
303 const u32 file_len = ( (DVDGetLength(file) + 31) & ~31 ); in main()
333 u32 fixed_entry; in DoDownload()
346 u32 entry; in DoDownload()
347 u32 booted; in DoDownload()
[all …]
Dmpdlsimple.c94 static const u32 program_buffer_max = (u32)(3 * 1024 * 1024);
112 static void* MyAlloc( u32 size ) in MyAlloc()
158 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in main()
183 const u32 file_len = ( (DVDGetLength(file) + 31) & ~31 ); in main()
291 (void)MPDLResetEntryBitmap((u32)~downloading); in main()
292 (void)MPDLStartDownloadEx((u32)entry); in main()
344 NETSwapAndCopyMemory16(nameUTF16, info->name, (u32)srclen); in main()
/RevoEX-2.4-CW4W/build/demos/mpdsdemo/src/
Dmpdssimple.c87 static void* mpAlloc( u32 size );
178 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in main()
223 u32 counter1 = 0; in DoMPCommunication()
224 u32 counter2 = 0; in DoMPCommunication()
279 data = MPDSGetData( &sDSContext, &recvDataSet, (u32)i ); in DoMPCommunication()
408 void* mpAlloc( u32 size ) in mpAlloc()
Dmpdsmodel.c123 u32 count:24; // Frame count
169 static u32 sFrameCount = 0;
211 static void* mpAlloc( u32 size );
214 static u16 ConvKPadKeyToDSPad(u32 mixedKey);
308 OSSetMEM2ArenaLo( (void*)OSRoundUp32B( (u32)heapAddress + USERHEAP_SIZE ) ); in Initialize()
332 (void*)((u32)sStateManagementThreadStack + STACK_SIZE), STACK_SIZE, in Initialize()
456 static const u32 font[] ATTRIBUTE_ALIGN(32) = in Draw()
749 (void*)((u32)sDataSharingThreadStack + STACK_SIZE), STACK_SIZE, in TransToLobby()
753 (void*)((u32)sUpdateGameInfoThreadStack + STACK_SIZE), STACK_SIZE, in TransToLobby()
961 data = MPDSGetData( &sDSContext, &recvDataSet, (u32)i ); in DataSharingThreadFunc()
[all …]
/RevoEX-2.4-CW4W/build/demos/netdemo/src/
Dcrypto.c65 (void*)((u32)testThreadStack + STACK_SIZE), STACK_SIZE, in main()
132 u32 len; in OSReport()
171 inline static void PrintBinary(const void *buffer, u32 length) in PrintBinary()
173 u32 i; in PrintBinary()
207 u32 keylen; /* in bytes */ in DoTest()