33 Star 0 Fork 8

openKylin / git

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
split-index.h 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
LLL 提交于 2022-06-22 11:54 . Import Upstream version 2.25.1
#ifndef SPLIT_INDEX_H
#define SPLIT_INDEX_H
#include "cache.h"
struct index_state;
struct strbuf;
struct ewah_bitmap;
struct split_index {
struct object_id base_oid;
struct index_state *base;
struct ewah_bitmap *delete_bitmap;
struct ewah_bitmap *replace_bitmap;
struct cache_entry **saved_cache;
unsigned int saved_cache_nr;
unsigned int nr_deletions;
unsigned int nr_replacements;
int refcount;
};
struct split_index *init_split_index(struct index_state *istate);
void save_or_free_index_entry(struct index_state *istate, struct cache_entry *ce);
void replace_index_entry_in_base(struct index_state *istate,
struct cache_entry *old,
struct cache_entry *new_entry);
int read_link_extension(struct index_state *istate,
const void *data, unsigned long sz);
int write_link_extension(struct strbuf *sb,
struct index_state *istate);
void move_cache_to_base_index(struct index_state *istate);
void merge_base_index(struct index_state *istate);
void prepare_to_write_split_index(struct index_state *istate);
void finish_writing_split_index(struct index_state *istate);
void discard_split_index(struct index_state *istate);
void add_split_index(struct index_state *istate);
void remove_split_index(struct index_state *istate);
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openkylin/git.git
git@gitee.com:openkylin/git.git
openkylin
git
git
openkylin/yangtze

搜索帮助

344bd9b3 5694891 D2dac590 5694891