Lines Matching refs:pSV
216 #define INSERT_FLOAT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
218 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
220 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
222 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
224 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
226 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
228 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
230 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
232 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
234 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
236 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
238 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
240 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
242 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
244 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );