Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/crypto/
Dcrypto_RsaContext.h138 …nn::Result Decrypt(size_t* pDecrptLength, void* pDest, size_t destSize, const void* pSrc, size_t s…
140 …nn::Result Decrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_…
141 virtual nn::Result Decrypt(void* pDest, const void* pSrc, size_t length);
154 …nn::Result Encrypt(size_t* pEncryptLength, void* pDest, size_t destSize, const void* pSrc, size_t …
156 …nn::Result Encrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_…
157 virtual nn::Result Encrypt(void* pDest, const void* pSrc, size_t length);
170 …nn::Result Sign(size_t* pSignLength, void* pDest, size_t destSize, const void* pSrc, size_t srcLen…
172 …nn::Result Sign(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_LEN…
184 nn::Result SignSha256(size_t* pSignLength, void* pDest, size_t destSize, const void* pSrc);
186 nn::Result SignSha256(void* pDest, size_t destSize, const void* pSrc);
[all …]
Dcrypto_PublicKeyContextBase.h42 virtual nn::Result Decrypt(void* pDest, const void* pSrc, size_t size) = 0;
49 virtual nn::Result Encrypt(void* pDest, const void* pSrc, size_t size) = 0;
/CTR-SDK-4.2.5/sources/libraries/fnd/detail/
Dfnd_DetailHeapCommonImpl.h185 u32* pDest = reinterpret_cast<u32*>(dest); in MI_CpuFill32() local
186 NN_TASSERT_(((u32)pDest & 0xfffffffc) == (u32)pDest); // dest should be 4-byte aligned in MI_CpuFill32()
190 pDest[i] = data; in MI_CpuFill32()
/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Uncompression.cpp1077 …s32 UncompressDeflateCommon(void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* … in UncompressDeflateCommon() argument
1079 NN_POINTER_TASSERT_(pDest); in UncompressDeflateCommon()
1090 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in UncompressDeflateCommon()
1127 s32 UncompressGzip(void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in UncompressGzip() argument
1129 NN_POINTER_TASSERT_(pDest); in UncompressGzip()
1134 return UncompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, wbits); in UncompressGzip()
1137 s32 UncompressZlib(void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in UncompressZlib() argument
1139 NN_POINTER_TASSERT_(pDest); in UncompressZlib()
1143 return UncompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, MAX_WBITS); in UncompressZlib()
1146 s32 UncompressDeflate(void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in UncompressDeflate() argument
[all …]
Dcx_Compression.cpp1312 …s32 CompressDeflateCommon( void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* p… in CompressDeflateCommon() argument
1314 NN_POINTER_TASSERT_(pDest); in CompressDeflateCommon()
1324 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in CompressDeflateCommon()
1361 s32 CompressGzip( void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in CompressGzip() argument
1363 NN_POINTER_TASSERT_(pDest); in CompressGzip()
1368 return CompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, wbits); in CompressGzip()
1371 s32 CompressZlib( void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in CompressZlib() argument
1373 NN_POINTER_TASSERT_(pDest); in CompressZlib()
1377 return CompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, MAX_WBITS); in CompressZlib()
1380 s32 CompressDeflate( void* pDest, size_t destSize, const void* pSrc, size_t srcSize, void* pWork ) in CompressDeflate() argument
[all …]
Dcx_StreamingUncompression.cpp1529 …void InitUncompressContextDeflateCommon( UncompContextDeflate* pContext, void* pDest, size_t destS… in InitUncompressContextDeflateCommon() argument
1532 NN_POINTER_TASSERT_(pDest); in InitUncompressContextDeflateCommon()
1545 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in InitUncompressContextDeflateCommon()
1590 void InitUncompContextDeflate( UncompContextDeflate* pContext, void* pDest, size_t destSize ) in InitUncompContextDeflate() argument
1593 NN_POINTER_TASSERT_(pDest); in InitUncompContextDeflate()
1596 InitUncompressContextDeflateCommon(pContext, pDest, destSize, wbits); in InitUncompContextDeflate()
1599 void InitUncompContextGzip( UncompContextGzip* pContext, void* pDest, size_t destSize ) in InitUncompContextGzip() argument
1602 NN_POINTER_TASSERT_(pDest); in InitUncompContextGzip()
1605 InitUncompressContextDeflateCommon(pContext, pDest, destSize, wbits); in InitUncompContextGzip()
1608 void InitUncompContextZlib( UncompContextZlib* pContext, void* pDest, size_t destSize ) in InitUncompContextZlib() argument
[all …]
/CTR-SDK-4.2.5/sources/libraries/os/
Dos_DeliverArg.cpp208 u8* pDest = &m_pInfo->buf[m_pInfo->argBufferSize + m_pInfo->binarySize]; in SetBinary() local
209 ::std::memcpy(pDest, pBinary, nSize); in SetBinary()