Lines Matching refs:pSV
85 #define INSERT_FLOAT( pSV, nr, pFPR, pDS ) \ argument
89 pFPR[nr++] = *reinterpret_cast<float *>( pSV ); \
92 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); \
95 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS ) \ argument
97 pFPR[nr++] = *reinterpret_cast<double *>( pSV ); \
99 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV ); // verbatim!
101 #define INSERT_INT64( pSV, nr, pGPR, pDS ) \ argument
103 pGPR[nr++] = *reinterpret_cast<sal_uInt64 *>( pSV ); \
105 *pDS++ = *reinterpret_cast<sal_uInt64 *>( pSV );
107 #define INSERT_INT32( pSV, nr, pGPR, pDS ) \ argument
109 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
111 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
113 #define INSERT_INT16( pSV, nr, pGPR, pDS ) \ argument
115 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
117 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
119 #define INSERT_INT8( pSV, nr, pGPR, pDS ) \ argument
121 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
123 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );