Lines Matching refs:pSV
48 #define INSERT_INT32( pSV, nr, pGPR, pDS, bOverFlow )\ argument
51 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
56 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
58 #define INSERT_INT64( pSV, nr, pGPR, pDS, pStart, bOverFlow )\ argument
65 pGPR[nr++] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
66 pGPR[nr++] = *(reinterpret_cast<sal_uInt32 *>( pSV ) + 1); \
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
82 pDouble[0] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
87 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
89 #define INSERT_DOUBLE( pSV, nr, pFPR, pDS, pStart, bOverFlow ) \ argument
97 pDouble[0] = *reinterpret_cast<sal_uInt32 *>( pSV ); \
98 pDouble[1] = *(reinterpret_cast<sal_uInt32 *>( pSV ) + 1); \
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
113 pGPR[nr++] = *reinterpret_cast<sal_uInt16 *>( pSV ); \
117 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
119 #define INSERT_INT8( pSV, nr, pGPR, pDS, bOverFlow ) \ argument
121 pGPR[nr++] = *reinterpret_cast<sal_uInt8 *>( pSV ); \
125 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );