Searched refs:length1 (Results 1 - 4 of 4) sorted by relevance

/drivers/staging/line6/
H A Dmidibuf.c94 int length1, length2; local
112 length1 = this->size - this->pos_write;
114 if (length < length1) {
120 length2 = length - length1;
121 memcpy(this->buf + this->pos_write, data, length1);
122 memcpy(this->buf, data + length1, length2);
136 int length1, length2; local
154 length1 = this->size - this->pos_read;
178 if (length < length1) {
187 length2 = length - length1;
[all...]
/drivers/acpi/acpica/
H A Dexmisc.c169 acpi_size length1; local
196 length1 = ACPI_PTR_DIFF(end_tag, operand1->buffer.pointer);
200 new_length = length0 + length1 + sizeof(struct aml_resource_end_tag);
215 ACPI_MEMCPY(new_buf + length0, operand1->buffer.pointer, length1);
568 u32 length1; local
651 length1 = local_operand1->buffer.length;
657 (length0 > length1) ? length1 : length0);
664 if ((length0 == length1) && (compare == 0)) {
684 if (length0 > length1) {
[all...]
/drivers/usb/gadget/
H A Df_audio_source.c325 int length, length1, length2, ret; local
369 length1 = audio->buffer_end - audio->buffer_pos;
371 length1 = length;
372 memcpy(req->buf, audio->buffer_pos, length1);
373 if (length1 < length) {
377 length2 = length - length1;
378 memcpy(req->buf + length1, audio->buffer_start,
382 audio->buffer_pos += length1;
/drivers/staging/speakup/
H A Di18n.c489 size_t length1 = end1 - *input1; local
492 if ((length1 == length2) && !memcmp(*input1, *input2, length1))

Completed in 240 milliseconds