Lines Matching refs:srcPSize
96 u32 srcPSize; in SampleMain() local
106 srcPSize = (u32)STD_GetStringLength(DEMO_TEXT) + 1; in SampleMain()
112 pPlainText = OS_Alloc(srcASize + srcPSize); in SampleMain()
113 pEncrypted = OS_Alloc(srcASize + srcPSize + macSize); in SampleMain()
114 pDecrypted = OS_Alloc(srcPSize); in SampleMain()
128 pEncryptedM = (u8*)pEncryptedC + srcPSize; in SampleMain()
133 pSizeData->pSize = srcPSize; in SampleMain()
138 MI_CpuCopy8(DEMO_TEXT, (u8*)pPlainText + srcASize, srcPSize); in SampleMain()
183 srcPSize, // Pdata's size in SampleMain()
210 DEMO_PrintBytes(pPlainText, srcASize + srcPSize); in SampleMain()
213 DEMO_PrintBytes(pEncrypted, srcASize + srcPSize + macSize); in SampleMain()
223 srcPSize, // Cdata's size in SampleMain()
249 DEMO_PrintBytes(pEncrypted, srcASize + srcPSize + macSize); in SampleMain()
252 DEMO_PrintBytes(pDecrypted, srcPSize); in SampleMain()
260 if( MI_CpuComp8(pDecrypted, pPlainTextP, srcPSize) == 0 ) in SampleMain()