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

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCacheTable.java40 Entry rnext; // this chains the collision list of table "rmap"
55 private Entry [] rmap; field in class:CacheTable
73 rmap = noReverseMap ? null : new Entry[size];
129 newEntry.rnext = rmap[rindex];
130 rmap[rindex] = newEntry;
153 for (Entry e = rmap[index]; e != null; e = e.rnext) {
161 rmap = null;

Completed in 63 milliseconds