OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:num_octets
(Results
1 - 3
of
3
) sorted by null
/external/srtp/crypto/test/
rand_gen.c
73
int
num_octets
= 0;
local
104
num_octets
= atoi(optarg);
105
if (
num_octets
< 0 ||
num_octets
> BUF_LEN)
121
if (
num_octets
> 0) {
124
status = crypto_get_random(buffer,
num_octets
);
128
printf("%s\n", octet_string_hex_string(buffer,
num_octets
));
/external/srtp/crypto/include/
rand_source.h
83
* A rand_source_func_t writes
num_octets
at the location indicated by
89
(void *dest, uint32_t
num_octets
);
/bootable/recovery/
asn1_decoder.cpp
82
int
num_octets
= get_byte(ctx);
local
83
if (
num_octets
== -1) {
86
if ((
num_octets
& 0x80) == 0x00) {
87
*out_len =
num_octets
;
90
num_octets
&= kMaskTag;
91
if ((size_t)
num_octets
>= sizeof(size_t)) {
95
for (int i = 0; i <
num_octets
; ++i) {
Completed in 88 milliseconds