Home
last modified time | relevance | path

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

/CTR-SDK-4.2.7-SampleDemos/common/libraries/demo/Utility/
Ddemo_TextureConverter.cpp56 …static s32 DeBlock(const u8* pSrc, u8* pDst, s32 blocksize, TextureInformation* textureInformation…
57 …static s32 EnBlock(const u8* pSrc, u8* pDst, s32 blocksize, TextureInformation* textureInformation…
206 u8* pDst; in WriteBlock() local
211 pDst = textureInformation->dst + in WriteBlock()
217 pDst = textureInformation->dst + in WriteBlock()
223 DeBlock(pSrc, pDst, TEXTURE_BLOCK_SIZE, textureInformation); in WriteBlock()
228 u8* pDst; in WriteBlock() local
232 pDst = textureInformation->dst + in WriteBlock()
238 pDst = textureInformation->dst + in WriteBlock()
243 EnBlock(pSrc, pDst, TEXTURE_BLOCK_SIZE, textureInformation); in WriteBlock()
[all …]
/CTR-SDK-4.2.7-SampleDemos/crypto/BlockCipher/
Dmain.cpp69 …void Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, const void* pKey, size_… in Encrypt() argument
77 nn::crypto::EncryptAes128Ctr(pDst, pSrc, srcSize, pKey); in Encrypt()
79 …void Decrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, const void* pKey, size_… in Decrypt() argument
87 nn::crypto::DecryptAes128Ctr(pDst, pSrc, srcSize, pKey); in Decrypt()
89 …void EncryptAndGenerate(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, const void* … in EncryptAndGenerate() argument
97 nn::crypto::EncryptAndGenerateAes128Ccm(pDst, pSrc, srcSize, pKey); in EncryptAndGenerate()
99 …bool DecryptAndVerify(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, const void* pK… in DecryptAndVerify() argument
107 return nn::crypto::DecryptAndVerifyAes128Ccm(pDst, pSrc, srcSize, pKey); in DecryptAndVerify()
128 …void Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, const void* pKey, size_… in Encrypt() argument
141 … nn::crypto::CtrEncryptor128::Encrypt(pDst, dstSize, pSrc, srcSize, m_Iv, sizeof(m_Iv), aes); in Encrypt()
[all …]