Searched refs:idx (Results 76 - 100 of 280) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp1370 for (jint idx = 1; idx < cnt; idx++) {
1375 printf("const #%03d, tag: %02d ", idx, tag);
1413 idx++; // Long takes two cpool slots
1420 idx++; // Double takes two cpool slots
1495 jint constantPoolOopDesc::cpool_entry_size(jint idx) { argument
1496 switch(tag_at(idx).value()) {
1502 return 3 + symbol_at(idx)->utf8_length();
1545 for (u2 idx
[all...]
H A DobjArrayKlassKlass.cpp129 int idx = 0; local
130 new_str[idx++] = '[';
132 new_str[idx++] = 'L';
134 memcpy(&new_str[idx], name_str, len * sizeof(char));
135 idx += len;
137 new_str[idx++] = ';';
139 new_str[idx++] = '\0';
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPackedColorModel.java263 private void DecomposeMask(int mask, int idx, String componentName) { argument
265 int count = nBits[idx];
268 maskArray[idx] = mask;
280 Integer.toHexString(maskArray[idx])+
285 maskOffsets[idx] = off;
289 scaleFactors[idx] = 256.0f;
291 scaleFactors[idx] = 255.0f / ((1 << count) - 1);
H A DDirectColorModel.java321 private int getsRGBComponentFromsRGB(int pixel, int idx) { argument
322 int c = ((pixel & maskArray[idx]) >>> maskOffsets[idx]);
326 (int) (((c * scaleFactors[idx]) * 255.0f /
328 } else if (scaleFactors[idx] != 1.0f) {
329 c = (int) ((c * scaleFactors[idx]) + 0.5f);
335 private int getsRGBComponentFromLinearRGB(int pixel, int idx) { argument
336 int c = ((pixel & maskArray[idx]) >>> maskOffsets[idx]);
341 (int) (((c * scaleFactors[idx]) * facto
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesTileGenerator.java165 int idx = offset;
173 tile[idx++] = 0x00;
190 System.out.println("idx = "+idx+", pos = "+pos);
206 tile[idx++] = val;
212 System.out.println("idx = "+idx+", pos = "+pos);
224 tile[idx++] = 0x00;
228 for (int i = idx - (x1-x0); i < idx;
[all...]
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c433 long idx; /* index into environ */ local
440 for (idx = 0; environ[idx] != NULL; idx++) {
441 if (match_noeq(environ[idx], name))
444 if (environ[idx] == NULL) {
450 environ[idx] = environ[idx+1];
451 } while (environ[++idx] != NULL);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWStringTable.java192 int idx = offset + expandLen; // initialise to exclusive end address of buffer area
196 while ((idx > offset) && (code != (short)0xFFFF)) {
198 buf[--idx] = strChr[code];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DXMLSchemaInternalizationLogic.java100 int idx = qname.indexOf(':');
101 if(idx==-1) qname = localName;
102 else qname = qname.substring(0,idx+1)+localName;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLeafPropertyXsiLoader.java70 int idx = atts.getIndex(WellKnownNamespace.XML_SCHEMA_INSTANCE, "type");
72 if (idx >= 0) {
73 String value = atts.getValue(idx);
H A DXsiTypeLoader.java74 int idx = atts.getIndex(WellKnownNamespace.XML_SCHEMA_INSTANCE,"type");
76 if(idx>=0) {
79 String value = atts.getValue(idx);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DTXW.java56 int idx = localName.lastIndexOf('.');
57 if(idx>=0)
58 localName = localName.substring(idx+1);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2StAXBaseWriter.java197 int idx = qName.indexOf(':');
198 if (idx >= 0) {
199 prefix = qName.substring(0, idx);
200 local = qName.substring(idx + 1);
/openjdk7/hotspot/src/share/vm/opto/
H A Drootnode.hpp66 virtual uint match_edge(uint idx) const { return 0; }
H A Dpostaloc.cpp158 int PhaseChaitin::use_prior_register( Node *n, uint idx, Node *def, Block *current_block, Node_List &value, Node_List &regnd ) { argument
160 if( def == n->in(idx) ) return 0;
169 const RegMask &use_mask = n->in_RegMask(idx);
181 Node *old = n->in(idx);
190 int idx = old->is_Copy(); local
191 assert( idx, "chain of copies being removed" );
192 Node *old2 = old->in(idx); // Chain of copies
200 n->set_req(idx,def);
211 int idx = c->is_Copy(); local
213 while (idx !
233 int idx; local
566 int idx; // Skip occasional useless copy local
[all...]
H A Dnode.cpp137 assert(_idx < node->_outcnt + (uint)at_end_ok, "idx in range");
290 static void init_node_notes(Compile* C, int idx, Node_Notes* nn) { argument
291 C->set_node_notes_at(idx, nn);
297 int idx = C->next_unique(); local
309 if (nn != NULL) init_node_notes(C, idx, nn);
319 return idx;
765 void Node::del_req( uint idx ) {
766 assert( idx < _cnt, "oob");
770 Node *n = in(idx);
772 _in[idx]
778 ins_req( uint idx, Node *n ) argument
1430 find_recur(Compile* C, Node* &result, Node *n, int idx, bool only_ctrl, VectorSet* old_space, VectorSet* new_space ) argument
1469 find_node(Node* n, int idx) argument
1478 find_recur(Compile::current(), result, (Node*) this, idx, false, &old_space, &new_space ); local
1488 find_recur(Compile::current(), result, (Node*) this, idx, true, &old_space, &new_space ); local
1748 uint i, j, idx; local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DValueListBeanInfoImpl.java67 int idx = 0;
71 int p = idx;
75 CharSequence token = text.subSequence(idx,p);
90 idx = p;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DListTransducedAccessorImpl.java115 int idx = 0;
119 int p = idx;
123 CharSequence token = s.subSequence(idx,p);
133 idx = p;
/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.hpp145 implicit_null_entry *adr( uint idx ) const { return &_data[2*idx]; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIContent.java114 int idx = type.lastIndexOf('.');
115 if(idx<0) return parent.parent.codeModel.ref(type);
H A DBIUserConversion.java129 int idx = type.lastIndexOf('.');
130 if(idx<0) {
193 int idx = parseMethod.lastIndexOf('.');
194 if(idx<0) {
211 int idx = printMethod.lastIndexOf('.');
212 if(idx<0) {
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DClient.java105 int idx = java.lang.Math.abs(rand.nextInt()) % totalConn;
106 sockArr[idx].getOutputStream().write(buff,0,BYTESPEROP);
/openjdk7/hotspot/src/os/solaris/vm/
H A DdtraceJSDT_solaris.cpp507 for (size_t idx = 0; idx < limit; /*empty*/) {
508 char* str = ((char*)dof) + tab + idx;
509 tty->print_cr("// [0x%x + 0x%x] '%s'", tab, idx, str);
510 idx += strlen(str) + 1;
531 size_t idx = sec->dofs_offset; local
532 size_t limit = idx + sec->dofs_size;
533 for (size_t idx = sec->dofs_offset; idx < limit; idx
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java370 int idx = getCPIndex();
371 if (idx >= 0) s += (cpMap == null) ? ""+idx : "="+cpMap[idx].stringValue();
560 int idx = (bc - _self_linker_op);
561 boolean isSuper = (idx >= _self_linker_super_flag);
562 if (isSuper) idx -= _self_linker_super_flag;
563 boolean isAload = (idx >= _self_linker_aload_flag);
564 if (isAload) idx -= _self_linker_aload_flag;
565 int origBC = _first_linker_op + idx;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlWriter.java364 private void writeValue(int idx, RowSet caller) throws java.io.IOException { argument
366 int type = caller.getMetaData().getColumnType(idx);
371 boolean b = caller.getBoolean(idx);
379 short s = caller.getShort(idx);
386 int i = caller.getInt(idx);
393 long l = caller.getLong(idx);
401 float f = caller.getFloat(idx);
408 double d = caller.getDouble(idx);
416 writeBigDecimal(caller.getBigDecimal(idx));
423 java.sql.Date date = caller.getDate(idx);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java374 int idx = 0;
414 idx = cpg.addInterfaceMethodref(DOM_INTF,
417 il.append(new INVOKEINTERFACE(idx, 5));
426 idx = cpg.addInterfaceMethodref(DOM_INTF,
429 il.append(new INVOKEINTERFACE(idx, 4));
433 idx = cpg.addMethodref(NTH_ITERATOR_CLASS,
468 il.append(new INVOKESPECIAL(idx));
471 idx = cpg.addMethodref(CURRENT_NODE_LIST_ITERATOR,
518 il.append(new INVOKESPECIAL(idx));

Completed in 70 milliseconds

1234567891011>>