Home
last modified time | relevance | path

Searched refs:remaining_length (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Daudio_vector.cc57 const size_t remaining_length = length - first_chunk_length; in CopyTo() local
58 if (remaining_length > 0) { in CopyTo()
60 remaining_length * sizeof(int16_t)); in CopyTo()
75 const size_t remaining_length = length - first_chunk_length; in PushFront() local
76 if (remaining_length > 0) in PushFront()
77 PushFront(prepend_this.array_.get(), remaining_length); in PushFront()
90 const size_t remaining_length = length - first_chunk_length; in PushFront() local
91 if (remaining_length > 0) { in PushFront()
92 memcpy(&array_[capacity_ - remaining_length], prepend_this, in PushFront()
93 remaining_length * sizeof(int16_t)); in PushFront()
[all …]
/external/curl/tests/server/
Dmqttd.c485 size_t remaining_length = 0; in mqttit() local
508 rc = fixedheader(fd, &byte, &remaining_length, &bytes); in mqttit()
511 if(remaining_length) { in mqttit()
512 rc = sread(fd, (char *)buffer, remaining_length); in mqttit()
520 logprotocol(FROM_CLIENT, "CONNECT", remaining_length, in mqttit()
557 logprotocol(FROM_CLIENT, "SUBSCRIBE", remaining_length, in mqttit()
571 if(topic_len != (remaining_length - 5)) { in mqttit()
573 topic_len, remaining_length - 5); in mqttit()
612 logprotocol(FROM_CLIENT, "PUBLISH", remaining_length, in mqttit()
/external/sfntly/cpp/src/sfntly/data/
Dbyte_array.cc115 int32_t remaining_length = length; in CopyTo() local
122 remaining_length -= bytes_read; in CopyTo()
123 buffer_length = std::min<int32_t>(b.size(), remaining_length); in CopyTo()
/external/curl/lib/
Dmqtt.h56 size_t remaining_length; member
Dmqtt.c464 remlen = mq->remaining_length; in mqtt_read_publish()
578 mq->remaining_length = mqtt_decode_len(&pkt[0], mq->npacket, NULL); in mqtt_doing()
580 if(mq->remaining_length) { in mqtt_doing()
/external/openscreen/discovery/mdns/
Dmdns_reader.cc263 const int remaining_length = record_length - encoded_next_name_length; in Read() local
264 if (remaining_length <= 0) { in Read()
271 if (Read(&types, remaining_length)) { in Read()
Dmdns_reader.h60 bool Read(std::vector<DnsType>* types, int remaining_length);
/external/tinyalsa_new/utils/
Dtinymix.c385 unsigned int remaining_length; member
428 out.remaining_length = length - out.length; in parse_int()
/external/ImageMagick/coders/
Dpsd.c1756 remaining_length; in ParseAdditionalInfo() local
1765 remaining_length=GetStringInfoLength(layer_info->info); in ParseAdditionalInfo()
1766 while (remaining_length >= 12) in ParseAdditionalInfo()
1780 remaining_length-=12; in ParseAdditionalInfo()
1781 if ((size_t) size > remaining_length) in ParseAdditionalInfo()
1814 remaining_length-=(size_t) size; in ParseAdditionalInfo()
3471 remaining_length, in GetAdditionalInformation() local
3496 remaining_length=length; in GetAdditionalInformation()
3498 while (remaining_length >= 12) in GetAdditionalInformation()
3512 remaining_length-=12; in GetAdditionalInformation()
[all …]
/external/usrsctp/usrsctplib/netinet/
Dsctp_input.c1245 uint32_t remaining_length, adjust; in sctp_handle_error() local
1255 remaining_length = ntohs(ch->chunk_length); in sctp_handle_error()
1256 if (remaining_length > limit) { in sctp_handle_error()
1257 remaining_length = limit; in sctp_handle_error()
1259 if (remaining_length >= sizeof(struct sctp_chunkhdr)) { in sctp_handle_error()
1260 remaining_length -= sizeof(struct sctp_chunkhdr); in sctp_handle_error()
1262 remaining_length = 0; in sctp_handle_error()
1265 while (remaining_length >= sizeof(struct sctp_error_cause)) { in sctp_handle_error()
1269 if ((cause_length > remaining_length) || (cause_length == 0)) { in sctp_handle_error()
1272 remaining_length, cause_length); in sctp_handle_error()
[all …]
/external/openscreen/cast/common/channel/proto/
Dcast_channel.proto74 optional uint32 remaining_length = 9; field