Home
last modified time | relevance | path

Searched refs:extra_length (Results 1 – 10 of 10) 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/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
Daudio_vector.cc74 void AudioVector::Extend(size_t extra_length) { in Extend() argument
75 Reserve(Size() + extra_length); in Extend()
76 memset(&array_[first_free_ix_], 0, extra_length * sizeof(int16_t)); in Extend()
77 first_free_ix_ += extra_length; in Extend()
Daudio_vector.h70 virtual void Extend(size_t extra_length);
/external/libusb/libusb/
Ddescriptor.c140 endpoint->extra_length = 0; in parse_endpoint()
147 endpoint->extra_length = 0; in parse_endpoint()
152 endpoint->extra_length = len; in parse_endpoint()
213 ifp->extra_length = 0; in parse_interface()
255 ifp->extra_length = len; in parse_interface()
359 config->extra_length = 0; in parse_configuration()
396 if (!config->extra_length) { in parse_configuration()
404 config->extra_length = len; in parse_configuration()
Dlibusb.h399 int extra_length; member
449 int extra_length; member
507 int extra_length; member
/external/chromium_org/third_party/libusb/src/libusb/
Ddescriptor.c172 endpoint->extra_length = 0; in parse_endpoint()
179 endpoint->extra_length = 0; in parse_endpoint()
184 endpoint->extra_length = len; in parse_endpoint()
268 ifp->extra_length = 0; in parse_interface()
319 ifp->extra_length = len; in parse_interface()
423 config->extra_length = 0; in parse_configuration()
466 if (!config->extra_length) { in parse_configuration()
474 config->extra_length = len; in parse_configuration()
767 int size = endpoint->extra_length; in libusb_get_ss_endpoint_companion_descriptor()
Dlibusb.h576 int extra_length; member
626 int extra_length; member
684 int extra_length; member
/external/chromium_org/device/usb/
Dusb_device_impl.cc298 platform_endpoint->extra + platform_endpoint->extra_length); in GetConfiguration()
305 platform_alt_setting->extra + platform_alt_setting->extra_length); in GetConfiguration()
313 platform_config->extra + platform_config->extra_length); in GetConfiguration()
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
Dmock_audio_vector.h39 void(size_t extra_length));
/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()