Searched refs:len_bytes (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/boringssl/src/ssl/test/
H A Dpacketed_bio.cc33 uint8_t len_bytes[4]; local
34 len_bytes[0] = (inl >> 24) & 0xff;
35 len_bytes[1] = (inl >> 16) & 0xff;
36 len_bytes[2] = (inl >> 8) & 0xff;
37 len_bytes[3] = inl & 0xff;
38 int ret = BIO_write(bio->next_bio, len_bytes, sizeof(len_bytes));
58 uint8_t len_bytes[4]; local
59 int ret = BIO_read(bio->next_bio, &len_bytes, sizeof(len_bytes));
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_getpubnames.c95 int len_bytes = 4; local
100 len_bytes = 8;
110 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp;
111 mem[cnt].address_len = len_bytes;
126 if (__libdw_read_offset (dbg, IDX_debug_pubnames, readp + 2, len_bytes,
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Daudio_coding_module_impl.cc292 int16_t len_bytes = MAX_PAYLOAD_SIZE_BYTE; local
295 if (encoder->Encode(stream, &len_bytes, &rtp_timestamp, &encoding_type) < 0) {
299 assert(len_bytes > 0);
301 fragmentation_.fragmentationLength[fragmentation_index] = len_bytes;
306 return len_bytes;
351 int16_t len_bytes = MAX_PAYLOAD_SIZE_BYTE; local
353 if (secondary_encoder_->Encode(red_buffer_, &len_bytes,
360 assert(len_bytes > 0);
362 assert(len_bytes <= MAX_PAYLOAD_SIZE_BYTE);
363 fragmentation_.fragmentationLength[2] = len_bytes;
[all...]

Completed in 193 milliseconds