Lines Matching refs:toklen
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()
725 while (get_tok (str, pos, textlen, &tokstart, &toklen)) { in doCamelCase()
729 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) { in doCamelCase()