OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:roc
(Results
1 - 5
of
5
) sorted by null
/external/srtp/srtp/
ekt.c
170
uint32_t
roc
;
local
187
/* set the SRTP
ROC
*/
188
roc
= srtcp_packet_get_ekt_roc(srtcp_hdr, pkt_octet_len);
189
err = rdbx_set_roc(&stream->rtp_rdbx,
roc
);
204
uint32_t
roc
;
local
226
/* copy
ROC
into packet */
227
roc
= (uint32_t)(pkt_index >> 16);
228
*((uint32_t *)packet) = be32_to_cpu(
roc
);
229
debug_print(mod_srtp, "writing EKT
ROC
: %s,",
230
octet_string_hex_string(packet, sizeof(
roc
)));
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java
282
Comparator<String>
roc
= Collections.reverseOrder();
local
283
assertNotNull("Assert 0: comparator must not be null",
roc
);
286
roc
instanceof Serializable);
290
Arrays.sort(numbers,
roc
);
299
Comparator<String>
roc
= Collections
local
301
assertNotNull("Assert 0: comparator must not be null",
roc
);
304
roc
instanceof Serializable);
308
Arrays.sort(numbers,
roc
);
312
roc
= Collections.reverseOrder(null);
313
assertNotNull("Assert 3: comparator must not be null",
roc
);
[
all
...]
/external/srtp/crypto/include/
rdbx.h
24
#else /* use small seq_num and
roc
datatypes for testing purposes */
115
* rdbx_set_roc(rdbx,
roc
) initalizes the rdbx_t at the location rdbx
116
* to have the rollover counter value
roc
. If that value is less than
123
rdbx_set_roc(rdbx_t *rdbx, uint32_t
roc
);
/external/srtp/crypto/replay/
rdbx.c
219
* rdbx_set_roc(rdbx,
roc
) initalizes the rdbx_t at the location rdbx
220
* to have the rollover counter value
roc
. If that value is less than
227
rdbx_set_roc(rdbx_t *rdbx, uint32_t
roc
) {
235
if (
roc
< (rdbx->index >> 16))
239
rdbx->index |= ((uint64_t)
roc
) << 16; /* set
ROC
*/
/libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java
314
Comparator<String>
roc
= Collections.reverseOrder();
local
315
assertNotNull("Assert 0: comparator must not be null",
roc
);
318
roc
instanceof Serializable);
322
Arrays.sort(numbers,
roc
);
331
Comparator<String>
roc
= Collections
local
333
assertNotNull("Assert 0: comparator must not be null",
roc
);
336
roc
instanceof Serializable);
340
Arrays.sort(numbers,
roc
);
344
roc
= Collections.reverseOrder(null);
345
assertNotNull("Assert 3: comparator must not be null",
roc
);
[
all
...]
Completed in 61 milliseconds