Searched refs:ii (Results 126 - 150 of 153) sorted by relevance

1234567

/openjdk10/hotspot/src/share/vm/gc/g1/
H A DheapRegionRemSet.cpp469 size_t ii = i; local
471 while (_fine_grain_regions[ii] == NULL) {
472 ii++;
473 if (ii == _max_fine_entries) ii = 0;
474 guarantee(ii != i, "We must find one.");
476 PerRegionTable** prev = &_fine_grain_regions[ii];
/openjdk10/hotspot/src/share/vm/opto/
H A Dsuperword.cpp2053 for (uint ii = 0; ii < mem_pk->size(); ii++) {
2054 Node* s = mem_pk->at(ii); // follow partner
3680 for (int ii = 0; ii<_depth; ++ii) tty->print(" ");
4184 for (int ii = 0; ii < _iteration_first.length(); ii
4246 Node* ii = phi->fast_out(i); local
[all...]
H A Difnode.cpp242 for (uint ii = 1; ii < r->req(); ii++) {
243 if (phi->in(ii) == con1) {
246 Node* proj = PhaseIdealLoop::find_predicate(r->in(ii));
H A Dmemnode.hpp845 StoreIConditionalNode( Node *c, Node *mem, Node *adr, Node *val, Node *ii ) : LoadStoreConditionalNode(c, mem, adr, val, ii) { }
H A Dloopopts.cpp2716 for(uint ii = 0; ii < loop->_body.size(); ii++ ) {
2717 Node *n = loop->_body.at(ii);
/openjdk10/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java76 Inner3<Object, String, Object[]>> ii)
74 shazam(boolean b, short s, int[] ia, Object[] oa, Inner1 i1, Inner1 i1a, InnerInner<String, Inner3<Object, String, Object[]>> ii) argument
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DSF2Soundbank.java297 for (int ii = 0; ii < zone_count; ii++) {
383 for (int ii = 0; ii < zone_count; ii++) {
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java510 int ii = i;
511 if(ii<used.length) {
512 if(used[ii]!=null && used[ii]!=p) {
518 Messages.DUPLICATE_PROPERTIES.format(p.getName()),p,used[ii]));
520 used[ii] = p;
/openjdk10/jdk/src/java.desktop/share/native/libmlib_image/
H A Dmlib_ImageConv_16ext.c253 mlib_s32 d0, d1, ii; local
302 for (i = k_off, ii = 0; (i < dy_t) && (ii < smax_hsize); i++, ii++) {
309 for (; (i < shgt + dy_t) && (ii < smax_hsize); i++, ii++) {
313 for (; (i < shgt + dy_t + dy_b) && (ii < smax_hsize); i++, ii++) {
H A Dmlib_ImageConv_8ext.c238 mlib_s32 d0, d1, ii; local
287 for (i = k_off, ii = 0; (i < dy_t) && (ii < smax_hsize); i++, ii++) {
294 for (; (i < shgt + dy_t) && (ii < smax_hsize); i++, ii++) {
298 for (; (i < shgt + dy_t + dy_b) && (ii < smax_hsize); i++, ii++) {
H A Dmlib_ImageConv_u16ext.c263 mlib_s32 d0, d1, ii; local
312 for (i = k_off, ii = 0; (i < dy_t) && (ii < smax_hsize); i++, ii++) {
319 for (; (i < shgt + dy_t) && (ii < smax_hsize); i++, ii++) {
323 for (; (i < shgt + dy_t + dy_b) && (ii < smax_hsize); i++, ii++) {
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJTreeOperator.java3248 * @param ii row index to check. If equal to -1, selected row is
3252 public JTreeByItemFinder(String lb, int ii, StringComparator comparator) { argument
3254 rowIndex = ii;
3262 * @param ii row index to check. If equal to -1, selected row is
3265 public JTreeByItemFinder(String lb, int ii) { argument
3266 this(lb, ii, Operator.getDefaultStringComparator());
3276 int ii = rowIndex;
3277 if (ii == -1) {
3280 ii = rows[0];
3285 TreePath path = ((JTree) comp).getPathForRow(ii);
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java673 IndentIcon ii = new IndentIcon(); field in class:SynthFileChooserUIImpl.DirectoryComboBoxRenderer
691 ii.icon = icon;
692 ii.depth = directoryComboBoxModel.getDepth(index);
693 label.setIcon(ii);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DImageView.java721 ImageIcon ii = new ImageIcon();
722 ii.setImage(newImage);
/openjdk10/jdk/src/java.desktop/unix/native/libawt/java2d/loops/
H A Dvis_ByteIndexed.c185 mlib_s32 ii = tmpsxloc >> shift; \
186 GET_RGB_##SRC_T(ii) \
/openjdk10/jdk/test/com/sun/jdi/
H A DShellScaffold.sh701 for ii in $allLines ; do
702 cmd "stop at $pkgDot$classname:$ii"
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java998 IndentIcon ii = new IndentIcon(); field in class:WindowsFileChooserUI.DirectoryComboBoxRenderer
1012 ii.icon = icon;
1013 ii.depth = directoryComboBoxModel.getDepth(index);
1014 setIcon(ii);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java934 IndentIcon ii = new IndentIcon(); field in class:MetalFileChooserUI.DirectoryComboBoxRenderer
948 ii.icon = icon;
949 ii.depth = directoryComboBoxModel.getDepth(index);
950 setIcon(ii);
/openjdk10/jdk/test/java/net/httpclient/http2/server/
H A DHttp2TestServerConnection.java595 final InputStream ii = op.is;
605 ii.transferTo(oo);
610 closeIgnore(ii);
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DSunFontManager.java3542 for (int ii=0; ii<componentFileNames.length; ii++) {
3543 if (missingFontFiles.contains(componentFileNames[ii])) {
3544 componentFileNames[ii] = getDefaultFontFile();
3545 componentFaceNames[ii] = getDefaultFontFaceName();
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java174 for (int ii = 0; ii < lastParam; ii++) {
175 sb.append(args.get(ii));
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java584 int ii = 0;
587 rtArray[ii++] = (ReferenceTypeImpl)rti;
/openjdk10/jdk/test/java/lang/invoke/
H A DLoopCombinatorTest.java164 MethodHandle ii = MethodHandles.dropArguments(i0, 0, int.class, int.class);
167 List<MethodHandle> inits = Arrays.asList(ii, id, i3);
188 {new MethodHandle[][]{{ii}, {id}, {i3}},
/openjdk10/hotspot/src/cpu/s390/vm/
H A DstubGenerator_s390.cpp1086 for (int ii = 32; ii > 1; ii--) {
1087 __ z_mvc(0, ii * stride-1, dst_reg, 0, src_reg); // ii*8 byte copy
/openjdk10/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp5145 for (int ii = 0; ii < 16; ++ii) {
5146 memcpy(dst + 32 * ii, src + 16 * ii, 16);
5147 memcpy(dst + 32 * ii + 16, src + 16 * ii, 16);

Completed in 406 milliseconds

1234567