OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rdbx
(Results
1 - 7
of
7
) sorted by null
/external/srtp/crypto/include/
rdbx.h
2
*
rdbx
.h
56
* initializes the
rdbx
pointed to by its argument with the window size ws,
61
rdbx_init(rdbx_t *
rdbx
, unsigned long ws);
67
* frees memory associated with the
rdbx
71
rdbx_uninit(rdbx_t *
rdbx
);
75
* rdbx_estimate_index(
rdbx
, guess, s)
77
* given an
rdbx
and a sequence number s (from a newly arrived packet),
84
rdbx_estimate_index(const rdbx_t *
rdbx
,
89
* rdbx_check(
rdbx
, delta);
92
* which is at
rdbx
->window_start + delta is in the rd
[
all
...]
/external/srtp/crypto/replay/
rdbx.c
2
*
rdbx
.c
46
#include "
rdbx
.h"
66
*
rdbx
implementation notes
185
*
rdbx
195
rdbx_init(rdbx_t *
rdbx
, unsigned long ws) {
199
if (bitvector_alloc(&
rdbx
->bitmask, ws) != 0)
202
index_init(&
rdbx
->index);
212
rdbx_uninit(rdbx_t *
rdbx
) {
213
bitvector_dealloc(&
rdbx
->bitmask);
219
* rdbx_set_roc(
rdbx
, roc) initalizes the rdbx_t at the location rdb
[
all
...]
/external/srtp/test/
rdbx_driver.c
4
* driver for the
rdbx
implementation (replay database with extended range)
49
#include "
rdbx
.h"
94
printf("
rdbx
(replay database w/ extended range) test driver\n"
132
print_rdbx(rdbx_t *
rdbx
) {
134
printf("
rdbx
: {%llu, %s}\n",
135
(unsigned long long)(
rdbx
->index),
136
bitvector_bit_string(&
rdbx
->bitmask, buf, sizeof(buf))
142
* rdbx_check_add(
rdbx
, idx) checks a known-to-be-good idx against
143
*
rdbx
, then adds it. if a failure is detected (i.e., the check
144
* indicates that the value is already in
rdbx
) the
213
rdbx
_t
rdbx
;
local
316
rdbx
_t
rdbx
;
local
[
all
...]
/external/srtp/
Android.mk
29
crypto/replay/
rdbx
.c
Makefile
82
replay = crypto/replay/rdb.o crypto/replay/
rdbx
.o \
/external/chromium/third_party/libjingle/source/talk/
libjingle.scons
35
"third_party/srtp/crypto/replay/
rdbx
.c",
/external/chromium_org/third_party/libjingle/source/talk/
libjingle.scons
51
"third_party/srtp/crypto/replay/
rdbx
.c",
Completed in 48 milliseconds