Lines Matching refs:trn_data
7950 unsigned int trn_data = 0; in test_pdcp_proto_SGL() local
8000 trn_data += plaintext_len; in test_pdcp_proto_SGL()
8008 while (trn_data < input_vec_len) { in test_pdcp_proto_SGL()
8010 to_trn = (input_vec_len - trn_data < fragsz) ? in test_pdcp_proto_SGL()
8011 (input_vec_len - trn_data) : fragsz; in test_pdcp_proto_SGL()
8034 memcpy(plaintext, input_vec + trn_data, to_trn); in test_pdcp_proto_SGL()
8035 trn_data += to_trn; in test_pdcp_proto_SGL()
8045 trn_data = frag_size_oop; in test_pdcp_proto_SGL()
8046 while (trn_data < output_vec_len) { in test_pdcp_proto_SGL()
8049 (output_vec_len - trn_data < in test_pdcp_proto_SGL()
8051 (output_vec_len - trn_data) : in test_pdcp_proto_SGL()
8063 trn_data += to_trn; in test_pdcp_proto_SGL()
11126 unsigned int trn_data = 0; in test_AES_GMAC_authentication_SGL() local
11178 trn_data += plaintext_len; in test_AES_GMAC_authentication_SGL()
11186 while (trn_data < tdata->plaintext.len) { in test_AES_GMAC_authentication_SGL()
11188 to_trn = (tdata->plaintext.len - trn_data < fragsz) ? in test_AES_GMAC_authentication_SGL()
11189 (tdata->plaintext.len - trn_data) : fragsz; in test_AES_GMAC_authentication_SGL()
11200 memcpy(plaintext, tdata->plaintext.data + trn_data, in test_AES_GMAC_authentication_SGL()
11202 trn_data += to_trn; in test_AES_GMAC_authentication_SGL()
11203 if (trn_data == tdata->plaintext.len) in test_AES_GMAC_authentication_SGL()
12351 unsigned int trn_data = 0; in test_authenticated_encryption_SGL() local
12457 trn_data += plaintext_len; in test_authenticated_encryption_SGL()
12465 while (trn_data < tdata->plaintext.len) { in test_authenticated_encryption_SGL()
12467 to_trn = (tdata->plaintext.len - trn_data < fragsz) ? in test_authenticated_encryption_SGL()
12468 (tdata->plaintext.len - trn_data) : fragsz; in test_authenticated_encryption_SGL()
12491 memcpy(plaintext, tdata->plaintext.data + trn_data, in test_authenticated_encryption_SGL()
12493 trn_data += to_trn; in test_authenticated_encryption_SGL()
12494 if (trn_data == tdata->plaintext.len) { in test_authenticated_encryption_SGL()
12523 trn_data = frag_size_oop; in test_authenticated_encryption_SGL()
12524 while (trn_data < tdata->plaintext.len) { in test_authenticated_encryption_SGL()
12527 (tdata->plaintext.len - trn_data < in test_authenticated_encryption_SGL()
12529 (tdata->plaintext.len - trn_data) : in test_authenticated_encryption_SGL()
12541 trn_data += to_trn; in test_authenticated_encryption_SGL()
12543 if (trn_data == tdata->plaintext.len) { in test_authenticated_encryption_SGL()