Searched refs:nesting (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.cpp43 _nesting = Thread::current()->resource_area()->nesting();
52 _nesting != Thread::current()->resource_area()->nesting()) {
H A Darray.cpp44 _nesting = Thread::current()->resource_area()->nesting();
60 _nesting == Thread::current()->resource_area()->nesting(),
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp92 if (entry->nesting() != nesting() && new_entries.at(new_index) != entry->next()) {
93 // changing entries with a lower nesting than the current nesting of the table
96 entry = new ValueMapEntry(entry->hash(), entry->value(), entry->nesting(), NULL);
121 TRACE_VALUE_NUMBERING(tty->print_cr("Value Numbering: %s %c%d equal to %c%d (size %d, entries %d, nesting-diff %d)", x->name(), x->type()->tchar(), x->id(), f->type()->tchar(), f->id(), size(), entry_count(), nesting() - entry->nesting()));
123 if (entry->nesting() != nesting()
[all...]
H A Dc1_ValueMap.hpp40 ValueMapEntry(intx hash, Value value, int nesting, ValueMapEntry* next) argument
43 , _nesting(nesting)
50 int nesting() { return _nesting; } function in class:ValueMapEntry
62 // ValueMapEntries names _entries. Each ValueMapEntry has a nesting
63 // which indicates what ValueMap nesting it belongs to. Higher
64 // nesting values are always before lower values in the linked list.
68 // ValueMapEntries with the same nesting level. Adding or removing
69 // entries at the current nesting level requires updating
81 int nesting() { return _nesting; } function in class:ValueMap
111 ValueMap(ValueMap* old); // value map with increased nesting
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DHeaderTokenizer.java254 int nesting;
255 for (start = ++currentPos, nesting = 1;
256 nesting > 0 && currentPos < maxPos;
265 nesting++;
267 nesting--;
269 if (nesting != 0)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DHeaderTokenizer.java249 int nesting;
250 for (start = ++currentPos, nesting = 1;
251 nesting > 0 && currentPos < maxPos;
260 nesting++;
262 nesting--;
264 if (nesting != 0)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DLexer.java130 int nesting = 0;
144 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
178 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
214 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
264 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
280 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
284 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
288 if (0 == nesting)
303 nesting--;
307 nesting
391 mapPatternElemPos(int nesting, boolean isStart, boolean isAttrName) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.hpp84 debug_only(int nesting() const { return _nesting; });
H A Dallocation.cpp702 _nesting = thread->resource_area()->nesting();
708 if (_nesting != Thread::current()->resource_area()->nesting()) {

Completed in 55 milliseconds