Lines Matching refs:pDS
48 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverFlow )\ argument
56 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
58 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverFlow )\ argument
72 if ( (pDS - pStart) % 2) \
73 ++pDS; \
74 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[1]; \
75 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
78 #define INSERT_FLOAT( pSV, nr, pFPR, pDS, bOverFlow ) \ argument
87 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
89 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS, pStart, bOverFlow ) \ argument
105 if ( (pDS - pStart) % 2) \
106 ++pDS; \
107 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[1]; \
108 *pDS++ = reinterpret_cast<sal_uInt32 *>( pSV )[0]; \
111 #define INSERT_INT16( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
117 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
119 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
125 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );