index              64 gtags-cscope/global-cscope.h #  define strchr index
index             775 htags/htags.c  makeindex(const char *file, const char *title, const char *index)
index             801 htags/htags.c  		fputs(index, op);
index             811 htags/htags.c  		fputs(index, op);
index             827 htags/htags.c  makemainindex(const char *file, const char *index)
index             838 htags/htags.c  	fputs(index, op);
index            1563 htags/htags.c  	const char *index = NULL;
index            2209 htags/htags.c  		index = makecommonpart(title, strbuf_value(defines), strbuf_value(files));
index            2218 htags/htags.c  	makeindex("index.html", title, index);
index            2223 htags/htags.c  	makemainindex("mains.html", index);
index             114 libdb/bt_delete.c 			status = __bt_dleaf(t, NULL, h, c->pg.index);
index             154 libdb/bt_delete.c 	indx_t index = 0;
index             191 libdb/bt_delete.c 			if (parent->index != NEXTINDEX(h) - 1) {
index             192 libdb/bt_delete.c 				index = parent->index + 1;
index             193 libdb/bt_delete.c 				BT_PUSH(t, h->pgno, index);
index             202 libdb/bt_delete.c 			bi = GETBINTERNAL(h, index);
index             212 libdb/bt_delete.c 			index = 0;
index             246 libdb/bt_delete.c 			if (parent->index != 0) {
index             247 libdb/bt_delete.c 				index = parent->index - 1;
index             248 libdb/bt_delete.c 				BT_PUSH(t, h->pgno, index);
index             257 libdb/bt_delete.c 			bi = GETBINTERNAL(h, index);
index             267 libdb/bt_delete.c 			index = NEXTINDEX(h) - 1;
index             268 libdb/bt_delete.c 			BT_PUSH(t, pgno, index);
index             316 libdb/bt_delete.c 		if (__bt_dleaf(t, key, h, e->index)) {
index             329 libdb/bt_delete.c 	} while (e->index < NEXTINDEX(h) && __bt_cmp(t, key, e) == 0);
index             332 libdb/bt_delete.c 	if (e->index == NEXTINDEX(h))
index             336 libdb/bt_delete.c 	while (e->index-- > 0) {
index             339 libdb/bt_delete.c 		if (__bt_dleaf(t, key, h, e->index) == RET_ERROR) {
index             343 libdb/bt_delete.c 		if (e->index == 0)
index             382 libdb/bt_delete.c 	indx_t cnt, index, *ip, offset;
index             403 libdb/bt_delete.c 		index = parent->index;
index             404 libdb/bt_delete.c 		bi = GETBINTERNAL(pg, index);
index             436 libdb/bt_delete.c 			offset = pg->linp[index];
index             437 libdb/bt_delete.c 			for (cnt = index, ip = &pg->linp[0]; cnt--; ++ip)
index             440 libdb/bt_delete.c 			for (cnt = NEXTINDEX(pg) - index; --cnt; ++ip)
index             469 libdb/bt_delete.c __bt_dleaf(t, key, h, index)
index             473 libdb/bt_delete.c 	u_int index;
index             484 libdb/bt_delete.c 	    t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index == index &&
index             485 libdb/bt_delete.c 	    __bt_curdel(t, key, h, index))
index             489 libdb/bt_delete.c 	to = bl = GETBLEAF(h, index);
index             503 libdb/bt_delete.c 	offset = h->linp[index];
index             504 libdb/bt_delete.c 	for (cnt = index, ip = &h->linp[0]; cnt--; ++ip)
index             507 libdb/bt_delete.c 	for (cnt = NEXTINDEX(h) - index; --cnt; ++ip)
index             514 libdb/bt_delete.c 	    t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index > index)
index             515 libdb/bt_delete.c 		--t->bt_cursor.pg.index;
index             532 libdb/bt_delete.c __bt_curdel(t, key, h, index)
index             536 libdb/bt_delete.c 	u_int index;
index             559 libdb/bt_delete.c 			e.index = index;
index             567 libdb/bt_delete.c 		if (index > 0) { 
index             569 libdb/bt_delete.c 			e.index = index - 1;
index             576 libdb/bt_delete.c 		if (index < NEXTINDEX(h) - 1) {
index             578 libdb/bt_delete.c 			e.index = index + 1;
index             585 libdb/bt_delete.c 		if (index == 0 && h->prevpg != P_INVALID) {
index             589 libdb/bt_delete.c 			e.index = NEXTINDEX(pg) - 1;
index             597 libdb/bt_delete.c 		if (index == NEXTINDEX(h) - 1 && h->nextpg != P_INVALID) {
index             601 libdb/bt_delete.c 			e.index = 0;
index             606 libdb/bt_delete.c 				c->pg.index = e.index;
index             613 libdb/bt_delete.c 	e.index = index;
index              81 libdb/bt_put.c 	indx_t index, nxtindex;
index             160 libdb/bt_put.c 		index = t->bt_cursor.pg.index;
index             172 libdb/bt_put.c 	index = e->index;
index             194 libdb/bt_put.c delete:		if (__bt_dleaf(t, key, h, index) == RET_ERROR) {
index             210 libdb/bt_put.c 		    data, dflags, nbytes, index)) != RET_SUCCESS)
index             215 libdb/bt_put.c 	if (index < (nxtindex = NEXTINDEX(h)))
index             216 libdb/bt_put.c 		memmove(h->linp + index + 1, h->linp + index,
index             217 libdb/bt_put.c 		    (nxtindex - index) * sizeof(indx_t));
index             220 libdb/bt_put.c 	h->linp[index] = h->upper -= nbytes;
index             227 libdb/bt_put.c 	    t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index >= index)
index             228 libdb/bt_put.c 		++t->bt_cursor.pg.index;
index             232 libdb/bt_put.c 			if (index == NEXTINDEX(h) - 1) {
index             234 libdb/bt_put.c 				t->bt_last.index = index;
index             238 libdb/bt_put.c 			if (index == 0) {
index             240 libdb/bt_put.c 				t->bt_last.index = 0;
index             249 libdb/bt_put.c 		__bt_setcur(t, e->page->pgno, e->index);
index             282 libdb/bt_put.c 	t->bt_cur.index = t->bt_last.index;
index             295 libdb/bt_put.c 		if (t->bt_cur.index != NEXTINDEX(h) - 1)
index             299 libdb/bt_put.c 		t->bt_last.index = cmp ? ++t->bt_cur.index : t->bt_cur.index;
index             303 libdb/bt_put.c 		if (t->bt_cur.index != 0)
index             307 libdb/bt_put.c 		t->bt_last.index = 0;
index              70 libdb/bt_search.c 	indx_t base, index, lim;
index              82 libdb/bt_search.c 			t->bt_cur.index = index = base + (lim >> 1);
index              91 libdb/bt_search.c 				base = index + 1;
index             116 libdb/bt_search.c 			t->bt_cur.index = base;
index             127 libdb/bt_search.c 		index = base ? base - 1 : base;
index             129 libdb/bt_search.c next:		BT_PUSH(t, h->pgno, index);
index             130 libdb/bt_search.c 		pg = GETBINTERNAL(h, index)->pgno;
index             162 libdb/bt_search.c 	e.index = 0;
index             200 libdb/bt_search.c 	e.index = NEXTINDEX(e.page) - 1;
index             119 libdb/bt_seq.c 		__bt_setcur(t, e.page->pgno, e.index);
index             197 libdb/bt_seq.c 		ep->index = 0;
index             219 libdb/bt_seq.c 		ep->index = NEXTINDEX(h) - 1;
index             247 libdb/bt_seq.c 	indx_t index = 0;
index             285 libdb/bt_seq.c 		index = c->pg.index;
index             286 libdb/bt_seq.c 		if (++index == NEXTINDEX(h)) {
index             293 libdb/bt_seq.c 			index = 0;
index             305 libdb/bt_seq.c 			ep->index = c->pg.index;
index             308 libdb/bt_seq.c 		index = c->pg.index;
index             309 libdb/bt_seq.c 		if (index == 0) {
index             316 libdb/bt_seq.c 			index = NEXTINDEX(h) - 1;
index             318 libdb/bt_seq.c 			--index;
index             323 libdb/bt_seq.c 	ep->index = index;
index             379 libdb/bt_seq.c 				save.index = ep->index;
index             386 libdb/bt_seq.c 			if (ep->index == 0) {
index             399 libdb/bt_seq.c 				ep->index = NEXTINDEX(h);
index             401 libdb/bt_seq.c 			--ep->index;
index             417 libdb/bt_seq.c 	if (ep->index == NEXTINDEX(ep->page)) {
index             425 libdb/bt_seq.c 		ep->index = 0;
index             441 libdb/bt_seq.c __bt_setcur(t, pgno, index)
index             444 libdb/bt_seq.c 	u_int index;
index             456 libdb/bt_seq.c 	t->bt_cursor.pg.index = index;
index             166 libdb/bt_split.c 		skip = parent->index + 1;
index             709 libdb/bt_split.c 		if (c->pg.index >= skip)
index             710 libdb/bt_split.c 			++c->pg.index;
index             711 libdb/bt_split.c 		if (c->pg.index < nxt)			/* Left page. */
index             715 libdb/bt_split.c 			c->pg.index -= nxt;
index              78 libdb/bt_utils.c 	bl = GETBLEAF(e->page, e->index);
index             173 libdb/bt_utils.c 	if (e->index == 0 && h->prevpg == P_INVALID && !(h->flags & P_BLEAF))
index             178 libdb/bt_utils.c 		bl = GETBLEAF(h, e->index);
index             186 libdb/bt_utils.c 		bi = GETBINTERNAL(h, e->index);
index             260 libdb/btree.h  	indx_t	index;			/**< the index on the page */
index             265 libdb/btree.h  	indx_t	 index;			/**< the index on the page */
index             339 libdb/btree.h  	t->bt_sp->index = i; 						\
index             127 libdb/compat.h #define	strchr(a, b)		index(a, b)
index             118 libutil/varray.c varray_assign(VARRAY *vb, int index, int force)
index             120 libutil/varray.c 	if (index < 0)
index             122 libutil/varray.c 	if (index >= vb->length) {
index             124 libutil/varray.c 			vb->length = index + 1;
index             125 libutil/varray.c 		else if (index == 0 && vb->length == 0)
index             128 libutil/varray.c 			die("varray_assign: index(=%d) is out of range.", index);
index             133 libutil/varray.c 	if (index >= vb->alloced) {
index             136 libutil/varray.c 		while (index >= vb->alloced)
index             150 libutil/varray.c 	return (void *)(vb->vbuf + vb->size * index);