Lines Matching refs:srcSize
79 u32 srcSize; in SampleMain() local
86 srcSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain()
87 pEncrypted = OS_Alloc(srcSize); in SampleMain()
88 pDecrypted = OS_Alloc(srcSize); in SampleMain()
132 srcSize, // Size of the data to encrypt in SampleMain()
158 DEMO_PrintBytes(pPlainText, srcSize); in SampleMain()
161 DEMO_PrintBytes(pEncrypted, srcSize); in SampleMain()
169 srcSize, // Size of the data to decrypt in SampleMain()
191 DEMO_PrintBytes(pEncrypted, srcSize); in SampleMain()
194 DEMO_PrintBytes(pDecrypted, srcSize); in SampleMain()
202 if( MI_CpuComp8(pDecrypted, pPlainText, srcSize) == 0 ) in SampleMain()