Lines Matching refs:pSV
211 #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
231 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
233 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
235 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
237 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
239 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );