Home
last modified time | relevance | path

Searched refs:extra_length (Results 1 – 15 of 15) sorted by relevance

/external/libusb-compat/libusb/
Dcore.c401 dest->extralen = src->extra_length; in copy_endpoint_descriptor()
402 if (src->extra_length) { in copy_endpoint_descriptor()
403 dest->extra = malloc(src->extra_length); in copy_endpoint_descriptor()
406 memcpy(dest->extra, src->extra, src->extra_length); in copy_endpoint_descriptor()
433 dest->extralen = src->extra_length; in copy_interface_descriptor()
434 if (src->extra_length) { in copy_interface_descriptor()
435 dest->extra = malloc(src->extra_length); in copy_interface_descriptor()
440 memcpy(dest->extra, src->extra, src->extra_length); in copy_interface_descriptor()
493 dest->extralen = src->extra_length; in copy_config_descriptor()
494 if (src->extra_length) { in copy_config_descriptor()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Daudio_vector.cc89 void AudioVector::Extend(size_t extra_length) { in Extend() argument
90 Reserve(Size() + extra_length); in Extend()
91 memset(&array_[first_free_ix_], 0, extra_length * sizeof(int16_t)); in Extend()
92 first_free_ix_ += extra_length; in Extend()
Daudio_vector.h62 virtual void Extend(size_t extra_length);
/external/python/cpython2/PC/bdist_wininst/
Darchive.h39 short extra_length; member
58 short extra_length; member
Dextract.c243 pos += pcdir->fname_length + pcdir->extra_length + in unzip_archive()
250 + pfhdr->extra_length]; in unzip_archive()
/external/python/cpython3/PC/bdist_wininst/
Darchive.h38 short extra_length; member
57 short extra_length; member
Dextract.c242 pos += pcdir->fname_length + pcdir->extra_length + in unzip_archive()
249 + pfhdr->extra_length]; in unzip_archive()
/external/libusb/libusb/
Ddescriptor.c173 endpoint->extra_length = 0; in parse_endpoint()
180 endpoint->extra_length = 0; in parse_endpoint()
185 endpoint->extra_length = len; in parse_endpoint()
266 ifp->extra_length = 0; in parse_interface()
317 ifp->extra_length = len; in parse_interface()
415 config->extra_length = 0; in parse_configuration()
458 if (!config->extra_length) { in parse_configuration()
466 config->extra_length = len; in parse_configuration()
759 int size = endpoint->extra_length; in libusb_get_ss_endpoint_companion_descriptor()
Dlibusb.h573 int extra_length; member
623 int extra_length; member
682 int extra_length; member
/external/puffin/src/
Dutils.cc199 uint16_t extra_length = data[offset++]; in LocateDeflatesInGzip() local
200 extra_length |= static_cast<uint16_t>(data[offset++]) << 8; in LocateDeflatesInGzip()
201 TEST_AND_RETURN_FALSE(offset + extra_length <= data.size()); in LocateDeflatesInGzip()
202 offset += extra_length; in LocateDeflatesInGzip()
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_audio_vector.h39 void(size_t extra_length));
/external/libusb/include/libusb/
Dlibusb.h573 int extra_length; member
623 int extra_length; member
682 int extra_length; member
/external/libusb/examples/
Dtestlibusb.c46 for (i = 0; i < endpoint->extra_length;) { in print_endpoint()
/external/u-boot/scripts/kconfig/
Dexpr.c1251 unsigned extra_length = strlen(str); in expr_print_gstr_helper() local
1256 extra_length += 4 + strlen(sym_str); in expr_print_gstr_helper()
1263 if ((last_line_length + extra_length) > gs->max_width) in expr_print_gstr_helper()
/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp1323 unsigned extra_length = (unsigned)(length - LENGTHBASE[length_code]); in addLengthDistance() local
1328 uivector_push_back(values, extra_length); in addLengthDistance()