Searched refs:bytes_recv (Results 1 – 1 of 1) sorted by relevance
/external/svox/pico/tts/ |
D | com_svox_picottsengine.cpp | 1465 pico_Int16 bytes_sent, bytes_recv, text_remaining, out_data_type; in synthesizeText() local 1580 ret = pico_getData( picoEngine, (void *) outbuf, MAX_OUTBUF_SIZE, &bytes_recv, in synthesizeText() 1582 if (bytes_recv) { in synthesizeText() 1583 if ((bufused + bytes_recv) <= bufferSize) { in synthesizeText() 1584 memcpy(buffer+bufused, (int8_t *) outbuf, bytes_recv); in synthesizeText() 1585 bufused += bytes_recv; in synthesizeText() 1597 memcpy(buffer, (int8_t *) outbuf, bytes_recv); in synthesizeText() 1598 bufused += bytes_recv; in synthesizeText()
|