| /RvlSDK-2.1/build/demos/memdemo/src/ |
| D | exp-1.c | 161 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-2.1/build/libraries/mtx/src/ |
| D | mtx44.c | 112 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 …]
|
| D | mtx.c | 2545 f32 tmp; in C_MTXLightFrustum() local 2555 tmp = 1.0f / (r - l); in C_MTXLightFrustum() 2556 m[0][0] = ((2*n) * tmp) * scaleS; in C_MTXLightFrustum() 2558 m[0][2] = (((r + l) * tmp) * scaleS) - transS; in C_MTXLightFrustum() 2561 tmp = 1.0f / (t - b); in C_MTXLightFrustum() 2563 m[1][1] = ((2*n) * tmp) * scaleT; in C_MTXLightFrustum() 2564 m[1][2] = (((t + b) * tmp) * scaleT) - transT; in C_MTXLightFrustum() 2677 f32 tmp; in C_MTXLightOrtho() local 2687 tmp = 1.0f / (r - l); in C_MTXLightOrtho() 2688 m[0][0] = (2.0f * tmp * scaleS); in C_MTXLightOrtho() [all …]
|
| /RvlSDK-2.1/build/demos/thpdemo/src/THPPlayer/ |
| D | THPVideoDecode.c | 257 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()
|
| D | THPAudioDecode.c | 210 s32 tmp, size, readFrame, frameNumber; in AudioDecoderForOnMemory() local 243 tmp = *(s32 *)(readBuffer.ptr); in AudioDecoderForOnMemory() 245 size = tmp; in AudioDecoderForOnMemory()
|
| /RvlSDK-2.1/build/demos/thpdemo/src/THPPlayerStrmAX/ |
| D | THPVideoDecode.c | 253 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()
|
| D | THPAudioDecode.c | 234 s32 tmp, size, readFrame, frameNumber; in AudioDecoderForOnMemory() local 271 tmp = *(s32 *)(readBuffer.ptr); in AudioDecoderForOnMemory() 273 size = tmp; in AudioDecoderForOnMemory()
|
| D | THPPlayer.c | 1686 u64 tmp; in StreamReInit() local 1747 tmp = StreamInfo.boundary[index] % bufferSampleNum; in StreamReInit() 1749 StreamInfo.boundary[index] = tmp - offset1; in StreamReInit() 1812 tmp = StreamInfo.boundary[index] % bufferSampleNum; in StreamReInit() 1814 if (tmp > (bufferSampleNum >> 1)) in StreamReInit() 1816 StreamInfo.boundary[index] = tmp - offset1; in StreamReInit() 1820 StreamInfo.boundary[index] = tmp + (bufferSampleNum - offset1); in StreamReInit() 2037 u64 tmp; in StreamReInit() local 2097 tmp = StreamInfo.boundary[index] % bufferSampleNum; in StreamReInit() 2099 StreamInfo.boundary[index] = tmp - offset1; in StreamReInit() [all …]
|
| /RvlSDK-2.1/build/tools/darch/src/ |
| D | fst.c | 39 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()
|
| D | create.c | 207 DirStructure* tmp; in freeDir() local 211 tmp = child->next; in freeDir() 213 child = tmp; in freeDir() 224 tmp = file->next; in freeDir() 226 file = tmp; in freeDir()
|
| /RvlSDK-2.1/build/libraries/cx/src/ |
| D | CXUncompression.c | 330 u8 tmp = *(pSrc++); in CXUnfilterDiff() local 332 sum += tmp; in CXUnfilterDiff() 341 u16 tmp = CXiConvertEndian16_( *(u16*)pSrc ); in CXUnfilterDiff() local 344 sum += tmp; in CXUnfilterDiff()
|
| D | CXCompression.c | 668 u8 tmp; in HuffCountData() local 681 tmp = (u8)( (srcp[ i ] & 0xf0) >> 4 ); in HuffCountData() 682 table[ tmp ].Freq++; // Store from upper 4 bits forward // Either is OK in HuffCountData() 683 tmp = (u8)( srcp[ i ] & 0x0f ); in HuffCountData() 684 table[ tmp ].Freq++; // The problem is the encoding in HuffCountData() 970 u16 tmp = 0; in HuffMakeHuffTree() local 974 tmp = info->huffTable[ info->huffTreeCtrl[i].leftNodeNo ].HWord; in HuffMakeHuffTree() 978 if ( info->huffTable[info->huffTreeCtrl[i].rightNodeNo ].HWord > tmp ) in HuffMakeHuffTree() 983 if ( (tmp != 0) || (tmpRightFlag) ) in HuffMakeHuffTree() 1219 u8 tmp; in HuffConvertData() local [all …]
|
| /RvlSDK-2.1/build/libraries/demo/src/ |
| D | DEMOAVX.c | 130 u32 tmp; in DEMOAVXGetNumFilled() local 135 tmp = __AVX_num_filled; in DEMOAVXGetNumFilled() 140 return(tmp); in DEMOAVXGetNumFilled()
|
| /RvlSDK-2.1/build/demos/wpaddemo/src/ |
| D | pointing.c | 335 int tmp=cx[0]; in getMidpoint() local 337 cx[1]=tmp; in getMidpoint() 338 tmp=cy[0]; in getMidpoint() 340 cy[1]=tmp; in getMidpoint()
|
| /RvlSDK-2.1/build/demos/gxdemo/src/TexGen/ |
| D | spheremap.c | 225 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()
|
| D | parabolicmap.c | 255 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()
|
| D | tg-emboss.c | 257 Mtx tmp; in myAnimeModel() local 333 MTXRotAxisDeg( tmp, &axis, 1.0f ); in myAnimeModel() 334 MTXConcat( myModel.modelMtx, tmp, myModel.modelMtx ); in myAnimeModel()
|
| /RvlSDK-2.1/build/libraries/tc/src/ |
| D | TCFile.cpp | 184 s32 tmp; in TCReadFile() local 308 tmp = getc( fp ); in TCReadFile() 309 *cPtr++ = (u8)tmp; in TCReadFile()
|
| D | TCTPLToolbox.cpp | 2324 u16 tmp; in TCPackTile_CMP() local 2364 tmp = *srcPtr++; in TCPackTile_CMP() 2365 TCFixEndian( (u8*)(&tmp), 2 ); in TCPackTile_CMP() 2366 *buffPtr++ = tmp; in TCPackTile_CMP() 2375 tmp = *srcPtr++; in TCPackTile_CMP() 2376 TCFixCMPWord( &tmp ); in TCPackTile_CMP() 2377 *buffPtr++ = tmp; in TCPackTile_CMP() 2394 u16 tmp; in TCFixCMPWord() local 2397 tmp = *data; in TCFixCMPWord() 2400 *data = ( (tmp & 0x3 ) << 6 ) | in TCFixCMPWord() [all …]
|
| D | TCScriptFile.cpp | 701 char tmp[NAME_SIZE]; in TCGetKeyString() local 730 while( (tmp[count] = name[count]) != '\0' ) in TCGetKeyString() 735 while( (dstStr[count] = tmp[count]) != '\0' ) in TCGetKeyString()
|
| /RvlSDK-2.1/build/demos/kpaddemo/src/ |
| D | kfont.c | 57 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()
|