HomeSort by relevance Sort by last modified time
    Searched refs:toklen (Results 1 - 3 of 3) sorted by null

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

Completed in 79 milliseconds