length            737 gtags-parser/C.c 	int length = strlen(token);
length            738 gtags-parser/C.c 	const char *p = token + length;
length            740 gtags-parser/C.c 	if (length > 2 && strcmp(p - 2, "_t") == 0)
length            771 gtags-parser/Cpp.c 	int length = strlen(token);
length            772 gtags-parser/Cpp.c 	const char *p = token + length;
length            774 gtags-parser/Cpp.c 	if (length > 2 && strcmp(p - 2, "_t") == 0)
length            189 htags/anchor.c 	if (vb->length == 0) {
length            192 htags/anchor.c 		int i, used = vb->length;
length            217 htags/anchor.c 	end = &table[vb->length];
length            275 htags/anchor.c anchor_get(const char *name, int length, int type, int lineno)
length            292 htags/anchor.c 		if (!p->done && p->length == length && !strcmp(gettag(p), name))
length             36 htags/anchor.h 	int length;
length             44 htags/anchor.h 	(a)->length = strlen(tag);					\
length             45 htags/anchor.h 	if ((a)->length < ANCHOR_NAMELEN) {				\
length            223 htags/fileindex.c 	int length = strlen(dir);
length            225 htags/fileindex.c 	if (!strncmp(path, dir, length) && *(path + length) == '/')
length            226 htags/fileindex.c 		return path + length + 1;
length            459 htags/htags.c  			int length = pmatch[0].rm_eo - pmatch[0].rm_so;
length            465 htags/htags.c  				if (!strncmp(start, tab[i].name, length))
length            240 libglibc/obstack.c _obstack_newchunk (struct obstack *h, int length)
length            251 libglibc/obstack.c   new_size = (obj_size + length) + (obj_size >> 3) + h->alignment_mask + 100;
length            267 libglibc/obstack.h # define obstack_make_room(OBSTACK,length)				\
length            270 libglibc/obstack.h    int __len = (length);						\
length            280 libglibc/obstack.h # define obstack_grow(OBSTACK,where,length)				\
length            283 libglibc/obstack.h    int __len = (length);						\
length            290 libglibc/obstack.h # define obstack_grow0(OBSTACK,where,length)				\
length            293 libglibc/obstack.h    int __len = (length);						\
length            341 libglibc/obstack.h # define obstack_blank(OBSTACK,length)					\
length            344 libglibc/obstack.h    int __len = (length);						\
length            350 libglibc/obstack.h # define obstack_alloc(OBSTACK,length)					\
length            353 libglibc/obstack.h    obstack_blank (__h, (length));					\
length            356 libglibc/obstack.h # define obstack_copy(OBSTACK,where,length)				\
length            359 libglibc/obstack.h    obstack_grow (__h, (where), (length));				\
length            362 libglibc/obstack.h # define obstack_copy0(OBSTACK,where,length)				\
length            365 libglibc/obstack.h    obstack_grow0 (__h, (where), (length));				\
length            410 libglibc/obstack.h # define obstack_make_room(h,length)					\
length            411 libglibc/obstack.h ( (h)->temp = (length),							\
length            415 libglibc/obstack.h # define obstack_grow(h,where,length)					\
length            416 libglibc/obstack.h ( (h)->temp = (length),							\
length            422 libglibc/obstack.h # define obstack_grow0(h,where,length)					\
length            423 libglibc/obstack.h ( (h)->temp = (length),							\
length            451 libglibc/obstack.h # define obstack_blank(h,length)					\
length            452 libglibc/obstack.h ( (h)->temp = (length),							\
length            457 libglibc/obstack.h # define obstack_alloc(h,length)					\
length            458 libglibc/obstack.h  (obstack_blank ((h), (length)), obstack_finish ((h)))
length            460 libglibc/obstack.h # define obstack_copy(h,where,length)					\
length            461 libglibc/obstack.h  (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
length            463 libglibc/obstack.h # define obstack_copy0(h,where,length)					\
length            464 libglibc/obstack.h  (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))
length             74 libglibc/regex.c # define re_compile_pattern(pattern, length, bufp) \
length             75 libglibc/regex.c 	__re_compile_pattern (pattern, length, bufp)
length           5517 libglibc/regex.c re_compile_pattern (pattern, length, bufp)
length           5519 libglibc/regex.c      size_t length;
length           5536 libglibc/regex.c   ret = regex_compile (pattern, length, re_syntax_options, bufp);
length            450 libglibc/regex.h   _RE_ARGS ((const char *pattern, size_t length,
length            467 libglibc/regex.h             int length, int start, int range, struct re_registers *regs));
length            482 libglibc/regex.h              int length, int start, struct re_registers *regs));
length            400 libutil/abs2rel.c 	int length;
length            413 libutil/abs2rel.c 	length = strlen(base);
length            416 libutil/abs2rel.c 		if (length >= size)
length            422 libutil/abs2rel.c 		rp = result + length - 1;
length            427 libutil/abs2rel.c 			if (length > 1)
length            443 libutil/abs2rel.c 	bp = base + length;
length            466 libutil/abs2rel.c 	length = bp - base;
length            467 libutil/abs2rel.c 	if (length >= size)
length            469 libutil/abs2rel.c 	strncpy(result, base, length);
length            470 libutil/abs2rel.c 	rp = result + length;
length            471 libutil/abs2rel.c 	if (*pp || *(pp - 1) == '/' || length == 0)
length             72 libutil/compress.c 	int length;
length            111 libutil/compress.c 		ab->length = strlen(ab->name);
length            117 libutil/compress.c 		ab2name[i].length = ab->length;
length            147 libutil/compress.c 	limit = name2ab->length;
length            168 libutil/compress.c 	int length = strlen(name);
length            195 libutil/compress.c 		} else if (!strncmp(p, name, length)) {
length            197 libutil/compress.c 			p += length;
length            199 libutil/compress.c 			int i, limit = name2ab->length;
length            203 libutil/compress.c 				if (!strncmp(p, ab[i].name, ab[i].length)) {
length            206 libutil/compress.c 					p += ab[i].length;
length            198 libutil/dbop.c dbop_put_withlen(DBOP *dbop, const char *name, const char *data, int length)
length            212 libutil/dbop.c 	dat.size = length;
length            749 libutil/gtagsop.c 		qsort(lno_array, vb->length, sizeof(int), compare_lineno); 
length            770 libutil/gtagsop.c 			for (i = 0; i < vb->length; i++) {
length            816 libutil/gtagsop.c 			for (i = 0; i < vb->length; i++) {
length            903 libutil/gtagsop.c 	gtop->gtp_count = gtop->vb->length;
length            169 libutil/linetable.c 	if (vb->length == lineno) {
length             59 libutil/makepath.c 	int length;
length             64 libutil/makepath.c 		if ((length = strlen(dir)) > MAXPATHLEN)
length             82 libutil/makepath.c 	if ((length = strlen(strbuf_value(sb))) > MAXPATHLEN)
length             96 libutil/strbuf.c __strbuf_expandbuf(STRBUF *sb, int length)
length             99 libutil/strbuf.c 	int newsize = sb->sbufsize + (length > EXPANDSIZE ? length : EXPANDSIZE);
length             96 libutil/varray.c 	vb->alloced = vb->length = 0;
length            118 libutil/varray.c 	if (index >= vb->length) {
length            120 libutil/varray.c 			vb->length = index + 1;
length            121 libutil/varray.c 		else if (index == 0 && vb->length == 0)
length            160 libutil/varray.c 	return varray_assign(vb, vb->length, 1);
length            170 libutil/varray.c 	vb->length = 0;
length             25 libutil/varray.h 	int length;
length             71 libutil/xargs.c exec_line_limit(int length)
length             95 libutil/xargs.c 	limit -= length + 80;
length            105 libutil/xargs.c 	limit = 2047 - length - 80;
length            143 libutil/xargs.c 	length = strlen(path);\
length            149 libutil/xargs.c 	if (strbuf_getlen(comline) + length + 2 > limit)\
length            186 libutil/xargs.c 	int length;
length            228 libutil/xargs.c 		for (; LT_MAX && xp->curp < xp->endp; xp->curp += length + 1)