Lines Matching refs:pGPR

208     sal_uInt32 *pGPR,
218 sal_uInt32 *pGPR, in callVirtualMethod() argument
244 (*pFunc)(pGPR[0], pGPR[1], pGPR[2], pGPR[3]); in callVirtualMethod()
259 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
261 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
268 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow ) \ argument
275 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
276 pGPR[nr++] = *(reinterpret_cast<sal_uInt32 *>( pSV ) + 1); \
290 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow ) \ argument
291 INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow) \
292 INSERT_INT32( ((sal_uInt32*)pSV)+1, nr, pGPR, pDS, bOverflow)
296 INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow)
299 INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow )
301 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverflow ) \ argument
303 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
309 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverflow ) \ argument
311 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
331 sal_uInt32 pGPR[arm::MAX_GPR_REGS]; in cpp_call() local
357 INSERT_INT32( &pCppReturn, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
363 INSERT_INT32( &pAdjustedThisPtr, nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
395 INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart, bOverFlow ); in cpp_call()
403 INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
408 INSERT_INT16( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
412 INSERT_INT8( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
415 INSERT_FLOAT( pCppArgs[nPos], nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
418 INSERT_DOUBLE( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart, bOverFlow ); in cpp_call()
455 INSERT_INT32( &(pCppArgs[nPos]), nGPR, pGPR, pStack, bOverFlow ); in cpp_call()
466 pGPR, nGPR); in cpp_call()