Lines Matching defs:length
42 const size_t length;
87 const size_t length;
157 if (!TEST_int_le(v->length, MAX_VECTOR_SIZE))
165 AES_ige_encrypt(v->in, buf, v->length, &key, iv, v->encrypt);
167 if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
171 test_output_memory("in", v->in, v->length);
177 memcpy(buf, v->in, v->length);
178 AES_ige_encrypt(buf, buf, v->length, &key, iv, v->encrypt);
180 if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
184 test_output_memory("in", v->in, v->length);
198 if (!TEST_int_le(v->length, MAX_VECTOR_SIZE))
209 AES_bi_ige_encrypt(v->in, buf, v->length, &key1, &key2, v->iv,
212 if (!TEST_mem_eq(v->out, v->length, buf, v->length)) {
216 test_output_memory("in", v->in, v->length);