Lines Matching refs:srcPSize
95 u32 srcPSize; in SampleMain() local
105 srcPSize = (u32)STD_GetStringLength(DEMO_TEXT) + 1; in SampleMain()
111 pPlainText = OS_Alloc(srcASize + srcPSize); in SampleMain()
112 pEncrypted = OS_Alloc(srcASize + srcPSize + macSize); in SampleMain()
113 pDecrypted = OS_Alloc(srcPSize); in SampleMain()
127 pEncryptedM = (u8*)pEncryptedC + srcPSize; in SampleMain()
132 pSizeData->pSize = srcPSize; in SampleMain()
137 MI_CpuCopy8(DEMO_TEXT, (u8*)pPlainText + srcASize, srcPSize); in SampleMain()
182 srcPSize, // Pdata's size in SampleMain()
209 DEMO_PrintBytes(pPlainText, srcASize + srcPSize); in SampleMain()
212 DEMO_PrintBytes(pEncrypted, srcASize + srcPSize + macSize); in SampleMain()
222 srcPSize, // Cdata's size in SampleMain()
248 DEMO_PrintBytes(pEncrypted, srcASize + srcPSize + macSize); in SampleMain()
251 DEMO_PrintBytes(pDecrypted, srcPSize); in SampleMain()
259 if( MI_CpuComp8(pDecrypted, pPlainTextP, srcPSize) == 0 ) in SampleMain()