Home
last modified time | relevance | path

Searched refs:size (Results 1 – 14 of 14) sorted by relevance

/RvlSDK-3.2.3/build/demos/darchdemo/src/
Ddarchdemo.c128 static BOOL CompTest(u32 size, void* dstBuffer) in CompTest() argument
153 if(size != cmpSize) in CompTest()
162 while(i <= size) in CompTest()
192 u32 size; in main() local
202 size = DARCHGetArcSize(fileInfo, fileInfoNum); in main()
203 OSReport(" dstBuffer Size : %d Bytes\n", size); in main()
206 dstBuffer = OSAllocFromMEM2ArenaLo(size,32); in main()
207 OSReport(" dstBuffer Address : 0x%08X - 0x%08X\n", dstBuffer, (void*)((u32)dstBuffer + size)); in main()
210 if(!DARCHCreate(dstBuffer, size, fileInfo, fileInfoNum)) in main()
224 if(CompTest(size, dstBuffer)) in main()
/RvlSDK-3.2.3/build/tools/darch/src/
Dutils.c40 void CopyUtility(int srcfid, int srcoff, int dstfid, int dstoff, int size) in CopyUtility() argument
68 while (copiedSize < size) in CopyUtility()
70 copySize = MIN(size - copiedSize, ALLOC_MEMSIZE); in CopyUtility()
109 BOOL DiffUtility(int fidA, int Aoff, int fidB, int Boff, int size) in DiffUtility() argument
139 while (diffedSize < size) in DiffUtility()
141 diffSize = MIN(size - diffedSize, ALLOC_MEMSIZE/2); in DiffUtility()
/RvlSDK-3.2.3/build/demos/gxdemo/src/Indirect/
Dind-tile-test.c142 u32 size; in TexInit() local
156 size = GXGetTexBufferSize( in TexInit()
165 size/2, // size_even in TexInit()
167 size/2 ); // size_odd in TexInit()
176 size = GXGetTexBufferSize( in TexInit()
184 0x100000 - size, // tmem_even in TexInit()
185 size, // size_even in TexInit()
/RvlSDK-3.2.3/build/demos/wpaddemo/src/
Dmemory.c70 void *myAlloc( u32 size );
79 void *myAlloc( u32 size ) in myAlloc() argument
83 ptr = MEMAllocFromAllocator(&DemoAllocator2, size); in myAlloc()
Dwpad_seqdemo.c97 static void *myAlloc ( u32 size );
480 static void *myAlloc( u32 size ) in myAlloc() argument
484 ptr = MEMAllocFromExpHeap(hExpHeap, size); in myAlloc()
Dwpad_spdemo.c116 static void *myAlloc ( u32 size );
445 static void *myAlloc( u32 size ) in myAlloc() argument
449 ptr = MEMAllocFromExpHeap(hExpHeap, size); in myAlloc()
Ddummy_checker.c76 static void *myAlloc ( u32 size );
406 static void *myAlloc( u32 size ) in myAlloc() argument
410 ptr = MEMAllocFromAllocator(&DemoAllocator2, size); in myAlloc()
Dwpad_axdemo.c243 void* myAlloc ( u32 size );
677 void *myAlloc( u32 size ) in myAlloc() argument
681 ptr = MEMAllocFromExpHeap(hExpHeap, size); in myAlloc()
/RvlSDK-3.2.3/build/tools/darch/include/
Ddarch.h208 extern void CopyUtility(int srcfid, int srcoff, int dstfid, int dstoff, int size);
209 extern BOOL DiffUtility(int fidA, int Aoff, int fidB, int Boff, int size);
/RvlSDK-3.2.3/build/demos/kpaddemo/src/
Dweight.c50 static void *myAlloc ( u32 size ) ;
142 static void *myAlloc( u32 size ) in myAlloc() argument
146 ptr = MEMAllocFromAllocator( &DemoAllocator2, size ) ; in myAlloc()
/RvlSDK-3.2.3/build/libraries/cx/src/
DCXUncompression.c37 u32 size = CXiConvertEndian_( *(u32*)srcp ) >> 8; in CXGetUncompressedSize() local
38 if ( size == 0 ) in CXGetUncompressedSize()
40 size = CXiConvertEndian_( *((u32*)srcp + 1) ); in CXGetUncompressedSize()
42 return size; in CXGetUncompressedSize()
/RvlSDK-3.2.3/build/demos/wbcdemo/src/
Dhandling_weight.c68 static void *myAlloc ( u32 size );
370 static void *myAlloc(u32 size) in myAlloc() argument
374 ptr = MEMAllocFromAllocator(&DemoAllocator2, size); in myAlloc()
/RvlSDK-3.2.3/build/demos/gxdemo/src/TexGen/
Dtg-shadow2.c288 u32 size; in DrawInit() local
326 size = GXGetTexBufferSize( in DrawInit()
332 sc->shadowTexData = MEMAllocFromAllocator(&DemoAllocator1, size); in DrawInit()
/RvlSDK-3.2.3/build/libraries/kpad/src/
DKPAD.c132 static void *get_ring_buffer_by_kpad1_style( s32 chan, void *buf, u32 size ) ;
165 u32 size ;
172 size = sizeof( WPADStatus ) ;
176 size = sizeof( WPADFSStatus ) ;
180 size = sizeof( WPADCLStatus ) ;
224 memcpy((u8 *)buf + idx2 * size,
226 size) ;
968 if ( wobj_p->size ) { in get_kobj()