Searched defs:hash (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java66 private final Map<Date, Map<String, Map<String, SortedSet<String>>>> hash = field in class:DirectoryHistoryReader
178 Map<String, Map<String, SortedSet<String>>> ac = hash.get(date);
181 hash.put(date, ac);
201 diter = hash.keySet().iterator();
207 aiter = hash.get(idate = diter.next()).keySet().iterator();
213 citer = hash.get(idate).get(iauthor = aiter.next()).keySet().iterator();
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFileReader.java50 public long hash; field in class:EftarFileReader.FNode
59 hash = f.readLong();
70 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { argument
71 this.hash = hash;
78 public FNode get(long hash) throws IOException { argument
82 return binarySearch(offset + childOffset, numChildren, hash);
85 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
86 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
93 if (hash > mhas
[all...]
H A DEftarFile.java64 public long hash; field in class:EftarFile.Node
71 public Node(long hash, String tag) { argument
72 this.hash = hash;
77 public Node put(long hash, String desc) { argument
78 if (children.get(hash) == null) {
79 children.put(hash, new Node(hash, desc));
81 return children.get(hash);
84 public Node get(long hash) { argument
92 public long hash; field in class:EftarFile.FNode
105 FNode(long hash, long offset, int childOffset, int num, int tagOffset) argument
113 get(long hash, RandomAccessFile f) argument
120 sbinSearch(long start, int len, long hash, RandomAccessFile f) argument
[all...]

Completed in 9 milliseconds