Searched refs:bytes_recv (Results 1 – 1 of 1) sorted by relevance
/external/svox/pico/tts/ |
D | com_svox_picottsengine.cpp | 1470 pico_Int16 bytes_sent, bytes_recv, text_remaining, out_data_type; in synthesizeText() local 1585 ret = pico_getData( picoEngine, (void *) outbuf, MAX_OUTBUF_SIZE, &bytes_recv, in synthesizeText() 1587 if (bytes_recv) { in synthesizeText() 1588 if ((bufused + bytes_recv) <= bufferSize) { in synthesizeText() 1589 memcpy(buffer+bufused, (int8_t *) outbuf, bytes_recv); in synthesizeText() 1590 bufused += bytes_recv; in synthesizeText() 1602 memcpy(buffer, (int8_t *) outbuf, bytes_recv); in synthesizeText() 1603 bufused += bytes_recv; in synthesizeText()
|