Lines Matching refs:pSV
137 #define INSERT_INT32( pSV, pDS )\ argument
138 *pDS++ = *reinterpret_cast<sal_uInt32 *>( pSV );
140 #define INSERT_INT64( pSV, pDS )\ argument
141 INSERT_INT32( pSV, pDS ) \
142 INSERT_INT32( ((sal_uInt32*)pSV)+1, pDS )
144 #define INSERT_FLOAT( pSV, pDS ) \ argument
145 INSERT_INT32( pSV, pDS )
147 #define INSERT_DOUBLE( pSV, pDS ) \ argument
148 INSERT_INT64( pSV, pDS )
150 #define INSERT_INT16( pSV, pDS ) \ argument
151 *pDS++ = *reinterpret_cast<sal_uInt16 *>( pSV );
153 #define INSERT_INT8( pSV, pDS ) \ argument
154 *pDS++ = *reinterpret_cast<sal_uInt8 *>( pSV );