Home
last modified time | relevance | path

Searched refs:toklen (Results 1 – 3 of 3) sorted by relevance

/external/svox/pico/tts/
Dcom_svox_picottsengine.cpp603 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/
Dutil-print.c675 size_t toklen = 0; in fetch_token() local
694 if (toklen + 2 > tbuflen) { in fetch_token()
698 tbuf[toklen] = *(pptr + idx); in fetch_token()
699 toklen++; in fetch_token()
701 if (toklen == 0) { in fetch_token()
705 tbuf[toklen] = '\0'; in fetch_token()
/external/libxml2/
Drngparser.c58 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 …]