Lines Matching refs:pSV
210 #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
230 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
232 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
234 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
236 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
238 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );