Searched refs:repeat (Results 1 – 6 of 6) sorted by relevance
| /sound/core/ |
| A D | ump_convert.c | 33 u16 val, repeat; in upscale_7_to_16bit() local 38 repeat = src & 0x3f; in upscale_7_to_16bit() 39 return val | (repeat << 3) | (repeat >> 3); in upscale_7_to_16bit() 44 u32 val, repeat; in upscale_7_to_32bit() local 49 repeat = src & 0x3f; in upscale_7_to_32bit() 50 return val | (repeat << 19) | (repeat << 13) | in upscale_7_to_32bit() 51 (repeat << 7) | (repeat << 1) | (repeat >> 5); in upscale_7_to_32bit() 56 u32 val, repeat; in upscale_14_to_32bit() local 61 repeat = src & 0x1fff; in upscale_14_to_32bit() 62 return val | (repeat << 5) | (repeat >> 8); in upscale_14_to_32bit()
|
| A D | Kconfig | 202 Let me repeat: it enables EXTRA-VERBOSE DEBUGGING messages.
|
| /sound/usb/line6/ |
| A D | midibuf.c | 130 int repeat = 0; in line6_midibuf_read() local 173 repeat = 1; in line6_midibuf_read() 224 memcpy(data + repeat, this->buf + this->pos_read, length); in line6_midibuf_read() 229 memcpy(data + repeat, this->buf + this->pos_read, length1); in line6_midibuf_read() 230 memcpy(data + repeat + length1, this->buf, length2); in line6_midibuf_read() 234 if (repeat) in line6_midibuf_read() 238 return length + repeat; in line6_midibuf_read()
|
| /sound/core/seq/ |
| A D | seq_ump_convert.c | 34 u16 val, repeat; in upscale_7_to_16bit() local 39 repeat = src & 0x3f; in upscale_7_to_16bit() 40 return val | (repeat << 3) | (repeat >> 3); in upscale_7_to_16bit() 45 u32 val, repeat; in upscale_7_to_32bit() local 50 repeat = src & 0x3f; in upscale_7_to_32bit() 51 return val | (repeat << 19) | (repeat << 13) | in upscale_7_to_32bit() 52 (repeat << 7) | (repeat << 1) | (repeat >> 5); in upscale_7_to_32bit() 57 u32 val, repeat; in upscale_14_to_32bit() local 62 repeat = src & 0x1fff; in upscale_14_to_32bit() 63 return val | (repeat << 5) | (repeat >> 8); in upscale_14_to_32bit()
|
| A D | seq_clientmgr.c | 1045 repeat: in snd_seq_write() 1134 goto repeat; in snd_seq_write()
|
| /sound/hda/common/ |
| A D | controller.c | 1076 int repeat = 0; /* count for avoiding endless loop */ in azx_interrupt() local 1115 } while (active && ++repeat < 10); in azx_interrupt()
|
Completed in 20 milliseconds