Searched refs:wptr (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dauto_corr_to_refl_coef.c26 int16_t *acfptr, *pptr, *wptr, *p1ptr, *w1ptr, ACF[WEBRTC_SPL_MAX_LPC_ORDER], local
35 wptr = w1ptr;
46 *wptr++ = *acfptr;
89 wptr = w1ptr;
95 tmp = (int16_t)(((int32_t)*wptr * (int32_t)*K + 16384) >> 15);
99 *wptr = WebRtcSpl_AddSatW16(*wptr, tmp);
100 wptr++;
/external/webrtc/src/common_audio/signal_processing/
H A Dauto_corr_to_refl_coef.c26 WebRtc_Word16 *acfptr, *pptr, *wptr, *p1ptr, *w1ptr, ACF[WEBRTC_SPL_MAX_LPC_ORDER], local
35 wptr = w1ptr;
46 *wptr++ = *acfptr;
89 wptr = w1ptr;
95 tmp = (WebRtc_Word16)(((WebRtc_Word32)*wptr * (WebRtc_Word32)*K + 16384) >> 15);
99 *wptr = WEBRTC_SPL_ADD_SAT_W16( *wptr, tmp );
100 wptr++;
/external/libedit/src/
H A Dtokenizer.c78 Char *wptr, *wmax; /* Space and limit on the word buffer */ local
96 *tok->wptr = '\0';
97 if ((tok->flags & TOK_KEEP) || tok->wptr != tok->wstart) {
100 tok->wstart = ++tok->wptr;
139 tok->wptr = tok->wspace;
156 tok->wptr = tok->wspace;
208 co = (int)(tok->wptr - tok->wstart);
226 *tok->wptr++ = *ptr;
230 *tok->wptr++ = *ptr;
235 *tok->wptr
[all...]
/external/chromium_org/net/tools/flip_server/
H A Dring_buffer.cc34 char* wptr; local
36 GetWritablePtr(&wptr, &wsize);
44 memcpy(wptr, bytes + bytes_written, wsize);
48 GetWritablePtr(&wptr, &wsize);
/external/qemu/hw/input/
H A Dps2.c77 int rptr, wptr, count; member in struct:__anon29670
130 q->data[q->wptr] = b;
131 if (++q->wptr == PS2_QUEUE_SIZE)
132 q->wptr = 0;
498 q->wptr = 0;
507 qemu_put_be32 (f, s->queue.wptr);
516 s->queue.wptr=qemu_get_be32 (f);
/external/qemu/ui/
H A Dconsole.c94 int count, wptr, rptr; member in struct:QEMUFIFO
106 l = f->buf_size - f->wptr;
109 memcpy(f->buf + f->wptr, buf, l);
110 f->wptr += l;
111 if (f->wptr >= f->buf_size)
112 f->wptr = 0;

Completed in 192 milliseconds