Lines Matching refs:pCppStack
67 char * pCppStack = (char *)alloca( ((nParams+3) * sizeof(sal_Int64)) ); in cpp_call() local
68 char * pCppStackStart = pCppStack; in cpp_call()
86 pCppReturn = *(void **)pCppStack in cpp_call()
91 pCppStack += sizeof(void *); in cpp_call()
97 *(void**)pCppStack = pAdjustedThisPtr; in cpp_call()
98 pCppStack += sizeof( void* ); in cpp_call()
119 pCppStack, pParamTypeDescr ); in cpp_call()
128 pCppStack += sizeof(sal_Int32); // extra long in cpp_call()
139 *(void **)pCppStack = pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
150 *(void **)pCppStack = pCppArgs[nPos] = alloca( pParamTypeDescr->nSize ), in cpp_call()
160 *(void **)pCppStack = pCppArgs[nPos] = pUnoArgs[nPos]; in cpp_call()
165 pCppStack += sizeof(sal_Int32); // standard parameter length in cpp_call()
188 int nStackLongs = (pCppStack - pCppStackStart)/sizeof(sal_Int32); in cpp_call()