Home
last modified time | relevance | path

Searched refs:buffer_end (Results 1 – 13 of 13) sorted by relevance

/openbmc/linux/drivers/accessibility/speakup/
H A Dbuffers.c14 static u16 *buffer_end = synth_buffer + SYNTH_BUF_SIZE - 1; variable
78 if (buff_in > buffer_end) in synth_buffer_add()
93 if (buff_out > buffer_end) in synth_buffer_getc()
113 if (buff_out > buffer_end) in synth_buffer_skip_nonlatin1()
/openbmc/linux/sound/sh/
H A Dsh_dac_audio.c46 char *data_buffer, *buffer_begin, *buffer_end; member
67 chip->buffer_begin = chip->buffer_end = chip->data_buffer; in dac_audio_reset()
106 chip->buffer_begin = chip->buffer_end = chip->data_buffer; in snd_sh_dac_pcm_open()
147 chip->buffer_begin = chip->buffer_end = chip->data_buffer; in snd_sh_dac_pcm_trigger()
168 chip->buffer_end = chip->data_buffer + pos + count; in snd_sh_dac_pcm_copy()
186 chip->buffer_end = chip->data_buffer + pos + count; in snd_sh_dac_pcm_silence()
283 if (chip->buffer_begin == chip->buffer_end) in sh_dac_audio_timer()
/openbmc/linux/drivers/platform/x86/dell/
H A Ddell-wmi-base.c452 u16 *buffer_entry, *buffer_end; in dell_wmi_notify() local
466 buffer_end = buffer_entry + buffer_size; in dell_wmi_notify()
480 if (priv->interface_version == 0 && buffer_entry < buffer_end) in dell_wmi_notify()
481 if (buffer_end > buffer_entry + buffer_entry[0] + 1) in dell_wmi_notify()
482 buffer_end = buffer_entry + buffer_entry[0] + 1; in dell_wmi_notify()
484 while (buffer_entry < buffer_end) { in dell_wmi_notify()
492 if (buffer_entry + len > buffer_end) { in dell_wmi_notify()
/openbmc/linux/sound/pci/nm256/
H A Dnm256.c202 u32 buffer_end; /* end offset */ member
1321 unsigned long pointer_found = chip->buffer_end - 0x1400; in snd_nm256_peek_for_sig()
1324 temp = ioremap(chip->buffer_addr + chip->buffer_end - 0x400, 16); in snd_nm256_peek_for_sig()
1340 pointer > chip->buffer_end) { in snd_nm256_peek_for_sig()
1354 chip->buffer_end = pointer_found; in snd_nm256_peek_for_sig()
1480 chip->buffer_end = 2560 * 1024; in snd_nm256_create()
1487 chip->buffer_end = 6144 * 1024; in snd_nm256_create()
1489 chip->buffer_end = 4096 * 1024; in snd_nm256_create()
1503 if (buffer_top >= chip->buffer_size && buffer_top < chip->buffer_end) in snd_nm256_create()
1504 chip->buffer_end = buffer_top; in snd_nm256_create()
[all …]
/openbmc/linux/lib/
H A Ddecompress_unlzma.c71 uint8_t *buffer_end; member
97 rc->buffer_end = rc->buffer + rc->buffer_size; in rc_read()
111 rc->buffer_end = rc->buffer + rc->buffer_size; in rc_init()
123 if (rc->ptr >= rc->buffer_end) in rc_init_code()
133 if (rc->ptr >= rc->buffer_end) in rc_do_normalize()
581 if (rc.ptr >= rc.buffer_end) in unlzma()
/openbmc/qemu/include/qemu/
H A Dbuffer.h128 uint8_t *buffer_end(Buffer *buffer);
/openbmc/linux/fs/pstore/
H A Dram_core.c126 uint8_t *buffer_end = buffer->data + prz->buffer_size; in persistent_ram_update_ecc() local
140 if (block + ecc_block_size > buffer_end) in persistent_ram_update_ecc()
141 size = buffer_end - block; in persistent_ram_update_ecc()
/openbmc/qemu/util/
H A Dbuffer.c103 uint8_t *buffer_end(Buffer *buffer) in buffer_end() function
/openbmc/linux/drivers/usb/storage/
H A Dsddr09.c1202 unsigned char *buffer, *buffer_end, *ptr; in sddr09_read_map() local
1229 buffer_end = buffer + alloc_len; in sddr09_read_map()
1251 ptr = buffer_end; in sddr09_read_map()
1254 if (ptr >= buffer_end) { in sddr09_read_map()
/openbmc/linux/drivers/firewire/
H A Dcore-cdev.c1125 unsigned long payload, buffer_end, transmit_header_bytes = 0; in ioctl_queue_iso() local
1146 buffer_end = client->buffer.page_count << PAGE_SHIFT; in ioctl_queue_iso()
1148 payload >= buffer_end) { in ioctl_queue_iso()
1150 buffer_end = 0; in ioctl_queue_iso()
1200 if (payload + u.packet.payload_length > buffer_end) in ioctl_queue_iso()
H A Dohci.c993 void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE; in ar_context_tasklet() local
994 p = handle_ar_packets(ctx, p, buffer_end); in ar_context_tasklet()
995 if (p < buffer_end) in ar_context_tasklet()
/openbmc/qemu/io/
H A Dchannel-websock.c494 (char *)buffer_end(&ioc->encinput), want, errp); in qio_channel_websock_handshake_read()
/openbmc/qemu/ui/
H A Dvnc.c1564 ret = vnc_client_read_buf(vs, buffer_end(&vs->input), 4096); in vnc_client_read_plain()