Lines Matching refs:BLOCKS
84 enum { TRIALS = 1000, BLOCKS = 128, BLOCK_SIZE = 64 }; in main() enumerator
86 uint8_t output1[BLOCK_SIZE * BLOCKS], output2[BLOCK_SIZE * BLOCKS]; in main()
97 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
98 for (unsigned int split = 0; split < BLOCKS; ++split) { in main()
103 __arch_chacha20_blocks_nostack(output2 + split * BLOCK_SIZE, key, counter2, BLOCKS - split); in main()
111 counter1[0] = (uint32_t)-BLOCKS + 2; in main()
113 counter2[0] = (uint32_t)-BLOCKS + 2; in main()
115 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
116 __arch_chacha20_blocks_nostack(output2, key, counter2, BLOCKS); in main()
122 reference_chacha20_blocks(output1, key, counter1, BLOCKS); in main()
123 __arch_chacha20_blocks_nostack(output2, key, counter2, BLOCKS); in main()