Searched refs:toklen (Results 1 – 3 of 3) sorted by relevance
/external/svox/pico/tts/ |
D | com_svox_picottsengine.cpp | 603 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) in get_tok() argument 620 *toklen = pos - *tokstart; in get_tok() 635 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) { in get_sub_tok() argument 651 *toklen = pos - *tokstart; in get_sub_tok() 661 *toklen = pos - *tokstart; in get_sub_tok() 664 *toklen = pos - *tokstart; in get_sub_tok() 684 int toklen, tokstart; /*legnth and start of generic token*/ in doCamelCase() local 691 toklen = 0; in doCamelCase() 700 while (get_tok(str, pos, textlen, &tokstart, &toklen)) { in doCamelCase() 704 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) { in doCamelCase() [all …]
|
/external/tcpdump/ |
D | util.c | 513 size_t toklen = 0; in fetch_token() local 532 if (toklen + 2 > tbuflen) { in fetch_token() 536 tbuf[toklen] = *(pptr + idx); in fetch_token() 537 toklen++; in fetch_token() 539 if (toklen == 0) { in fetch_token() 543 tbuf[toklen] = '\0'; in fetch_token()
|
/external/libxml2/ |
D | rngparser.c | 58 int toklen; member 291 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() 292 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 308 token->toklen = 2; in xmlCRNGNextToken() 310 token->toklen = 1; in xmlCRNGNextToken() 312 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 315 ctxt->cur += token->toklen; in xmlCRNGNextToken() 328 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() 329 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken() 347 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken() [all …]
|