Home
last modified time | relevance | path

Searched refs:read_buf (Results 1 – 8 of 8) sorted by relevance

/device/google/dragon/audio/hal/
Daudio_hw.h268 int16_t* read_buf; member
Daudio_hw.c1172 in->read_buf = (int16_t *) realloc(in->read_buf, size_in_bytes); in get_next_buffer()
1173 ALOG_ASSERT((in->read_buf != NULL), in get_next_buffer()
1177 in->read_status = pcm_read(pcm_device->pcm, (void*)in->read_buf, size_in_bytes); in get_next_buffer()
1190 buffer->i16 = in->read_buf + (in->config.period_size - in->read_buf_frames) * in get_next_buffer()
2354 if (in->read_buf) { in do_in_standby_l()
2355 free(in->read_buf); in do_in_standby_l()
2356 in->read_buf = NULL; in do_in_standby_l()
3097 if (in->read_buf) { in adev_close_input_stream()
3098 free(in->read_buf); in adev_close_input_stream()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
956 local int read_buf(strm, buf, size) in read_buf() function
1342 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
DChangeLog493 - read_buf buf parameter of type Bytef* instead of charf*
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsocketmodule.c2346 char *read_buf; local
2372 read_buf = cbuf;
2389 nread = recv(s->sock_fd, read_buf, segment, flags);
2401 read_buf += nread;
2406 read_buf += segment;
2408 outlen = read_buf - cbuf;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsocketmodule.c2405 char *read_buf; local
2433 read_buf = cbuf;
2451 nread = recv(s->sock_fd, read_buf, segment, flags);
2465 read_buf += nread;
2470 read_buf += segment;
2472 outlen = read_buf - cbuf;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Ddeflate.c87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
1076 local int read_buf(strm, buf, size) in read_buf() function
1467 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
DChangeLog1110 - read_buf buf parameter of type Bytef* instead of charf*