Lines Matching full:extra
127 nextra = N_ALIGN(pconf->extra.len); in libusb_get_config_descriptor()
132 nextra += N_ALIGN(pinf->extra.len); in libusb_get_config_descriptor()
137 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
145 nextra += N_ALIGN(pinf->extra.len); in libusb_get_config_descriptor()
150 nextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
191 if (pconf->extra.len != 0) { in libusb_get_config_descriptor()
192 pconfd->extra_length = pconf->extra.len; in libusb_get_config_descriptor()
193 pconfd->extra = pextra; in libusb_get_config_descriptor()
194 memcpy(pextra, pconf->extra.ptr, pconfd->extra_length); in libusb_get_config_descriptor()
231 if (pinf->extra.len != 0) { in libusb_get_config_descriptor()
232 ifd->extra_length = pinf->extra.len; in libusb_get_config_descriptor()
233 ifd->extra = pextra; in libusb_get_config_descriptor()
234 memcpy(pextra, pinf->extra.ptr, pinf->extra.len); in libusb_get_config_descriptor()
235 pextra += N_ALIGN(pinf->extra.len); in libusb_get_config_descriptor()
248 if (pend->extra.len != 0) { in libusb_get_config_descriptor()
249 endd->extra_length = pend->extra.len; in libusb_get_config_descriptor()
250 endd->extra = pextra; in libusb_get_config_descriptor()
251 memcpy(pextra, pend->extra.ptr, pend->extra.len); in libusb_get_config_descriptor()
252 pextra += N_ALIGN(pend->extra.len); in libusb_get_config_descriptor()
420 return (libusb_parse_ss_endpoint_comp(endpoint->extra, endpoint->extra_length, ep_comp)); in libusb_get_ss_endpoint_companion_descriptor()