Home
last modified time | relevance | path

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

/RvlSDK-3.3/include/revolution/cx/
DCXCompression.h64 u32 CXCompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, BOOL exFormat);
66 inline u32 CXCompressLZEx(const u8 *srcp, u32 size, u8 *dstp, void* work) in CXCompressLZEx() argument
68 return CXCompressLZImpl( srcp, size, dstp, work, TRUE ); in CXCompressLZEx()
70 inline u32 CXCompressLZ(const u8 *srcp, u32 size, u8 *dstp, void *work) in CXCompressLZ() argument
72 return CXCompressLZImpl( srcp, size, dstp, work, FALSE ); in CXCompressLZ()
110 u32 CXCompressHuffman( const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, void *work );
DCXSecureUncompression.h195 s32 CXSecureUncompressLH( const u8* srcp, u32 srcSize, u8* dstp, void* work );
211 s32 CXSecureUncompressLRC( const u8* srcp, u32 srcSize, u8* dstp, void* work );
DCXUncompression.h268 void CXUncompressLH( const u8* srcp, u8* dstp, void* work );
284 void CXUncompressLRC( const u8* srcp, u8* dstp, void* work );
/RvlSDK-3.3/build/libraries/cx/src/
DCXCompression.c78 static void LZInitTable( LZCompressInfo * info, void *work );
99 u32 CXCompressLZImpl(const u8 *srcp, u32 size, u8 *dstp, void *work, BOOL exFormat) in CXCompressLZImpl() argument
112 ASSERT( work != NULL ); in CXCompressLZImpl()
131 LZInitTable(&info, work); in CXCompressLZImpl()
318 static void LZInitTable(LZCompressInfo * info, void *work) in LZInitTable() argument
322 info->LZOffsetTable = (s16*)work; in LZInitTable()
323 info->LZByteTable = (s16*)( (u32)work + 4096 * sizeof(s16) ); in LZInitTable()
324 info->LZEndTable = (s16*)( (u32)work + (4096 + 256) * sizeof(s16) ); in LZInitTable()
578 static void HuffInitTable( HuffCompressionInfo* info, void* work, u16 dataNum );
608 u32 CXCompressHuffman( const u8 *srcp, u32 size, u8 *dstp, u8 huffBitSize, void *work ) in CXCompressHuffman() argument
[all …]
DCXUncompression.c469 CXUncompressLH( const u8* srcp, u8* dstp, void* work ) in CXUncompressLH() argument
489 huffTable9 = work; in CXUncompressLH()
490 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in CXUncompressLH()
646 RCInitInfo_( RCCompressionInfo* info, u8 bitSize, void* work ) in RCInitInfo_() argument
652 info->freq = (u32*)work; in RCInitInfo_()
653 info->low_cnt = (u32*)( (u32)work + tableSize * sizeof(u32) ); in RCInitInfo_()
813 CXUncompressLRC( const u8* srcp, u8* dstp, void* work ) in CXUncompressLRC() argument
824 RCInitInfo_( &infoVal, LENGTH_BITS, work ); in CXUncompressLRC()
825 RCInitInfo_( &infoOfs, OFFSET_BITS, (u8*)work + (1 << LENGTH_BITS) * sizeof(u32) * 2 ); in CXUncompressLRC()
DCXSecureUncompression.c857 CXSecureUncompressLH( const u8* srcp, u32 srcSize, u8* dstp, void* work ) in CXSecureUncompressLH() argument
887 huffTable9 = work; in CXSecureUncompressLH()
888 huffTable12 = (u16*)work + (1 << LENGTH_BITS) * 2; in CXSecureUncompressLH()
889 verify_work = (u8*)work + CX_UNCOMPRESS_LH_WORK_SIZE; in CXSecureUncompressLH()
1088 RCInitInfo_( RCCompressionInfo* info, u8 bitSize, void* work ) in RCInitInfo_() argument
1094 info->freq = (u32*)work; in RCInitInfo_()
1095 info->low_cnt = (u32*)( (u32)work + tableSize * sizeof(u32) ); in RCInitInfo_()
1254 CXSecureUncompressLRC( const u8* srcp, u32 srcSize, u8* dstp, void* work ) in CXSecureUncompressLRC() argument
1274 RCInitInfo_( &infoVal, LENGTH_BITS, work ); in CXSecureUncompressLRC()
1275 RCInitInfo_( &infoOfs, OFFSET_BITS, (u8*)work + (1 << LENGTH_BITS) * sizeof(u32) * 2 ); in CXSecureUncompressLRC()
/RvlSDK-3.3/build/demos/pmicdemo/src/
Dpmic_simple.c267 static u8* work; in usePMIC() local
276 work = MEMAllocFromExpHeapEx(mem2Heap, PMIC_MEM2_WORK, 32); in usePMIC()
277 retval = PMICInit(work); in usePMIC()
542 MEMFreeToExpHeap(mem2Heap, work); in usePMIC()
Dpmic_graphic.c56 static u8* work; variable
111 work = MEMAllocFromExpHeapEx(mem2Heap, PMIC_MEM2_WORK, 32); in main()
264 retval = PMICInit(work); in usePMIC()
787 MEMFreeToExpHeap(mem2Heap, work); in shutdown()
/RvlSDK-3.3/include/revolution/
Dthp.h129 s32 THPVideoDecode (void *file, void *tileY, void *tileU, void *tileV, void *work);
Dax.h1044 void* work);
/RvlSDK-3.3/build/buildtools/
Deppccleandepend.sed20 # latest sed keeps newline characters of input file, so just '$' doesn't work
Dcommondefs268 # 29-Jan-06 We will keep ARAM around for RVL_EMU and PRE_RVL targets (so sound can work).
/RvlSDK-3.3/build/demos/axdemo/src/
Daxstream2.c259 static STRM_ERR STRMPrepare ( STRMInfo* strm, char* left, char* right, void* work );
635 static STRM_ERR STRMPrepare(STRMInfo* strm, char* left, char* right, void* work) in STRMPrepare() argument
680 ptr = ((u32)work + 0x1f) & ~0x1f; in STRMPrepare()
/RvlSDK-3.3/vcmv/
DReadme_en.txt123 Confirmed to work with the following components:
140 on relative paths so they should work without any change.
290 * Recompiled with CNT_READ_BACKWARD_COMPATIBLE to work with NADK 2.2.
582 * Made scrolling work at the edges of the screen within VCMV.