Lines Matching refs:pSV
188 #define INSERT_FLOAT( pSV, nr, pFPR, pDS, bOverflow ) \ argument
190 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
194 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
196 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS, bOverflow ) \ argument
198 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
202 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
204 #define INSERT_INT64( pSV, nr, pGPR, pDS, bOverflow ) \ argument
206 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
210 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
212 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
214 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
218 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
220 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverflow ) \ argument
222 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
226 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
228 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverflow ) \ argument
230 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
234 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );