Lines Matching refs:pHeader

203 								sal_Int8 * & pHeader )  in StaticFillHeader()  argument
212 *(pHeader++) = ( n_ConstHeader >> 0 ) & 0xFF; in StaticFillHeader()
213 *(pHeader++) = ( n_ConstHeader >> 8 ) & 0xFF; in StaticFillHeader()
214 *(pHeader++) = ( n_ConstHeader >> 16 ) & 0xFF; in StaticFillHeader()
215 *(pHeader++) = ( n_ConstHeader >> 24 ) & 0xFF; in StaticFillHeader()
218 *(pHeader++) = ( n_ConstCurrentVersion >> 0 ) & 0xFF; in StaticFillHeader()
219 *(pHeader++) = ( n_ConstCurrentVersion >> 8 ) & 0xFF; in StaticFillHeader()
223 *(pHeader++) = static_cast< sal_Int8 >(( nIterationCount >> 0 ) & 0xFF); in StaticFillHeader()
224 *(pHeader++) = static_cast< sal_Int8 >(( nIterationCount >> 8 ) & 0xFF); in StaticFillHeader()
225 *(pHeader++) = static_cast< sal_Int8 >(( nIterationCount >> 16 ) & 0xFF); in StaticFillHeader()
226 *(pHeader++) = static_cast< sal_Int8 >(( nIterationCount >> 24 ) & 0xFF); in StaticFillHeader()
229 *(pHeader++) = static_cast< sal_Int8 >(( nSize >> 0 ) & 0xFF); in StaticFillHeader()
230 *(pHeader++) = static_cast< sal_Int8 >(( nSize >> 8 ) & 0xFF); in StaticFillHeader()
231 *(pHeader++) = static_cast< sal_Int8 >(( nSize >> 16 ) & 0xFF); in StaticFillHeader()
232 *(pHeader++) = static_cast< sal_Int8 >(( nSize >> 24 ) & 0xFF); in StaticFillHeader()
236 *(pHeader++) = static_cast< sal_Int8 >(( nEncAlgID >> 0 ) & 0xFF); in StaticFillHeader()
237 *(pHeader++) = static_cast< sal_Int8 >(( nEncAlgID >> 8 ) & 0xFF); in StaticFillHeader()
238 *(pHeader++) = static_cast< sal_Int8 >(( nEncAlgID >> 16 ) & 0xFF); in StaticFillHeader()
239 *(pHeader++) = static_cast< sal_Int8 >(( nEncAlgID >> 24 ) & 0xFF); in StaticFillHeader()
243 *(pHeader++) = static_cast< sal_Int8 >(( nChecksumAlgID >> 0 ) & 0xFF); in StaticFillHeader()
244 *(pHeader++) = static_cast< sal_Int8 >(( nChecksumAlgID >> 8 ) & 0xFF); in StaticFillHeader()
245 *(pHeader++) = static_cast< sal_Int8 >(( nChecksumAlgID >> 16 ) & 0xFF); in StaticFillHeader()
246 *(pHeader++) = static_cast< sal_Int8 >(( nChecksumAlgID >> 24 ) & 0xFF); in StaticFillHeader()
250 *(pHeader++) = static_cast< sal_Int8 >(( nDerivedKeySize >> 0 ) & 0xFF); in StaticFillHeader()
251 *(pHeader++) = static_cast< sal_Int8 >(( nDerivedKeySize >> 8 ) & 0xFF); in StaticFillHeader()
252 *(pHeader++) = static_cast< sal_Int8 >(( nDerivedKeySize >> 16 ) & 0xFF); in StaticFillHeader()
253 *(pHeader++) = static_cast< sal_Int8 >(( nDerivedKeySize >> 24 ) & 0xFF); in StaticFillHeader()
257 *(pHeader++) = static_cast< sal_Int8 >(( nKeyAlgID >> 0 ) & 0xFF); in StaticFillHeader()
258 *(pHeader++) = static_cast< sal_Int8 >(( nKeyAlgID >> 8 ) & 0xFF); in StaticFillHeader()
259 *(pHeader++) = static_cast< sal_Int8 >(( nKeyAlgID >> 16 ) & 0xFF); in StaticFillHeader()
260 *(pHeader++) = static_cast< sal_Int8 >(( nKeyAlgID >> 24 ) & 0xFF); in StaticFillHeader()
263 *(pHeader++) = static_cast< sal_Int8 >(( nSaltLength >> 0 ) & 0xFF); in StaticFillHeader()
264 *(pHeader++) = static_cast< sal_Int8 >(( nSaltLength >> 8 ) & 0xFF); in StaticFillHeader()
267 *(pHeader++) = static_cast< sal_Int8 >(( nIVLength >> 0 ) & 0xFF); in StaticFillHeader()
268 *(pHeader++) = static_cast< sal_Int8 >(( nIVLength >> 8 ) & 0xFF); in StaticFillHeader()
271 *(pHeader++) = static_cast< sal_Int8 >(( nDigestLength >> 0 ) & 0xFF); in StaticFillHeader()
272 *(pHeader++) = static_cast< sal_Int8 >(( nDigestLength >> 8 ) & 0xFF); in StaticFillHeader()
275 *(pHeader++) = static_cast< sal_Int8 >(( nMediaTypeLength >> 0 ) & 0xFF); in StaticFillHeader()
276 *(pHeader++) = static_cast< sal_Int8 >(( nMediaTypeLength >> 8 ) & 0xFF); in StaticFillHeader()
279 rtl_copyMemory ( pHeader, rData->m_aSalt.getConstArray(), nSaltLength ); in StaticFillHeader()
280 pHeader += nSaltLength; in StaticFillHeader()
283 rtl_copyMemory ( pHeader, rData->m_aInitVector.getConstArray(), nIVLength ); in StaticFillHeader()
284 pHeader += nIVLength; in StaticFillHeader()
287 rtl_copyMemory ( pHeader, rData->m_aDigest.getConstArray(), nDigestLength ); in StaticFillHeader()
288 pHeader += nDigestLength; in StaticFillHeader()
291 rtl_copyMemory ( pHeader, aMediaType.getStr(), nMediaTypeLength ); in StaticFillHeader()
292 pHeader += nMediaTypeLength; in StaticFillHeader()