Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 28) sorted by relevance

12

/RvlSDK-3.2.2/build/demos/memdemo/src/
Dexp-1.c161 void* tmp; in SampleExpHeap() local
162 tmp = MEMAllocFromExpHeapEx( hExpHeap, 300, 16 ); in SampleExpHeap()
163 ASSERT( tmp != NULL ); in SampleExpHeap()
164 memcpy( tmp, pMBlocks[1], 200 ); in SampleExpHeap()
166 pMBlocks[1] = tmp; in SampleExpHeap()
/RvlSDK-3.2.2/build/libraries/mtx/src/
Dmtx44.c112 f32 tmp; in C_MTXFrustum() local
123 tmp = 1.0f / (r - l); in C_MTXFrustum()
124 m[0][0] = (2*n) * tmp; in C_MTXFrustum()
126 m[0][2] = (r + l) * tmp; in C_MTXFrustum()
129 tmp = 1.0f / (t - b); in C_MTXFrustum()
131 m[1][1] = (2*n) * tmp; in C_MTXFrustum()
132 m[1][2] = (t + b) * tmp; in C_MTXFrustum()
138 tmp = 1.0f / (f - n); in C_MTXFrustum()
141 m[2][2] = -(n) * tmp; in C_MTXFrustum()
142 m[2][3] = -(f*n) * tmp; in C_MTXFrustum()
[all …]
Dmtx.c2537 f32 tmp; in C_MTXLightFrustum() local
2547 tmp = 1.0f / (r - l); in C_MTXLightFrustum()
2548 m[0][0] = ((2*n) * tmp) * scaleS; in C_MTXLightFrustum()
2550 m[0][2] = (((r + l) * tmp) * scaleS) - transS; in C_MTXLightFrustum()
2553 tmp = 1.0f / (t - b); in C_MTXLightFrustum()
2555 m[1][1] = ((2*n) * tmp) * scaleT; in C_MTXLightFrustum()
2556 m[1][2] = (((t + b) * tmp) * scaleT) - transT; in C_MTXLightFrustum()
2669 f32 tmp; in C_MTXLightOrtho() local
2679 tmp = 1.0f / (r - l); in C_MTXLightOrtho()
2680 m[0][0] = (2.0f * tmp * scaleS); in C_MTXLightOrtho()
[all …]
/RvlSDK-3.2.2/build/demos/thpdemo/src/THPPlayer/
DTHPVideoDecode.c257 s32 tmp, size, readFrame, frameNumber; in VideoDecoderForOnMemory() local
297 tmp = *(s32 *)(readBuffer.ptr); in VideoDecoderForOnMemory()
299 size = tmp; in VideoDecoderForOnMemory()
331 tmp = *(s32 *)(readBuffer.ptr); in VideoDecoderForOnMemory()
333 size = tmp; in VideoDecoderForOnMemory()
DTHPAudioDecode.c210 s32 tmp, size, readFrame, frameNumber; in AudioDecoderForOnMemory() local
243 tmp = *(s32 *)(readBuffer.ptr); in AudioDecoderForOnMemory()
245 size = tmp; in AudioDecoderForOnMemory()
/RvlSDK-3.2.2/build/demos/thpdemo/src/THPPlayerStrmAX/
DTHPVideoDecode.c253 s32 tmp, size, readFrame, frameNumber; in VideoDecoderForOnMemory() local
293 tmp = *(s32 *)(readBuffer.ptr); in VideoDecoderForOnMemory()
295 size = tmp; in VideoDecoderForOnMemory()
327 tmp = *(s32 *)(readBuffer.ptr); in VideoDecoderForOnMemory()
329 size = tmp; in VideoDecoderForOnMemory()
DTHPAudioDecode.c234 s32 tmp, size, readFrame, frameNumber; in AudioDecoderForOnMemory() local
271 tmp = *(s32 *)(readBuffer.ptr); in AudioDecoderForOnMemory()
273 size = tmp; in AudioDecoderForOnMemory()
DTHPPlayer.c1627 u64 tmp; in StreamReInit() local
1687 tmp = StreamInfo.boundary[index] % bufferSampleNum; in StreamReInit()
1689 StreamInfo.boundary[index] = tmp - offset1; in StreamReInit()
1752 tmp = StreamInfo.boundary[index] % bufferSampleNum; in StreamReInit()
1754 if (tmp > (bufferSampleNum >> 1)) in StreamReInit()
1756 StreamInfo.boundary[index] = tmp - offset1; in StreamReInit()
1760 StreamInfo.boundary[index] = tmp + (bufferSampleNum - offset1); in StreamReInit()
1965 u64 tmp; in FillStreamBuffer() local
1974 tmp = StreamInfo.endSampleNum; in FillStreamBuffer()
1979 tmp += actualSample; in FillStreamBuffer()
[all …]
/RvlSDK-3.2.2/build/tools/darch/src/
Dfst.c39 char* tmp; in makeTmpFileNames() local
42 if (NULL == (tmp = getenv("TMP")) ) in makeTmpFileNames()
44 if (NULL == (tmp = getenv("TEMP")) ) in makeTmpFileNames()
46 tmp = "c:\\windows\\temp"; in makeTmpFileNames()
52 fprintf(stdout, "Use %s for temporary directory\n", tmp); in makeTmpFileNames()
55 strcpy((void*)tmpFilePrefix, (void*)tmp); in makeTmpFileNames()
/RvlSDK-3.2.2/build/libraries/demo/src/
DDEMOAVX.c130 u32 tmp; in DEMOAVXGetNumFilled() local
135 tmp = __AVX_num_filled; in DEMOAVXGetNumFilled()
140 return(tmp); in DEMOAVXGetNumFilled()
/RvlSDK-3.2.2/X86/bin/
DmakemasterNF26 OUTPUTNAME=tmp
27 DEVDLFNAME=tmp.dev.dlf
Dmakemaster26 OUTPUTNAME=tmp
27 DEVDLFNAME=tmp.dev.dlf
DmakemasterNFX26 OUTPUTNAME=tmp
27 DEVDLFNAME=tmp.dev.dlf
DmakemasterX26 OUTPUTNAME=tmp
27 DEVDLFNAME=tmp.dev.dlf
/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c745 u8 tmp; in HuffCountData() local
758 tmp = (u8)( (srcp[ i ] & 0xf0) >> 4 ); in HuffCountData()
759 table[ tmp ].Freq++; // Store from upper 4 bits first // Either is OK in HuffCountData()
760 tmp = (u8)( srcp[ i ] & 0x0f ); in HuffCountData()
761 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData()
1047 u16 tmp = 0; in HuffMakeHuffTree() local
1051 tmp = info->huffTable[ info->huffTreeCtrl[i].leftNodeNo ].HWord; in HuffMakeHuffTree()
1055 if ( info->huffTable[info->huffTreeCtrl[i].rightNodeNo ].HWord > tmp ) in HuffMakeHuffTree()
1060 if ( (tmp != 0) || (tmpRightFlag) ) in HuffMakeHuffTree()
1297 u8 tmp; in HuffConvertData() local
[all …]
DCXUncompression.c777 u32 tmp; in RCGetData_() local
778 tmp = state->range / info->total; in RCGetData_()
779 state->low += info->low_cnt[ val ] * tmp; in RCGetData_()
780 state->range = info->freq[ val ] * tmp; in RCGetData_()
913 u8 tmp = *(pSrc++); in CXUnfilterDiff() local
915 sum += tmp; in CXUnfilterDiff()
924 u16 tmp = CXiConvertEndian16_( *(u16*)pSrc ); in CXUnfilterDiff() local
927 sum += tmp; in CXUnfilterDiff()
DCXSecureUncompression.c676 u8 tmp = *(pSrc++); in CXSecureUnfilterDiff() local
682 sum += tmp; in CXSecureUnfilterDiff()
691 u16 tmp = CXiConvertEndian16_( *(u16*)pSrc ); in CXSecureUnfilterDiff() local
699 sum += tmp; in CXSecureUnfilterDiff()
1212 u32 tmp; in RCGetData_() local
1213 tmp = state->range / info->total; in RCGetData_()
1214 state->low += info->low_cnt[ val ] * tmp; in RCGetData_()
1215 state->range = info->freq[ val ] * tmp; in RCGetData_()
/RvlSDK-3.2.2/build/demos/gxdemo/src/TexGen/
Dspheremap.c225 Mtx tm, tc, tmp; in drawSphereMap() local
411 MTXRotDeg(tmp, 'y', angle2[i]); in drawSphereMap()
412 MTXConcat(tm, tmp, tm); in drawSphereMap()
414 MTXRotDeg(tmp, axis1[i], angle1[i]); in drawSphereMap()
415 MTXConcat(tm, tmp, tm); in drawSphereMap()
Dparabolicmap.c255 Mtx tm, tc, tmp; in drawParaboloidMap() local
451 MTXRotDeg(tmp, 'y', angle2[a2]); in drawParaboloidMap()
452 MTXConcat(tm, tmp, tm); in drawParaboloidMap()
454 MTXRotDeg(tmp, axis1[a1], angle1[a1]); in drawParaboloidMap()
455 MTXConcat(tm, tmp, tm); in drawParaboloidMap()
Dtg-emboss.c270 Mtx tmp; in myAnimeModel() local
346 MTXRotAxisDeg( tmp, &axis, 1.0f ); in myAnimeModel()
347 MTXConcat( myModel.modelMtx, tmp, myModel.modelMtx ); in myAnimeModel()
/RvlSDK-3.2.2/build/libraries/tc/src/
DTCFile.cpp189 s32 tmp; in TCReadFile() local
313 tmp = getc( fp ); in TCReadFile()
314 *cPtr++ = (u8)tmp; in TCReadFile()
DTCTPLToolbox.cpp2329 u16 tmp; in TCPackTile_CMP() local
2369 tmp = *srcPtr++; in TCPackTile_CMP()
2370 TCFixEndian( (u8*)(&tmp), 2 ); in TCPackTile_CMP()
2371 *buffPtr++ = tmp; in TCPackTile_CMP()
2380 tmp = *srcPtr++; in TCPackTile_CMP()
2381 TCFixCMPWord( &tmp ); in TCPackTile_CMP()
2382 *buffPtr++ = tmp; in TCPackTile_CMP()
2399 u16 tmp; in TCFixCMPWord() local
2402 tmp = *data; in TCFixCMPWord()
2405 *data = ( (tmp & 0x3 ) << 6 ) | in TCFixCMPWord()
[all …]
DTCScriptFile.cpp706 char tmp[NAME_SIZE]; in TCGetKeyString() local
735 while( (tmp[count] = name[count]) != '\0' ) in TCGetKeyString()
740 while( (dstStr[count] = tmp[count]) != '\0' ) in TCGetKeyString()
/RvlSDK-3.2.2/build/demos/kpaddemo/src/
Dkfont.c57 void *tmp ; in init_kfont_texture() local
76 tmp = OSAlloc( OS_FONT_ROM_SIZE_SJIS ) ; in init_kfont_texture()
83 tmp = OSAlloc( OS_FONT_ROM_SIZE_ANSI ) ; in init_kfont_texture()
89 (void)OSLoadFont( font, tmp ) ; in init_kfont_texture()
108 OSFree( tmp ) ; in init_kfont_texture()
/RvlSDK-3.2.2/build/demos/kpadOlddemo/src/
Dkfont.c57 void *tmp ; in init_kfont_texture() local
76 tmp = OSAlloc( OS_FONT_ROM_SIZE_SJIS ) ; in init_kfont_texture()
83 tmp = OSAlloc( OS_FONT_ROM_SIZE_ANSI ) ; in init_kfont_texture()
89 (void)OSLoadFont( font, tmp ) ; in init_kfont_texture()
108 OSFree( tmp ) ; in init_kfont_texture()

12