Lines Matching refs:pGPR

162         sal_uInt64 *pGPR, sal_uInt32 nGPR,  in callVirtualMethod()  argument
180 fprintf( stderr, "0x%lx, ", pGPR[i] ); in callVirtualMethod()
231 (*pFunc)(pGPR[0], pGPR[1], pGPR[2], pGPR[3], pGPR[4], pGPR[5], pGPR[6], pGPR[7]); in callVirtualMethod()
253 #define INSERT_FLOAT( pSV, nfr, pFPR, ngr, pGPR, pDS, bOverflow ) \ argument
257 pGPR[ngr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
263 #define INSERT_DOUBLE( pSV, nfr, pFPR, ngr, pGPR, pDS, bOverflow ) \ argument
267 pGPR[ngr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
273 #define INSERT_INT64( pSV, nr, pGPR, pDS, bOverflow ) \ argument
275 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
281 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
283 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
289 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverflow ) \ argument
291 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
297 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverflow ) \ argument
299 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
317 sal_uInt64 pGPR[ia64::MAX_GPR_REGS]; in cpp_call() local
357 INSERT_INT64( &pCppReturn, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
366 INSERT_INT64( &pAdjustedThisPtr, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
404 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
412 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
420 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
427 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
434 … INSERT_FLOAT( pCppArgs[nPos], nFPR, pFPR, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
440 … INSERT_DOUBLE( pCppArgs[nPos], nFPR, pFPR, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
491 INSERT_INT64( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
501 pGPR, nGPR, in cpp_call()