Searched defs:prev (Results 101 - 125 of 131) sorted by relevance

123456

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.cpp48 // prev pointer for the allocated 'all' list
218 PerRegionTable* prev() const { return _prev; } function in class:PerRegionTable
219 void set_prev(PerRegionTable* prev) { _prev = prev; } argument
301 assert(_first_all_fine_prts->prev() == NULL, "invariant");
313 assert(prt->prev() == NULL, "just checking");
320 assert(_first_all_fine_prts == NULL || _first_all_fine_prts->prev() == NULL,
325 if (prt->prev() != NULL) {
327 prt->prev()->set_next(prt->next());
330 _last_all_fine_prts = prt->prev();
559 PerRegionTable** prev = &_fine_grain_regions[ii]; local
628 PerRegionTable** prev = &_fine_grain_regions[i]; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp1051 uint prev = n->_prev; local
1053 if( prev ) lrgs(prev)._next = next;
1055 lrgs(next)._prev = prev;
1118 uint prev = lo_lrg->_prev; local
1120 if( prev ) lrgs(prev)._next = next;
1122 lrgs(next)._prev = prev;
H A Descape.cpp2512 Node *prev = NULL; local
2514 while (prev != result) {
2515 prev = result;
H A Dloopopts.cpp1418 Node *prev = use->is_CFG() ? use : get_ctrl(use); local
1419 assert( !loop->is_member( get_loop( prev ) ), "" );
1420 Node *cfg = prev->_idx >= new_counter
1421 ? prev->in(2)
1422 : idom(prev);
1424 cfg = prev->in(idx); // NOT in block of Phi itself
1431 prev = cfg;
1441 if( prev->is_Region() ) {
1443 phi = prev; // Just use existing control
1445 phi = PhiNode::make( prev, ol
[all...]
H A DloopTransform.cpp305 Node *prev = loop->_head->in(LoopNode::LoopBackControl);//loop->tail(); local
306 Node *test = prev->in(0);
309 int p_op = prev->Opcode();
321 dominated_by( old_new[prev->_idx], n );
325 prev = test;
H A Dsuperword.cpp592 Node* prev = NULL; local
612 assert(out == prev || prev == NULL, "no branches off of store slice");
618 prev = n;
1146 void SuperWord::remove_and_insert(MemNode *current, MemNode *prev, MemNode *lip, argument
1156 if (use == prev) { // connect prev to my_mem
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp2145 interpreterState prev = caller->get_interpreterState(); local
2146 to_fill->_prev_link = prev;
2147 // Make the prev callee look proper
2148 prev->_result._to_call._callee = method;
2149 if (*prev->_bcp == Bytecodes::_invokeinterface) {
2150 prev->_result._to_call._bcp_advance = 5;
2152 prev->_result._to_call._bcp_advance = 3;
2249 interpreterState prev = caller->get_interpreterState(); local
2251 locals = prev->stack() + method->size_of_parameters();
H A Dc1_LIRAssembler_sparc.cpp3332 LIR_Op* prev = inst->at(i - 1); local
3333 if (prev && LIR_Assembler::is_single_instruction(prev) && prev->info() == NULL) {
3336 inst->at_put(i, new LIR_OpDelay(prev, op->info()));
3360 LIR_Op* prev = inst->at(i - 1); local
3361 if (LIRFillDelaySlots && prev && prev->code() == lir_move && prev->info() == NULL &&
3363 !prev
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp491 char *prev = shared - 1; local
492 char c = *prev;
496 return dfa_shared_preds::valid_loc(pred, prev);
505 if( prev != pred && *(prev-1) == '|' ) return true;
507 if( prev != pred && *(prev-1) == '&' ) return true;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp181 Instruction* cur_end = if_->prev(block);
370 Instruction* prev = end->prev(block); local
372 assert(prev->as_BlockEnd() == NULL, "must not be a BlockEnd");
373 prev->set_next(next);
413 // When if_ and ifop are not in the same block, prev
416 Value prev = ifop; local
417 while (prev != NULL && prev->next() != if_) {
418 prev
[all...]
/openjdk7/jdk/src/share/back/
H A DthreadControl.c84 struct ThreadNode *prev; member in struct:ThreadNode
265 ThreadNode *prev; local
268 prev = node->prev;
270 if ( prev != NULL ) {
271 prev->next = next;
274 next->prev = prev;
276 if ( prev == NULL ) {
280 node->prev
444 removeEventMode(DeferredEventModeList *list, DeferredEventMode *eventMode, DeferredEventMode *prev) argument
511 DeferredEventMode *prev; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.cpp669 ProfilerNode* prev = table[index]; local
670 for(ProfilerNode* node = prev; node; node = node->next()) {
675 prev = node;
677 prev->set_next(new (this) interpretedNode(method, where));
686 ProfilerNode* prev = table[index]; local
687 for(ProfilerNode* node = prev; node; node = node->next()) {
692 prev = node;
694 prev->set_next(new (this) compiledNode(method, where));
703 ProfilerNode* prev = table[index]; local
704 for(ProfilerNode* node = prev; nod
720 ProfilerNode* prev = table[index]; local
737 ProfilerNode* prev = table[index]; local
755 ProfilerNode* prev = table[index]; local
778 ProfilerNode* prev = table[index]; local
[all...]
H A Dframe.cpp1436 FrameValue prev; local
1437 prev.owner = -1;
1441 if (prev.owner == -1) {
1442 prev = fv;
1445 if (prev.location == fv.location) {
1446 if (fv.owner != prev.owner) {
1448 tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", prev.location, *prev.location, prev.description);
1453 prev
[all...]
H A DobjectMonitor.cpp2336 ObjectWaiter* prev = node->_prev; local
2337 assert(prev->_next == node, "invariant check");
2339 next->_prev = prev;
2340 prev->_next = next;
H A Dthread.cpp2008 MonitorChunk* prev = monitor_chunks(); local
2009 while (prev->next() != chunk) prev = prev->next();
2010 prev->set_next(chunk->next());
4063 JavaThread* prev = NULL;
4066 prev = current;
4070 if (prev) {
4071 prev->set_next(current->next());
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp751 jlong prev = 0; variable
757 prev = pool->usage_threshold()->set_high_threshold((size_t) threshold);
764 prev = pool->usage_threshold()->set_low_threshold((size_t) threshold);
788 if (prev != threshold) {
792 return prev;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java780 * this method to customize prev link.
788 * this method to customize prev link.
930 * @param prev File name for the prev link.
932 public void navLinkPrevious(String prev) { argument
934 if (prev != null) {
935 printHyperLink(prev, "", tag, true) ;
944 * @param prev File name for the prev link
947 public Content getNavLinkPrevious(String prev) { argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicReordering.cpp622 le_int32 IndicReordering::findSyllable(const IndicClassTable *classTable, const LEUnicode *chars, le_int32 prev, le_int32 charCount) argument
624 le_int32 cursor = prev;
675 le_int32 i, prev = 0; local
678 while (prev < charCount) {
679 le_int32 syllable = findSyllable(classTable, chars, prev, charCount);
689 if (markStart != prev && classTable->isVowelModifier(chars[markStart - 1])) {
696 while (output.noteMatra(classTable, chars[matra], matra, tagArray1, !lastInWord) && matra != prev) {
702 switch (classTable->getCharClass(chars[prev]) & CF_CLASS_MASK) {
709 for (i = prev; i < syllable; i += 1) {
717 output.writeChar(C_DOTTED_CIRCLE, prev, tagArray
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1742 struct _Point* prev; member in struct:_Point
1755 struct _Edge* prev; member in struct:_Edge
1887 Edge *prevp = pnt->prev; \
1895 nextp->prev = prevp; \
1936 ne->prev = NULL; \
1938 head->prev = ne; \
1989 /* Creating double linked list (prev, next links) describing path order and
1995 curpt->prev = NULL;
2003 nextpt->prev = curpt;
2022 if (pt->prev
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerImpl.java1676 private static boolean composeHangul(char prev, char c, argument
1686 prev=(char)(prev-JAMO_L_BASE);
1687 if(prev<JAMO_L_COUNT) {
1688 c=(char)(HANGUL_BASE+(prev*JAMO_V_COUNT+
1729 } else if(isHangulWithoutJamoT(prev)) {
1732 c=(char)(prev+(c-JAMO_T_BASE));
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java1959 Node prev = null;
1966 if (prev == null) {
1967 prev = node;
1984 if (prev instanceof Branch) {
1985 ((Branch)prev).add(node);
1987 if (prev == end) {
1988 prev = null;
1991 // when put the "prev" into the branch as the first atom.
1994 prev = new Branch(prev, nod
3033 closure(Node prev) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp382 ExceptionCache* prev = NULL; local
387 prev = curr;
393 if (prev == NULL) {
396 prev->set_next(next);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp1511 MoveOperation* prev() const { return _prev; } function in class:ComputeMoveOrder::MoveOperation
1523 MoveOperation* p = prev();
1624 while (start->prev() != NULL && start->prev() != s) {
1625 start = start->prev();
1627 if (start->prev() == s) {
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp225 HKL prev = ::ActivateKeyboardLayout(hkl, 0); local
228 if (!prev) {
244 prev = ::ActivateKeyboardLayout(hkl, 0);
248 return (prev != 0);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c3018 mp_digit prev = 0; local
3022 *pa++ = (x << bshift) | prev;
3023 prev = x >> (DIGIT_BIT - bshift);

Completed in 204 milliseconds

123456