Lines Matching refs:vec
67 val->len = vec.pt.len; in parse_dvpt_ct_hex_str()
75 ret = parse_uint8_known_len_hex_str("", src, &vec.aead.digest); in parse_dvpt_ct_hex_str()
111 {IV_STR, parse_uint8_known_len_hex_str, &vec.iv},
112 {AAD_STR, parse_uint8_ccm_aad_str, &vec.aead.aad},
113 {PT_STR, parse_uint8_known_len_hex_str, &vec.pt},
118 {ALEN_PREFIX, parser_read_uint32_val, &vec.aead.aad},
119 {PLEN_PREFIX, parser_read_uint32_val, &vec.pt},
120 {DIGESTL_PREFIX, parser_read_uint32_val, &vec.aead.digest},
121 {IVLEN_PREFIX, parser_read_uint32_val, &vec.iv},
122 {KEY_STR, parse_uint8_hex_str, &vec.aead.key},
127 {AAD_STR, parse_uint8_ccm_aad_str, &vec.aead.aad},
128 {PT_STR, parse_uint8_known_len_hex_str, &vec.pt},
133 {ALEN_PREFIX, parser_read_uint32_val, &vec.aead.aad},
134 {PLEN_PREFIX, parser_read_uint32_val, &vec.pt},
135 {IVLEN_PREFIX, parser_read_uint32_val, &vec.iv},
136 {DIGESTL_PREFIX, parser_read_uint32_val, &vec.aead.digest},
137 {KEY_STR, parse_uint8_hex_str, &vec.aead.key},
138 {IV_STR, parse_uint8_known_len_hex_str, &vec.iv},
143 {AAD_STR, parse_uint8_ccm_aad_str, &vec.aead.aad},
144 {PT_STR, parse_uint8_known_len_hex_str, &vec.pt},
149 {PLEN_PREFIX, parser_read_uint32_val, &vec.pt},
150 {IVLEN_PREFIX, parser_read_uint32_val, &vec.iv},
151 {ALEN_PREFIX, parser_read_uint32_val, &vec.aead.aad},
152 {DIGESTL_PREFIX, parser_read_uint32_val, &vec.aead.digest},
153 {KEY_STR, parse_uint8_hex_str, &vec.aead.key},
154 {IV_STR, parse_uint8_known_len_hex_str, &vec.iv},
159 {AAD_STR, parse_uint8_ccm_aad_str, &vec.aead.aad},
160 {PT_STR, parse_uint8_known_len_hex_str, &vec.pt},
165 {ALEN_PREFIX, parser_read_uint32_val, &vec.aead.aad},
166 {IVLEN_PREFIX, parser_read_uint32_val, &vec.iv},
167 {DIGESTL_PREFIX, parser_read_uint32_val, &vec.aead.digest},
168 {PLEN_PREFIX, parser_read_uint32_val, &vec.pt},
169 {KEY_STR, parse_uint8_hex_str, &vec.aead.key},
170 {IV_STR, parse_uint8_known_len_hex_str, &vec.iv},
175 {IV_STR, parse_uint8_known_len_hex_str, &vec.iv},
176 {AAD_STR, parse_uint8_ccm_aad_str, &vec.aead.aad},
177 {CT_STR, parse_dvpt_ct_hex_str, &vec.ct},
182 {ALEN_PREFIX, parser_dvpt_interim, &vec.aead.aad},
183 {PLEN_PREFIX, parser_dvpt_interim, &vec.pt},
184 {IVLEN_PREFIX, parser_dvpt_interim, &vec.iv},
185 {DIGESTL_PREFIX, parser_dvpt_interim, &vec.aead.digest},
186 {KEY_STR, parse_uint8_hex_str, &vec.aead.key},
217 if (vec.status == RTE_CRYPTO_OP_STATUS_SUCCESS) { in parse_test_ccm_writeback()
222 tmp_val.len = vec.pt.len; in parse_test_ccm_writeback()
255 char *line = info.vec[i]; in parse_test_ccm_init()