#include <sal/config.h>
#include <exception>
#include <malloc.h>
#include <typeinfo>
#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/genfunc.hxx>
#include <o3tl/runtimetooustring.hxx>
#include <uno/data.h>
#include "bridge.hxx"
#include "types.hxx"
#include "unointerfaceproxy.hxx"
#include "vtables.hxx"
#include "share.hxx"
#include <stdio.h>
#include <string.h>
Go to the source code of this file.
|
#define | INSERT_FLOAT(pSV, nr, pFPR, nGPR, pDS, bOverflow) |
|
#define | INSERT_DOUBLE(pSV, nr, pFPR, nGPR, pDS, bOverflow) |
|
#define | INSERT_INT64(pSV, nr, pGPR, pDS, bOverflow) |
|
#define | INSERT_INT32(pSV, nr, pGPR, pDS, bOverflow) |
|
#define | INSERT_INT16(pSV, nr, pGPR, pDS, bOverflow) |
|
#define | INSERT_INT8(pSV, nr, pGPR, pDS, bOverflow) |
|
◆ INSERT_DOUBLE
#define INSERT_DOUBLE |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pFPR, |
|
|
|
nGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
Value:
++nGPR; \
pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
else \
bOverflow = true; \
if (bOverflow) \
*pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
Definition at line 248 of file gcc3_linux_powerpc64/uno2cpp.cxx.
◆ INSERT_FLOAT
#define INSERT_FLOAT |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pFPR, |
|
|
|
nGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
Value:
++nGPR; \
pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
else \
bOverflow = true; \
if (bOverflow) \
*pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
Definition at line 238 of file gcc3_linux_powerpc64/uno2cpp.cxx.
◆ INSERT_INT16
#define INSERT_INT16 |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
Value:
pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
else \
bOverflow = true; \
if (bOverflow) \
*pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
Definition at line 274 of file gcc3_linux_powerpc64/uno2cpp.cxx.
◆ INSERT_INT32
#define INSERT_INT32 |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
Value:
pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
else \
bOverflow = true; \
if (bOverflow) \
*pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
Definition at line 266 of file gcc3_linux_powerpc64/uno2cpp.cxx.
◆ INSERT_INT64
#define INSERT_INT64 |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
Value:
pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
else \
bOverflow = true; \
if (bOverflow) \
*pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
Definition at line 258 of file gcc3_linux_powerpc64/uno2cpp.cxx.
◆ INSERT_INT8
#define INSERT_INT8 |
( |
|
pSV, |
|
|
|
nr, |
|
|
|
pGPR, |
|
|
|
pDS, |
|
|
|
bOverflow |
|
) |
| |
◆ MapReturn()
void MapReturn |
( |
long |
r3, |
|
|
long |
r4, |
|
|
double |
dret, |
|
|
typelib_TypeDescriptionReference * |
pReturnType, |
|
|
void * |
pRegisterReturn |
|
) |
| |