Lines Matching refs:pSV
256 #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
286 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
290 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
292 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
294 pGPR[nr++] = *reinterpret_cast<sal_Int32 *>( pSV ); \
298 *pDS++ = *reinterpret_cast<sal_Int32 *>( pSV );
300 #define INSERT_UINT32( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
302 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
306 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
308 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
310 pGPR[nr++] = *reinterpret_cast<sal_Int16 *>( pSV ); \
314 *pDS++ = *reinterpret_cast<sal_Int16 *>( pSV );
316 #define INSERT_UINT16( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
318 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
322 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
324 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
326 pGPR[nr++] = *reinterpret_cast<sal_Int8 *>( pSV ); \
330 *pDS++ = *reinterpret_cast<sal_Int8 *>( pSV );
332 #define INSERT_UINT8( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
334 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
338 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );