Lines Matching refs:toklen
604 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) in get_tok() argument
621 *toklen = pos - *tokstart; in get_tok()
636 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) { in get_sub_tok() argument
652 *toklen = pos - *tokstart; in get_sub_tok()
662 *toklen = pos - *tokstart; in get_sub_tok()
665 *toklen = pos - *tokstart; in get_sub_tok()
685 int toklen, tokstart; /*legnth and start of generic token*/ in doCamelCase() local
692 toklen = 0; in doCamelCase()
701 while (get_tok(str, pos, textlen, &tokstart, &toklen)) { in doCamelCase()
705 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) { in doCamelCase()
726 while (get_tok (str, pos, textlen, &tokstart, &toklen)) { in doCamelCase()
730 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen)) { in doCamelCase()