Searched defs:end (Results 326 - 350 of 386) sorted by relevance

<<111213141516

/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp127 int end = obj->length(); local
128 int remainder = end - start;
129 assert(start <= end, "just checking");
132 end = start + ParGCArrayScanChunk;
133 arrayOop(old)->set_length(end);
141 arrayOop(old)->set_length(end);
145 // should make sure end is even (aligned to HeapWord in case of compressed oops)
148 obj->oop_iterate_range(&_to_space_closure, start, end);
151 obj->oop_iterate_range(&_old_gen_closure, start, end);
494 _boundary = _g->reserved().end();
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp111 * automatically. Some actually end up with worse performance if you
2646 BasicObjectLock* end = (BasicObjectLock*) istate->stack_base(); local
2653 while (end < base) {
2654 oop lockee = end->obj();
2656 BasicLock* lock = end->lock();
2658 end->set_obj(NULL);
2663 end->set_obj(lockee);
2667 CALL_VM_NOCHECK(InterpreterRuntime::monitorexit(THREAD, end));
2683 end++;
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp168 MoveSymbols(char* top, char* end) : argument
169 _start(top), _end(end), _top(top), _count(0) { }
721 char* end; member in class:WriteClosure
724 if ((char*)top + sizeof(oop) > end) {
733 end = md_end;
777 if ((char*)top + size > end) {
1123 // Advance the pointer to the end of symbol store.
1453 char *end = strrchr(class_list_path, *os::file_separator()); local
1454 if (end != NULL) *end
[all...]
H A DgenCollectedHeap.cpp355 // at the end of a stop-world full GC.
366 // at the end of a concurrent GC cycle. Note the conditional update
403 juint* end = (juint*) (addr + size); local
404 for (juint* slot = start; slot < end; slot += 1) {
961 return p < _gens[_n_gens - 2]->reserved().end() && p != NULL;
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp118 virtual void do_object(int begin, int end) { set(CellTypeState::ref); }; argument
119 virtual void do_array (int begin, int end) { set(CellTypeState::ref); }; argument
172 virtual void do_object(int begin, int end) { set(CellTypeState::make_slot_ref(_idx)); } argument
173 virtual void do_array (int begin, int end) { set(CellTypeState::make_slot_ref(_idx)); } argument
1008 assert(bb->_end_bci + bc_len == _method->code_size(), "wrong end bci");
1129 assert(itr.next_bci() == lim_bci, "must point to end");
1143 // Hit end of BB, but the instr. was a fall-through instruction,
H A DklassVtable.cpp90 // compute the number of mirandas methods that must be added to the end
160 assert(end_of_vtable <= end_of_obj, "vtable extends beyond end");
733 if ((HeapWord*)adr < mr.end()) blk->do_oop(adr);
755 intptr_t* end = klass->end_of_itable(); local
759 _size_method_table = (end - method_entry) / itableMethodEntry::size();
1161 intptr_t* end = klass->end_of_itable(); local
1163 assert((oop*)(end) == (oop*)(ime + nof_methods), "wrong offset calculation (2)");
1227 "end)", _klass->internal_name()));
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp246 assert(_outp == (node->_out + node->_outcnt) - 1, "pointer must point to end of nodes");
705 // Add a new required input at the end
717 if( in(i) == NULL ) // Find the NULL at end of prec edge list
726 // Add a new required input at the end
744 if( _in[i] == NULL ) // Find the NULL at end of prec edge list
777 // Insert a new required input at the end
888 // duplicates removed and NULLs packed down at the end.
892 // Check for NULL at end
905 // duplicates removed and NULLs packed down at the end.
908 // Find end o
1698 int end = 0; local
[all...]
H A Dstringopts.cpp66 StringConcat(PhaseStringOpts* stringopts, CallStaticJavaNode* end): argument
67 _end(end),
84 sc->end()->extract_projections(&endprojs, false);
192 CallStaticJavaNode* end() { return _end; } function in class:StringConcat
615 if (other->end() == csj) {
1067 void PhaseStringOpts::int_getChars(GraphKit& kit, Node* arg, Node* char_array, Node* start, Node* end) { argument
1102 Node* charPos = end;
1281 map->init_req(i1, sc->end()->in(i1));
1451 Node* end = __ AddI(start, string_sizes->in(argi)); local
1453 int_getChars(kit, arg, char_array, start, end);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java1071 private static boolean isDigitString(String x, int beg, int end) { argument
1072 if (beg == end) return false; // null string
1073 for (int i = beg; i < end; i++) {
1199 // compress better. It also moves classes to the end of the
1210 // Remove stubs from resources; maybe we'll add them on at the end,
1227 // Put class files at the end, keeping their fixed order.
1312 // Add to the end of ths list:
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c235 jlong start, end; local
289 end = CounterGet();
291 (long)(jint)Counter2Micros(end-start));
410 jlong start, end; local
457 end = CounterGet();
459 (long)(jint)Counter2Micros(end-start));
481 * possibly an end of release cycle expedient. However, it has
628 * Wait for all non-daemon threads to end, then destroy the VM.
1403 jlong start, end; local
1416 end
1870 jlong start, end; local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp146 // be handled by the back-end or will be rejected if not.
1579 BlockEnd* end = x->end(); local
1592 tty->print("[%d, %d] ", x->bci(), (end == NULL ? -1 : end->printable_bci()));
H A Dc1_Optimizer.cpp99 If* if_ = block->end()->as_If();
126 // check if both branches end with a goto
154 // check if phi function is present at end of successor stack and that
229 // update block end
333 BlockEnd* end = block->end(); local
334 if (end->as_Goto() != NULL) {
335 assert(end->number_of_sux() == 1, "end must have exactly one successor");
344 BlockBegin* sux = end
1166 BlockEnd *end = b->end(); local
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c189 jlong start, end; local
249 end = CounterGet();
253 (long)(jint)Counter2Micros(end-start));
304 * Wait for all non-daemon threads to end, then destroy the VM.
352 jlong start, end; local
386 end = CounterGet();
388 (long)(jint)Counter2Micros(end-start));
410 * possibly an end of release cycle expedient. However, it has
1195 jlong start, end; local
1209 end
1584 jlong start, end; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp489 // ok, we have four consecutive marker bytes; find end of cushion
553 u_char* end = (u_char*)memblock + size + space_after; local
555 if (end[j] != badResourceValue) {
556 report_heap_error(memblock, end+j, "after");
580 u_char* end = ptr + space_before + size; local
581 for (u_char* pq = ptr+MallocCushion; pq < end; pq++) *pq = (u_char)uninitBlockPad;
582 for (u_char* q = end; q < end + MallocCushion; q++) *q = (u_char)badResourceValue;
664 u_char* end = ptr + space_before + size; local
665 for (u_char* q = end;
743 print_hex_dump(outputStream* st, address start, address end, int unitsize) argument
[all...]
H A Dthread.cpp353 assert(last_handle_mark() == NULL, "check we have reached the end");
479 // 0x00000010 - routine return false at end
663 } // end retry loop
753 } // end retry loop
932 address end = os::current_stack_pointer(); local
933 if (stack_base() >= adr && adr >= end) return true;
2752 // Traverse instance variables at the end since the GC may be moving things
3618 // back-end can launch with -Xdebug -Xrunjdwp.
3679 create_vm_timer.end();
3888 // the program falls off the end o
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DheapDumper.cpp301 * terminated by an end record. The additional tags allowed by format
309 * HPROF_HEAP_DUMP_END denotes the end of a heap dump
1489 // seek to dump end so we can continue
1522 // for segmented dump we write the end record
1990 char* end = base_path; local
1991 end += (strlen(base_path) - fs_len);
1992 if (strcmp(end, os::file_separator()) != 0) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1651 Value *end = builder()->CreateValueOfStructEntry( local
1654 "end");
1661 builder()->CreateICmpULE(new_top, end),
1680 Value *end = builder()->CreateLoad( local
1684 "end");
1694 builder()->CreateICmpULE(new_top, end),
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java288 end();
343 abstract void end() throws SAXException; method in class:SchemaParser.State
502 void end() throws SAXException { method in class:SchemaParser.EmptyContentState
548 void end() throws SAXException { method in class:SchemaParser.PatternContainerState
785 void end() throws SAXException { method in class:SchemaParser.ValueState
787 super.end();
844 void end() throws SAXException { method in class:SchemaParser.DataState
899 void end() throws SAXException { method in class:SchemaParser.ParamState
947 void end() throws SAXException { method in class:SchemaParser.AttributeState
950 super.end();
1005 void end() throws SAXException { method in class:SchemaParser.GrammarSectionState
1024 void end() throws SAXException { method in class:SchemaParser.DivState
1055 void end() throws SAXException { method in class:SchemaParser.IncludeState
1074 void end() throws SAXException { method in class:SchemaParser.MergeGrammarState
1094 void end() throws SAXException { method in class:SchemaParser.GrammarState
1296 void end() throws SAXException { method in class:SchemaParser.NameClassChildState
1308 void end() throws SAXException { method in class:SchemaParser.NameClassBaseState
1465 void end() throws SAXException { method in class:SchemaParser.NameClassChoiceState
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_DirectSound.cpp666 int end; local
701 end = start + count;
705 if (start <= (int) playCursor && end > (int) playCursor) {
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java285 inf.end();
289 def.end();
903 private END end; field in class:ZipFileSystem
956 // Searches for end of central directory (END) header. The contents of
988 END end = new END();
989 end.endsub = ENDSUB(buf);
990 end.centot = ENDTOT(buf);
991 end.cenlen = ENDSIZ(buf);
992 end.cenoff = ENDOFF(buf);
993 end
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java123 // However, they are not removed before the end of the main() method.
2546 * at the end of the chain.
2757 * @returns the string entered by the user, without the \n at the end
2775 * @returns the string entered by the user, without the \n at the end
2912 private boolean signedBy(X509Certificate end, X509Certificate ca) { argument
2913 if (!ca.getSubjectDN().equals(end.getIssuerDN())) {
2917 end.verify(ca.getPublicKey());
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java385 public void loadOptions( boolean grid, boolean force16, int start, int end, argument
390 int range[] = { start, end };
435 /// Limit is the end of range/text where no more draw will be done
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java147 int end = target.getSelectionEnd();
149 if (end > start) {
150 select(start, end);
154 // Since the end position of the selected text can be greater then the length of the text,
156 int caretPosition = Math.min(end, text.length());
546 public void replaceText(String txt, int start, int end) { argument
547 replaceRange(txt, start, end);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java832 int end = (next != 0? next - 1: tabCount - 1);
833 for (int j = start; j <= end; j++) {
924 int end;
932 end = tabRect.x + tabRect.width;
940 end = tabRect.y + tabRect.height;
953 yp[pcnt++] = end;
960 if (yp[pcnt] >= end) {
961 yp[pcnt] = end;
2686 int end = (next != 0? next - 1 : tabCount - 1);
2688 for (j = start; j <= end;
2814 padTabRun(int tabPlacement, int start, int end, int max) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java231 * <td headers="matches">The end of a line</td></tr>
239 * <td headers="matches">The end of the previous match</td></tr>
241 * <td headers="matches">The end of the input but for the final
244 * <td headers="matches">The end of the input</td></tr>
431 * the end of a line of the input character sequence. The following are
457 * line terminators and only match at the beginning and the end, respectively,
460 * except at the end of input. When in {@link #MULTILINE} mode <tt>$</tt>
461 * matches just before a line terminator or the end of the input sequence.
741 * within a group; in the latter case, flags are restored at the end of the
810 * with <tt>#</tt> are ignored until the end o
1931 findSupplementary(int start, int end) argument
1958 expr(Node end) argument
2007 sequence(Node end) argument
[all...]

Completed in 178 milliseconds

<<111213141516