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

/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.hpp87 HandlerTableEntry* _table; // the table member in class:VALUE_OBJ_CLASS_SPEC
H A DvtableStubs.hpp109 public: // N must be public (some compilers need this for _table)
116 static VtableStub* _table[N]; // table of existing stubs member in class:VtableStubs
H A DvtableStubs.cpp94 // hash value). Each list is anchored in a little hash _table, indexed
97 VtableStub* VtableStubs::_table[VtableStubs::N]; member in class:VtableStubs
108 _table[i] = NULL;
145 VtableStub* s = _table[hash];
156 s->set_next(_table[h]);
157 _table[h] = s;
167 for (s = _table[hash]; s != NULL && s != stub; s = s->next()) {}
184 for (VtableStub* s = _table[i]; s != NULL; s = s->next()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArrayIntMap.java70 private Entry[] _table; field in class:CharArrayIntMap
75 _table = new Entry[_capacity];
87 for (int i = 0; i < _table.length; i++) {
88 _table[i] = null;
146 final int tableIndex = indexFor(hash, _table.length);
147 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
177 final int tableIndex = indexFor(hash, _table.length);
178 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
188 Entry e = _table[bucketIndex];
189 _table[bucketInde
[all...]
H A DStringIntMap.java50 protected Entry[] _table; field in class:StringIntMap
60 _table = new Entry[_capacity];
72 for (int i = 0; i < _table.length; i++) {
73 _table[i] = null;
123 final int tableIndex = indexFor(hash, _table.length);
124 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
136 final int tableIndex = indexFor(hash, _table.length);
159 final int tableIndex = indexFor(hash, _table.length);
160 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
172 Entry e = _table[bucketInde
[all...]
H A DLocalNameQualifiedNamesMap.java65 private Entry[] _table; field in class:LocalNameQualifiedNamesMap
70 _table = new Entry[_capacity];
82 for (int i = 0; i < _table.length; i++) {
83 _table[i] = null;
139 final int tableIndex = indexFor(hash, _table.length);
140 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
152 final int tableIndex = indexFor(hash, _table.length);
153 for (Entry e = _table[tableIndex]; e != null; e = e._next) {
170 final int tableIndex = indexFor(hash, _table.length);
171 for (Entry e = _table[tableInde
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.hpp67 address _table[number_of_states][length]; // dispatch tables, indexed by tosca and bytecode member in class:VALUE_OBJ_CLASS_SPEC
73 address* table_for(TosState state) { return _table[state]; }
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.hpp59 Node **_table; // Hash table of Node pointers member in class:NodeHash
81 void grow(); // Grow _table to next power of 2 and rehash
91 return _table[table_index];
340 NodeHash _table; // Hash table for value-numbering member in class:NodeHash::PhaseValues
350 bool hash_delete(Node *n) { return _table.hash_delete(n); }
351 void hash_insert(Node *n) { _table.hash_insert(n); }
352 Node *hash_find_insert(Node *n){ return _table.hash_find_insert(n); }
353 Node *hash_find(const Node *n) { return _table.hash_find(n); }
357 _table.remove_useless_nodes(useful);
391 _table
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp855 ExceptionTableElement* _table; member in class:ExceptionTable
861 _table = m->exception_table_start();
864 _table = NULL;
875 return _table[idx].start_pc;
880 _table[idx].start_pc = value;
885 return _table[idx].end_pc;
890 _table[idx].end_pc = value;
895 return _table[idx].handler_pc;
900 _table[idx].handler_pc = value;
905 return _table[id
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp132 JvmtiTagHashmapEntry** _table; // the table of entries. member in class:JvmtiTagHashmap
153 _table = (JvmtiTagHashmapEntry**)os::malloc(s, mtInternal);
154 if (_table == NULL) {
158 _table[i] = NULL;
206 JvmtiTagHashmapEntry* entry = _table[i];
225 os::free((void*)_table);
226 _table = new_table;
240 _table[pos] = entry->next();
286 if (_table != NULL) {
287 os::free((void*)_table);
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2283 AdapterHandlerTable* _table; member in class:AdapterHandlerTableIterator
2288 while (_index < _table->table_size()) {
2289 AdapterHandlerEntry* a = _table->bucket(_index);
2299 AdapterHandlerTableIterator(AdapterHandlerTable* table): _table(table), _index(0), _current(NULL) {

Completed in 84 milliseconds