Home
last modified time | relevance | path

Searched refs:pSV (Results 1 – 12 of 12) sorted by relevance

/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_powerpc64/
H A Duno2cpp.cxx256 #define INSERT_FLOAT( pSV, nr, pFPR, nGPR, pDS, bOverFlow ) \ argument
260 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
264 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
266 #define INSERT_DOUBLE( pSV, nr, pFPR, nGPR, pDS, bOverFlow ) \ argument
270 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
274 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
276 #define INSERT_INT64( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
278 pGPR[nr++] = *reinterpret_cast<sal_Int64 *>( pSV ); \
282 *pDS++ = *reinterpret_cast<sal_Int64 *>( pSV );
284 #define INSERT_UINT64( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_hppa/
H A Duno2cpp.cxx48 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverFlow )\ argument
51 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
56 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
58 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverFlow )\ argument
65 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
66 pGPR[nr++] = *(reinterpret_cast<sal_uInt32 *>( pSV ) + 1); \
74 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[1]; \
75 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
78 #define INSERT_FLOAT( pSV, nr, pFPR, pDS, bOverFlow ) \ argument
82 pDouble[0] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_arm/
H A Duno2cpp.cxx259 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
261 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
265 *pDS++ = *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); \
286 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
287 *pDS++ = 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) \
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_arm/
H A Duno2cpp.cxx259 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
261 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
265 *pDS++ = *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); \
286 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
287 *pDS++ = 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) \
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_s390x/
H A Duno2cpp.cxx85 #define INSERT_FLOAT( pSV, nr, pFPR, pDS ) \ argument
89 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
92 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); \
95 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
97 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
99 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
101 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
103 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
105 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
107 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_alpha/
H A Duno2cpp.cxx88 #define INSERT_FLOAT( pSV, nr, pFPR, pDS ) \ argument
92 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
95 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); \
98 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
100 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
102 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
104 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
106 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
108 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
110 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_ia64/
H A Duno2cpp.cxx253 #define INSERT_FLOAT( pSV, nfr, pFPR, ngr, pGPR, pDS, bOverflow ) \ argument
255 pFPR[nfr++] = *reinterpret_cast<float *>( pSV ); \
257 pGPR[ngr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
261 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
263 #define INSERT_DOUBLE( pSV, nfr, pFPR, ngr, pGPR, pDS, bOverflow ) \ argument
265 pFPR[nfr++] = *reinterpret_cast<double *>( pSV ); \
267 pGPR[ngr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
271 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
273 #define INSERT_INT64( pSV, nr, pGPR, pDS, bOverflow ) \ argument
275 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_powerpc64/
H A Duno2cpp.cxx188 #define INSERT_FLOAT( pSV, nr, pFPR, pDS, bOverflow ) \ argument
190 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
194 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
196 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS, bOverflow ) \ argument
198 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
202 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
204 #define INSERT_INT64( pSV, nr, pGPR, pDS, bOverflow ) \ argument
206 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
210 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
212 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/s5abi_macosx_x86-64/
H A Duno2cpp.cxx211 #define INSERT_FLOAT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
213 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
215 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
217 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
219 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
221 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
223 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
225 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
227 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
229 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_x86-64/
H A Duno2cpp.cxx210 #define INSERT_FLOAT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
212 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
214 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
216 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
218 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
220 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
222 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
224 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
226 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
228 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/
H A Duno2cpp.cxx219 #define INSERT_FLOAT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
221 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
223 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
225 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
227 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
229 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
231 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
233 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
235 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
237 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
[all …]
/trunk/main/bridges/source/cpp_uno/gcc3_linux_m68k/
H A Duno2cpp.cxx137 #define INSERT_INT32( pSV, pDS )\ argument
138 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
140 #define INSERT_INT64( pSV, pDS )\ argument
141 INSERT_INT32( pSV, pDS ) \
142 INSERT_INT32( ((sal_uInt32*)pSV)+1, pDS )
144 #define INSERT_FLOAT( pSV, pDS ) \ argument
145 INSERT_INT32( pSV, pDS )
147 #define INSERT_DOUBLE( pSV, pDS ) \ argument
148 INSERT_INT64( pSV, pDS )
150 #define INSERT_INT16( pSV, pDS ) \ argument
[all …]