Lines Matching refs:pStackLongs
54 sal_Int32 * pStackLongs, in callVirtualMethod() argument
127 fpr[f++] = *((double *)pStackLongs); /* store in register */ in callVirtualMethod()
131 *p++ = *pStackLongs; /* or on the parameter stack */ in callVirtualMethod()
132 *p++ = *(pStackLongs + 1); in callVirtualMethod()
134 pStackLongs += 2; in callVirtualMethod()
140 fpr[f++] = *((float *)pStackLongs); in callVirtualMethod()
144 *((float *)p) = *((float *)pStackLongs); in callVirtualMethod()
147 pStackLongs += 1; in callVirtualMethod()
153 gpr[n++] = *pStackLongs; in callVirtualMethod()
157 *p++ = *pStackLongs; in callVirtualMethod()
160 gpr[n++] = *(pStackLongs+1); in callVirtualMethod()
164 *p++ = *(pStackLongs+1); in callVirtualMethod()
165 pStackLongs += 2; in callVirtualMethod()
170 gpr[n++] = *((unsigned short*)pStackLongs); in callVirtualMethod()
173 *p++ = *((unsigned short *)pStackLongs); in callVirtualMethod()
175 pStackLongs += 1; in callVirtualMethod()
180 gpr[n++] = *((char *)pStackLongs); in callVirtualMethod()
183 *p++ = *((char *)pStackLongs); in callVirtualMethod()
185 pStackLongs += 1; in callVirtualMethod()
190 gpr[n++] = *pStackLongs; in callVirtualMethod()
193 *p++ = *pStackLongs; in callVirtualMethod()
195 pStackLongs += 1; in callVirtualMethod()