Lines Matching full:blocks
85 enum { TRIALS = 1000, BLOCKS = 128, BLOCK_SIZE = 64 }; in main() enumerator
87 uint8_t output1[BLOCK_SIZE * BLOCKS], output2[BLOCK_SIZE * BLOCKS]; in main()
98 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
99 for (unsigned int split = 0; split < BLOCKS; ++split) { in main()
104 __arch_chacha20_blocks_nostack(output2 + split * BLOCK_SIZE, key, counter2, BLOCKS - split); in main()
112 counter1[0] = (uint32_t)-BLOCKS + 2; in main()
114 counter2[0] = (uint32_t)-BLOCKS + 2; in main()
116 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
117 __arch_chacha20_blocks_nostack(output2, key, counter2, BLOCKS); in main()
123 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
124 __arch_chacha20_blocks_nostack(output2, key, counter2, BLOCKS); in main()