Lines Matching refs:pSV
88 #define INSERT_FLOAT( pSV, nr, pFPR, pDS ) \ argument
92 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
95 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); \
98 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
100 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
102 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
104 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
106 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
108 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
110 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
112 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
114 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
116 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
118 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
120 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
122 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
124 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
126 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );