Searched refs:depth (Results 226 - 250 of 320) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DQName.java271 int depth = namespaces.size();
273 for (int i = depth - 1; i >= 0; i--)
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp347 int depth; member in class:UseCountComputer
353 depth++;
354 if (depth > max_recurse_depth) {
367 depth--;
371 depth = 0;
376 assert(depth == 0, "should have counted back down");
390 assert(depth == 0, "should have counted back down");
395 depth = 0;
668 TRACE_LINEAR_SCAN(3, "----- computing loop-depth and weight");
679 TRACE_LINEAR_SCAN(4, tty->print_cr("Computing loop depth fo
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_DrawingSurface.c277 px->depth = attrs.depth;
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp44 void trace_type_profile(Compile* C, ciMethod *method, int depth, int bci, ciMethod *prof_method, ciKlass *prof_klass, int site_count, int receiver_count) { argument
52 CompileTask::print_inlining(prof_method, depth, bci);
56 CompileTask::print_inline_indent(depth, out);
251 trace_type_profile(C, jvms->method(), jvms->depth() - 1, jvms->bci(), next_receiver_method, profile.receiver(1), site_count, profile.receiver_count(1));
257 trace_type_profile(C, jvms->method(), jvms->depth() - 1, jvms->bci(), receiver_method, profile.receiver(0), site_count, receiver_count);
851 if (CountCompiledCalls && depth() == 1) {
H A DgraphKit.cpp118 int jvms_depth = jvms()->depth();
119 if (jvms_depth != parse->depth()) return false;
854 int inputs = 0, depth = 0; local
857 if (compute_stack_effects(inputs, depth)) {
968 assert(out_jvms->depth() == in_jvms->depth(), "depth must match");
987 bool GraphKit::compute_stack_effects(int& inputs, int& depth) { argument
997 depth = Bytecodes::depth(cod
1250 int depth = 0; local
[all...]
H A Doutput.cpp853 int max_depth = youngest_jvms->depth();
861 for (int depth = 1; depth <= max_depth; depth++) {
862 JVMState* jvms = youngest_jvms->of_depth(depth);
956 assert(!jvms->should_reexecute() || depth == max_depth, "reexecute allowed only for the youngest");
1034 int max_depth = youngest_jvms->depth();
1037 for (int depth = 1; depth <= max_depth; depth
[all...]
H A DphaseX.hpp317 void dump_nodes_and_types(const Node *root, uint depth, bool only_ctrl = true);
318 void dump_nodes_and_types_recur( const Node *n, uint depth, bool only_ctrl, VectorSet &visited);
H A Dsuperword.cpp117 // 3) The maximum depth in the node graph from the beginning of the block
706 int d1 = depth(s1);
707 int d2 = depth(s2);
722 int shal_depth = depth(shallow);
723 assert(shal_depth <= depth(deep), "must be");
730 if (shal_depth < depth(pred) && !independent_path(shallow, pred, dp+1)) {
1655 // Do a depth first walk over out edges
1741 // Compute max depth for expressions from beginning of block
1751 int d_orig = depth(n);
1756 d_in = MAX2(d_in, depth(pre
2212 blank(uint depth) argument
[all...]
H A Druntime.cpp1281 int max_depth = youngest_jvms->depth();
1286 for (int depth = max_depth; depth >= 1; depth--) {
1287 JVMState* jvms = youngest_jvms->of_depth(depth);
H A Dgcm.cpp166 tty->print("B%d idom=B%d depth=%2d ",inb->_pre_order,
495 // schedule_early block in that it could be at an even shallower depth in the
1116 // loop nesting depth that is lowest in the dominator tree.
1294 // loop nesting depth that is lowest in the dominator tree.
1408 // Create the loop tree and calculate loop depth.
1600 // Store the loop depth in each CFGLoop object.
1602 void CFGLoop::compute_loop_depth(int depth) { argument
1603 _depth = depth;
1606 ch->compute_loop_depth(depth + 1);
1928 int depth local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c338 ximage->bits_per_pixel = ximage->depth;
339 ximage->bytes_per_line = ximage->depth * ximage->width / 8;
438 int depth = XDefaultDepthOfScreen(splash->screen); local
447 splash->screenFormat.depthBytes = (depth + 7) / 8;
448 // TrueColor depth probably can't be less
459 int depth = XDefaultDepthOfScreen(splash->screen); local
496 splash->screenFormat.depthBytes = (depth + 7) / 8; // or always 8?
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java184 /** recursion depth */
185 private int depth; field in class:ObjectOutputStream
349 if (depth == 0) {
416 if (depth == 0) {
494 if (depth != 0) {
1106 depth++;
1185 depth--;
1417 (depth == 1 ? "root " : "") + "object (class \"" +
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp562 // return the vframe on the specified thread and depth, NULL if no such frame
564 JvmtiEnvBase::vframeFor(JavaThread* java_thread, jint depth) { argument
571 while ((vf != NULL) && (d < depth)) {
705 int depth = 0; local
708 if (depth++ < MaxJavaStackTraceDepth) { // check for stack too deep
710 err = get_locked_objects_in_frame(calling_thread, java_thread, jvf, owned_monitors_list, depth-1);
834 // start_depth is deeper than the stack depth
838 // we are referencing the starting depth based on the oldest
858 // the -start_depth is greater than the stack depth
879 // no frames and there is a starting depth
896 get_frame_location(JavaThread *java_thread, jint depth, jmethodID* method_ptr, jlocation* location_ptr) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java374 public static int depth (int code) { check(code); return _depth [code]; } method in class:Bytecodes
821 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap) { argument
822 def(code, name, format, wide_format, result_type, depth, can_trap, code);
825 private static void def(int code, String name, String format, String wide_format, int result_type, int depth, boolean can_trap, int java_code) { argument
833 _depth [code] = (byte) depth;
/openjdk7/jdk/src/share/back/
H A DeventFilter.c83 jint depth; member in struct:StepFilter
920 jthread thread, jint size, jint depth)
935 error = stepControl_beginStep(env, filter->thread, size, depth, node);
941 filter->depth = depth;
919 eventFilter_setStepFilter(HandlerNode *node, jint index, jthread thread, jint size, jint depth) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java145 /** How much the depth should be offset to properly calculate
1357 int depth = path.getPathCount() - 1;
1358 if((depth == 0 || (depth == 1 && !isRootVisible())) &&
1408 int depth = path.getPathCount() - 1;
1409 if (depth == 0 && !getShowsRootHandles() && !isRootVisible()) {
1412 int lineX = getRowX(-1, depth + 1);
1446 if(depth == 0 && !isRootVisible()) {
1554 int depth = path.getPathCount() - 1;
1556 if((depth
1663 getRowX(int row, int depth) argument
2782 getNodeDimensions(Object value, int row, int depth, boolean expanded, Rectangle size) argument
2837 getRowX(int row, int depth) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DDate.java477 int depth = 1;
481 if (c == '(') depth++;
483 if (--depth <= 0)
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.cpp303 * adjusted to be the new display depth (even if it was created in a different
304 * depth to begin with)
324 // Could have this native depth for either 24- or 32-bit
375 jobject peer, jint depth,
397 wsdo->depth = depth;
402 // the pixel depth. In the 8-bit case, there are no
405 switch (depth) {
433 !SurfaceDepthsCompatible(depth, wsdo->device->GetBitDepth()))
437 "GDIWindowSurfaceData_initOps: Surface depth mismatc
374 Java_sun_java2d_windows_GDIWindowSurfaceData_initOps(JNIEnv *env, jobject wsd, jobject peer, jint depth, jint redMask, jint greenMask, jint blueMask, jint screen) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DJDIScaffold.java448 private StepEvent doStep(ThreadReference thread, int gran, int depth) { argument
450 requestManager.createStepRequest(thread, gran, depth);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java3581 int depth = -1; // index into attrBases, elemBases field in class:XMLKit.Builder
3630 ++depth;
3631 if (depth == attrBases.length) {
3632 int oldlen = depth;
3633 int newlen = depth * 2;
3641 attrBases[depth] = nparts;
3649 elemBases[depth] = nparts;
3653 assert (depth >= 0);
3655 int ebase = elemBases[depth];
3657 int abase = attrBases[depth];
3944 int depth = 0; field in class:XMLKit.Printer
3965 indent(int depth) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp163 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap) { argument
164 def(code, name, format, wide_format, result_type, depth, can_trap, code);
168 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code) { argument
174 _depth [code] = depth;
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp300 // Initialize the depth-first-number
550 for (int depth = 0; depth < num_frames; depth++) {
551 StackFrameInfo* frame = stack_frame_at(depth);
/openjdk7/jdk/test/java/lang/invoke/
H A DRicochetTest.java429 int depth; field in class:RicochetTest.RFCB
444 depth++;
459 boolean isLeaf = (depth >= MAX_DEPTH);
465 depth--;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h234 uch depth[2*L_CODES+1]; member in struct:internal_state
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java696 ii.depth = directoryComboBoxModel.getDepth(index);
707 int depth = 0; field in class:SynthFileChooserUIImpl.IndentIcon
712 icon.paintIcon(c, g, x+depth*space, y);
720 return ((icon != null) ? icon.getIconWidth() : 0) + depth*space;

Completed in 189 milliseconds

1234567891011>>