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

  /external/chromium_org/third_party/libsrtp/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/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));
  /bootable/recovery/
asn1_decoder.cpp 81 int num_octets = get_byte(ctx); local
82 if (num_octets == -1) {
85 if ((num_octets & 0x80) == 0x00) {
86 *out_len = num_octets;
89 num_octets &= kMaskTag;
90 if ((size_t)num_octets >= sizeof(size_t)) {
94 for (int i = 0; i < num_octets; ++i) {
  /external/chromium_org/third_party/libsrtp/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);
  /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);

Completed in 649 milliseconds