Lines Matching refs:pSV
219 #define INSERT_FLOAT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
221 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
223 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
225 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
227 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
229 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
231 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
233 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
235 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
237 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
239 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
241 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
243 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
245 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
247 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );