Lines Matching refs:output
17 unsigned char output[375];
20 memset(output, 0x00, sizeof(output));
30 output) == 0);
32 TEST_MEMORY_COMPARE(output, expected_output_str->len,
44 memset(output, 0x00, sizeof(output));
45 TEST_ASSERT(mbedtls_chacha20_update(&ctx, src_str->len, src_str->x, output) == 0);
47 TEST_MEMORY_COMPARE(output, expected_output_str->len,
58 memset(output, 0x00, sizeof(output));
59 TEST_ASSERT(mbedtls_chacha20_update(&ctx, 1, src_str->x, output) == 0);
61 src_str->x + 1, output + 1) == 0);
63 TEST_MEMORY_COMPARE(output, expected_output_str->len,