Lines Matching refs:pCppStack
147 char * pCppStack = in cpp_call() local
149 char * pCppStackStart = pCppStack; in cpp_call()
167 pCppReturn = *(void **)pCppStack = (cppu_relatesToInterface( pReturnTypeDescr ) in cpp_call()
170 pCppStack += sizeof(void *); in cpp_call()
174 *(void**)pCppStack = pThis->pCppI; in cpp_call()
175 pCppStack += sizeof( void* ); in cpp_call()
196 uno_copyAndConvertData( pCppArgs[nPos] = pCppStack, pUnoArgs[nPos], pParamTypeDescr, in cpp_call()
204 pCppStack += sizeof(sal_Int32); // extra long in cpp_call()
215 *(void **)pCppStack = pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
225 *(void **)pCppStack = pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
234 *(void **)pCppStack = pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
239 pCppStack += sizeof(sal_Int32); // standard parameter length in cpp_call()
244 … OSL_ENSURE( !( (pCppStack - pCppStackStart ) & 3), "UNALIGNED STACK !!! (Please DO panic)" ); in cpp_call()
248 (sal_Int32 *)pCppStackStart, (pCppStack - pCppStackStart) / sizeof(sal_Int32) ); in cpp_call()