Lines Matching refs:trn_data

8555 	unsigned int trn_data = 0;  in test_pdcp_proto_SGL()  local
8616 trn_data += plaintext_len; in test_pdcp_proto_SGL()
8624 while (trn_data < input_vec_len) { in test_pdcp_proto_SGL()
8626 to_trn = (input_vec_len - trn_data < fragsz) ? in test_pdcp_proto_SGL()
8627 (input_vec_len - trn_data) : fragsz; in test_pdcp_proto_SGL()
8650 memcpy(plaintext, input_vec + trn_data, to_trn); in test_pdcp_proto_SGL()
8651 trn_data += to_trn; in test_pdcp_proto_SGL()
8661 trn_data = frag_size_oop; in test_pdcp_proto_SGL()
8662 while (trn_data < output_vec_len) { in test_pdcp_proto_SGL()
8665 (output_vec_len - trn_data < in test_pdcp_proto_SGL()
8667 (output_vec_len - trn_data) : in test_pdcp_proto_SGL()
8679 trn_data += to_trn; in test_pdcp_proto_SGL()
13045 unsigned int trn_data = 0; in test_AES_GMAC_authentication_SGL() local
13099 trn_data += plaintext_len; in test_AES_GMAC_authentication_SGL()
13107 while (trn_data < tdata->plaintext.len) { in test_AES_GMAC_authentication_SGL()
13109 to_trn = (tdata->plaintext.len - trn_data < fragsz) ? in test_AES_GMAC_authentication_SGL()
13110 (tdata->plaintext.len - trn_data) : fragsz; in test_AES_GMAC_authentication_SGL()
13121 memcpy(plaintext, tdata->plaintext.data + trn_data, in test_AES_GMAC_authentication_SGL()
13123 trn_data += to_trn; in test_AES_GMAC_authentication_SGL()
13124 if (trn_data == tdata->plaintext.len) in test_AES_GMAC_authentication_SGL()
14290 unsigned int trn_data = 0; in test_authenticated_encryption_SGL() local
14396 trn_data += plaintext_len; in test_authenticated_encryption_SGL()
14404 while (trn_data < tdata->plaintext.len) { in test_authenticated_encryption_SGL()
14406 to_trn = (tdata->plaintext.len - trn_data < fragsz) ? in test_authenticated_encryption_SGL()
14407 (tdata->plaintext.len - trn_data) : fragsz; in test_authenticated_encryption_SGL()
14430 memcpy(plaintext, tdata->plaintext.data + trn_data, in test_authenticated_encryption_SGL()
14432 trn_data += to_trn; in test_authenticated_encryption_SGL()
14433 if (trn_data == tdata->plaintext.len) { in test_authenticated_encryption_SGL()
14462 trn_data = frag_size_oop; in test_authenticated_encryption_SGL()
14463 while (trn_data < tdata->plaintext.len) { in test_authenticated_encryption_SGL()
14466 (tdata->plaintext.len - trn_data < in test_authenticated_encryption_SGL()
14468 (tdata->plaintext.len - trn_data) : in test_authenticated_encryption_SGL()
14480 trn_data += to_trn; in test_authenticated_encryption_SGL()
14482 if (trn_data == tdata->plaintext.len) { in test_authenticated_encryption_SGL()