| 53 | } |
| 54 | |
| 55 | static struct dir_entry *find_dir_entry(struct index_state *istate, |
| 56 | const char *name, unsigned int namelen) |
| 57 | { |
| 58 | return find_dir_entry__hash(istate, name, namelen, memihash(name, namelen)); |
| 59 | } |
| 60 | |
| 61 | static struct dir_entry *hash_dir_entry(struct index_state *istate, |
| 62 | struct cache_entry *ce, int namelen) |
no test coverage detected