Home | History | Annotate | Download | only in tts

Lines Matching full:tokstart

587  *  @tokstart - address of a variable to receive the start of the token found
588 * @tokstart - address of a variable to receive the length of the token found
592 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen)
604 *tokstart = pos;
609 *toklen = pos - *tokstart;
619 * @tokstart - address of a variable to receive the start of the sub token found
620 * @tokstart - address of a variable to receive the length of the sub token found
624 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) {
633 *tokstart = pos;
640 *toklen = pos - *tokstart;
650 *toklen = pos - *tokstart;
653 *toklen = pos - *tokstart;
673 int toklen, tokstart; /*legnth and start of generic token*/
689 while (get_tok(str, pos, textlen, &tokstart, &toklen)) {
690 tokpos = tokstart;
693 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) {
700 pos = tokstart + tlen_2;
714 while (get_tok (str, pos, textlen, &tokstart, &toklen)) {
715 tokpos = tokstart;
718 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) {
726 pos=tokstart+tlen_2;