Searched refs:_table (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DFixedEntryStringIntMap.java41 final int tableIndex = indexFor(hash, _table.length);
42 _table[tableIndex] = _fixedEntry = new Entry(fixedEntry, hash, _index++, null);
44 resize(2 * _table.length);
57 for (int i = 0; i < _table.length; i++) {
58 _table[i] = null;
63 final int tableIndex = indexFor(_fixedEntry._hash, _table.length);
64 _table[tableIndex] = _fixedEntry;
99 final int tableIndex = indexFor(_fixedEntry._hash, _table.length);
100 final Entry firstEntry = _table[tableIndex];
102 _table[tableInde
[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...]
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 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...]
/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.cpp36 _table = REALLOC_RESOURCE_ARRAY(HandlerTableEntry, _table, _size, new_size);
40 _table[_length++] = entry;
47 HandlerTableEntry* t = _table + i;
62 _table = NEW_RESOURCE_ARRAY(HandlerTableEntry, initial_size);
69 _table = (HandlerTableEntry*)nm->handler_table_begin();
103 memmove(nm->handler_table_begin(), _table, size_in_bytes());
134 HandlerTableEntry* t = _table + i;
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()) {
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
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp129 _table[btos][i],
130 _table[ctos][i],
131 _table[stos][i],
132 _table[atos][i],
133 _table[itos][i],
134 _table[ltos][i],
135 _table[ftos][i],
136 _table[dtos][i],
137 _table[vtos][i]
145 _table[bto
[all...]
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.cpp45 _table( NEW_ARENA_ARRAY( _a , Node* , _max ) ), // (Node**)_a->Amalloc(_max * sizeof(Node*)) ),
52 memset(_table,0,sizeof(Node*)*_max);
59 _table( NEW_ARENA_ARRAY( _a , Node* , _max ) ),
67 memset(_table,0,sizeof(Node*)*_max);
72 debug_only(_table = (Node**)badAddress); // interact correctly w/ operator=
79 debug_only(_table = (Node**)badAddress); // interact correctly w/ operator=
97 Node *k = _table[key]; // Get hashed value
119 k = _table[key]; // Get hashed value
143 Node *k = _table[key]; // Get hashed value
146 _table[ke
[all...]
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 295 milliseconds