Home
last modified time | relevance | path

Searched refs:ppDst (Results 1 – 1 of 1) sorted by relevance

/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/ffcdh/
Dcc_ffcdh.c203 uint8_t **ppDst, /* [in/out] pointer to pointer to destination buffer: in FfcDhWriteBufferBeToBe() argument
211 (*ppDst)[0] = (uint8_t)((curLen>>8) & 0xFF); (*ppDst)[1] = (uint8_t)(curLen & 0xFF); in FfcDhWriteBufferBeToBe()
212 *ppDst += CC_FFCDH_LENGTH_COUNTER_SIZE_IN_BYTES; in FfcDhWriteBufferBeToBe()
213 CC_PalMemCopy(*ppDst, pSrc, curLen); in FfcDhWriteBufferBeToBe()
216 *ppDst += curLen; in FfcDhWriteBufferBeToBe()
238 uint8_t **ppDst, /* [in/out] pointer to pointer to destination buffer: in FfcDhWriteBufferLeToBe() argument
248 (*ppDst)[0] = (uint8_t)((curLen>>8) & 0xFF); (*ppDst)[1] = (uint8_t)(curLen & 0xFF); in FfcDhWriteBufferLeToBe()
249 *ppDst += CC_FFCDH_LENGTH_COUNTER_SIZE_IN_BYTES; in FfcDhWriteBufferLeToBe()
253 (*ppDst)[i] = (uint8_t)(pSrc[j / CC_32BIT_WORD_SIZE] >> ((j % CC_32BIT_WORD_SIZE) << 3)); in FfcDhWriteBufferLeToBe()
257 *ppDst += curLen; in FfcDhWriteBufferLeToBe()
[all …]