eindex            399 pack-bitmap.c  	struct eindex *eindex = &bitmap_git.ext_index;
eindex            405 pack-bitmap.c  	hash_pos = kh_put_sha1_pos(eindex->positions, object->sha1, &hash_ret);
eindex            407 pack-bitmap.c  		if (eindex->count >= eindex->alloc) {
eindex            408 pack-bitmap.c  			eindex->alloc = (eindex->alloc + 16) * 3 / 2;
eindex            409 pack-bitmap.c  			REALLOC_ARRAY(eindex->objects, eindex->alloc);
eindex            410 pack-bitmap.c  			REALLOC_ARRAY(eindex->hashes, eindex->alloc);
eindex            413 pack-bitmap.c  		bitmap_pos = eindex->count;
eindex            414 pack-bitmap.c  		eindex->objects[eindex->count] = object;
eindex            415 pack-bitmap.c  		eindex->hashes[eindex->count] = pack_name_hash(name);
eindex            416 pack-bitmap.c  		kh_value(eindex->positions, hash_pos) = bitmap_pos;
eindex            417 pack-bitmap.c  		eindex->count++;
eindex            419 pack-bitmap.c  		bitmap_pos = kh_value(eindex->positions, hash_pos);
eindex            591 pack-bitmap.c  	struct eindex *eindex = &bitmap_git.ext_index;
eindex            594 pack-bitmap.c  	for (i = 0; i < eindex->count; ++i) {
eindex            600 pack-bitmap.c  		obj = eindex->objects[i];
eindex            601 pack-bitmap.c  		show_reach(obj->sha1, obj->type, 0, eindex->hashes[i], NULL, 0);
eindex            840 pack-bitmap.c  	struct eindex *eindex = &bitmap_git.ext_index;
eindex            872 pack-bitmap.c  	for (i = 0; i < eindex->count; ++i) {
eindex            873 pack-bitmap.c  		if (eindex->objects[i]->type == type &&