• Home
  • Raw
  • Download

Lines Matching refs:bmp_len

177 …n = sizeof (struct xfrmnl_replay_state_esn) + (sizeof (uint32_t) * src->replay_state_esn->bmp_len);  in xfrm_ae_clone()
217 if (a->replay_state_esn->bmp_len != b->replay_state_esn->bmp_len) in xfrm_ae_compare()
221 …len = sizeof (struct xfrmnl_replay_state_esn) + (sizeof (uint32_t) * a->replay_state_esn->bmp_len); in xfrm_ae_compare()
413 …en = sizeof (struct xfrm_replay_state_esn) + (sizeof (uint32_t) * tmpl->replay_state_esn->bmp_len); in build_xfrm_ae_message()
538 uint32_t len = sizeof (struct xfrmnl_replay_state_esn) + (sizeof (uint32_t) * esn->bmp_len); in xfrmnl_ae_parse()
549 ae->replay_state_esn->bmp_len = esn->bmp_len; in xfrmnl_ae_parse()
550 memcpy (ae->replay_state_esn->bmp, esn->bmp, sizeof (uint32_t) * esn->bmp_len); in xfrmnl_ae_parse()
919 … unsigned int* seq_hi, unsigned int* replay_window, unsigned int* bmp_len, unsigned int* bmp) in xfrmnl_ae_get_replay_state_esn() argument
930 *bmp_len = ae->replay_state_esn->bmp_len; // In number of 32 bit words in xfrmnl_ae_get_replay_state_esn()
931 memcpy (bmp, ae->replay_state_esn->bmp, ae->replay_state_esn->bmp_len * sizeof (uint32_t)); in xfrmnl_ae_get_replay_state_esn()
946 unsigned int bmp_len, unsigned int* bmp) in xfrmnl_ae_set_replay_state_esn() argument
952 …e_esn = calloc (1, sizeof (struct xfrmnl_replay_state_esn) + sizeof (uint32_t) * bmp_len)) == NULL) in xfrmnl_ae_set_replay_state_esn()
960 ae->replay_state_esn->bmp_len = bmp_len; // In number of 32 bit words in xfrmnl_ae_set_replay_state_esn()
961 memcpy (ae->replay_state_esn->bmp, bmp, bmp_len * sizeof (uint32_t)); in xfrmnl_ae_set_replay_state_esn()