Lines Matching refs:pSV
253 #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 ); \
279 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
281 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
283 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
287 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
289 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverflow ) \ argument
291 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
295 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
297 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverflow ) \ argument
299 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
303 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );