Lines Matching refs:srcSize
80 u32 srcSize; in SampleMain() local
87 srcSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain()
88 pEncrypted = OS_Alloc(srcSize); in SampleMain()
89 pDecrypted = OS_Alloc(srcSize); in SampleMain()
133 srcSize, // Size of the data to encrypt in SampleMain()
159 DEMO_PrintBytes(pPlainText, srcSize); in SampleMain()
162 DEMO_PrintBytes(pEncrypted, srcSize); in SampleMain()
170 srcSize, // Size of the data to decrypt in SampleMain()
192 DEMO_PrintBytes(pEncrypted, srcSize); in SampleMain()
195 DEMO_PrintBytes(pDecrypted, srcSize); in SampleMain()
203 if( MI_CpuComp8(pDecrypted, pPlainText, srcSize) == 0 ) in SampleMain()