Lines Matching refs:pSV
259 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow ) \ argument
261 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
265 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
268 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow ) \ argument
275 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
276 pGPR[nr++] = *(reinterpret_cast<sal_uInt32 *>( pSV ) + 1); \
286 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
287 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[1]; \
290 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow ) \ argument
291 INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow) \
292 INSERT_INT32( ((sal_uInt32*)pSV)+1, nr, pGPR, pDS, bOverflow)
295 #define INSERT_FLOAT( pSV, nr, pFPR, pDS, bOverflow ) \ argument
296 INSERT_INT32( pSV, nr, pGPR, pDS, bOverflow)
298 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS, pStart, bOverflow ) \ argument
299 INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverflow )
301 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverflow ) \ argument
303 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
307 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
309 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverflow ) \ argument
311 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
315 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );