Lines Matching refs:vec
59 {KEY_STR, parse_uint8_hex_str, &vec.cipher_auth.key},
60 {IV_STR, parse_uint8_hex_str, &vec.iv},
61 {PT_STR, parse_uint8_hex_str, &vec.pt},
62 {CT_STR, parse_uint8_hex_str, &vec.ct},
75 {IV_STR, writeback_hex_str, &vec.iv},
76 {KEY_STR, writeback_hex_str, &vec.cipher_auth.key},
77 {PT_STR, writeback_hex_str, &vec.pt},
78 {CT_STR, writeback_hex_str, &vec.ct},
115 {KEY_JSON_STR, parse_uint8_known_len_hex_str, &vec.cipher_auth.key},
116 {TWEAKVALUE_JSON_STR, parser_xts_read_tweakval, &vec.iv},
117 {CT_JSON_STR, parse_uint8_hex_str, &vec.ct},
122 {KEYLEN_JSON_STR, parser_xts_read_keylen, &vec.cipher_auth.key},
127 {KEY_JSON_STR, parse_uint8_known_len_hex_str, &vec.cipher_auth.key},
128 {TWEAKVALUE_JSON_STR, parser_xts_read_tweakval, &vec.iv},
129 {SEQNUMBER_JSON_STR, parser_xts_read_tweakval, &vec.iv},
130 {PT_JSON_STR, parse_uint8_hex_str, &vec.pt},
149 tmp_val.len = vec.pt.len; in parse_test_xts_json_writeback()
155 tmp_val.val = val->val + vec.pt.len; in parse_test_xts_json_writeback()
156 tmp_val.len = val->len - vec.pt.len; in parse_test_xts_json_writeback()
160 if (vec.status == RTE_CRYPTO_OP_STATUS_SUCCESS) { in parse_test_xts_json_writeback()
162 tmp_val.len = vec.ct.len; in parse_test_xts_json_writeback()
228 data = &vec.ct; in rsp_test_xts_check()
230 data = &vec.pt; in rsp_test_xts_check()
244 char *line = info.vec[i]; in parse_test_xts_init()