HomeSort by relevance Sort by last modified time
    Searched full:window_start (Results 1 - 6 of 6) sorted by null

  /external/srtp/crypto/replay/
rdb.c 53 * window_start is the index of the first packet in the window
64 rdb->window_start = 0;
76 if (index >= rdb->window_start + rdb_bits_in_bitmask)
80 if (index < rdb->window_start)
84 if (v128_get_bit(&rdb->bitmask, (index - rdb->window_start)) == 1)
104 /* here we *assume* that index > rdb->window_start */
106 delta = (index - rdb->window_start);
119 rdb->window_start += delta;
129 if (rdb->window_start++ > 0x7fffffff)
136 return rdb->window_start;
    [all...]
rdbx.c 291 * rdbx_add_index adds the xtd_seq_num_t at rdbx->window_start + d to
  /external/srtp/googlepatches/
google-8-rdb-crash.patch 9 rdb->window_start += delta;
  /external/srtp/crypto/include/
rdb.h 24 uint32_t window_start; /* packet index of the first bit in bitmask */ member in struct:__anon18755
rdbx.h 92 * which is at rdbx->window_start + delta is in the rdb
102 * adds the xtd_seq_num_t at rdbx->window_start + delta to replay_db
  /external/srtp/test/
replay_driver.c 85 printf("rdb: {%u, %s}\n", rdb->window_start, v128_bit_string(&rdb->bitmask));

Completed in 88 milliseconds