Searched refs:idx (Results 151 - 175 of 280) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStructureLoader.java217 int idx = qname.indexOf(':');
218 if(idx<0) prefix="";
219 else prefix=qname.substring(0,idx);
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMethodFinder.java66 int idx = instr.accept(codeVisitor, cprefs);
67 if (idx > 0) {
68 refs.add(idx);
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1553 fprintf(fp," unsigned idx%d = idx%d + num%d;\n",
1667 fprintf(fp," n%d->add_req(_in[i + idx%d]);\n", cnt, exp_pos);
1734 // int idx = node->operand_position_format(comp->_name);
1736 // idx, machOperEnum(op->_ident));
1781 fprintf(fp," unsigned idx%d = idx%d + num%d;\n",
1805 fprintf(fp," set_req(i + idx%d, _in[i + idx%d]);\n", new_num_opnds, i);
1808 fprintf(fp," idx
1968 int idx = (opc != NULL) ? _inst.operand_position_format(inst_rep_var) : -1; local
2430 int idx = (opc != NULL) ? _inst.operand_position_format(inst_rep_var) : -1; local
2778 int idx = -1; local
2884 const int idx = oper.constant_position(globals, comp); local
2918 int idx = rep_var_to_constant_index(disp, oper, globals); local
3394 int idx = 0; local
3621 path_to_constant(FILE *fp, FormDict &globals, MatchNode *mnode, uint idx) argument
3703 int idx = 0; local
[all...]
H A Dformssel.cpp398 int idx = 0; local
399 if(_matrule->find_type("CallStaticJava",idx)) return Form::JAVA_STATIC;
400 idx = 0;
401 if(_matrule->find_type("Lock",idx)) return Form::JAVA_STATIC;
402 idx = 0;
403 if(_matrule->find_type("Unlock",idx)) return Form::JAVA_STATIC;
404 idx = 0;
405 if(_matrule->find_type("CallDynamicJava",idx)) return Form::JAVA_DYNAMIC;
406 idx = 0;
407 if(_matrule->find_type("CallRuntime",idx)) retur
806 opnd_ident(int idx) argument
810 unique_opnd_ident(int idx) argument
1292 int idx = operand_position_format(rep_var); local
1397 uint idx = 0; // position of operand in match rule local
2360 int idx = constant_position( globals, comp ); local
2434 uint idx = op->constant_position( globals, rep_var); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dlive.cpp294 for (uint idx = jvms->oopoff(); idx < sfpt->req(); idx++) {
295 Node *check = sfpt->in(idx);
296 bool is_derived = ((idx - jvms->oopoff()) & 1) == 0;
H A DloopPredicate.cpp483 uint idx = _stack.index(); local
484 if (idx == n->req()) { // all inputs are processed
501 _stack.set_index(idx + 1);
502 Node* m = n->in(idx);
528 uint idx = _stack.index(); local
529 if (idx == n->req()) { // all inputs processed, clone n!
541 _stack.set_index(idx + 1);
542 Node* m = n->in(idx);
829 Node* idx = cmp->in(1); local
830 assert(!invar.is_invariant(idx), "inde
[all...]
H A Dnode.hpp383 void del_req( uint idx ); // Delete required edge & compact
907 virtual uint match_edge(uint idx) const;
990 Node* find(int idx) const; // Search the graph for the given idx.
991 Node* find_ctrl(int idx) const; // Search control ancestors for the given idx.
1009 void dump_in_regmask(int idx) { in_RegMask(idx).dump(); } argument
1469 Node* find(uint idx) const;
1527 int idx, boo
1526 locate_node_notes(GrowableArray<Node_Notes*>* arr, int idx, bool can_grow) argument
1540 set_node_notes_at(int idx, Node_Notes* value) argument
[all...]
H A Doutput.cpp480 int idx = jmp_nidx[i]; local
481 MachNode* mach = (idx == -1) ? NULL: b->_nodes[idx]->as_Mach();
492 assert(j >= 0 && j == idx && b->_nodes[j] == (Node*)mach, "sanity");
526 b->_nodes.map(idx, replacement);
611 void Compile::FillLocArray( int idx, MachSafePointNode* sfpt, Node *local, argument
615 if (array->length() != idx) {
616 assert(array->length() == idx + 1, "Unexpected array count");
863 int idx; local
877 for( idx
[all...]
H A Dparse.hpp444 PhiNode *ensure_phi( int idx, bool nocreate = false);
445 PhiNode *ensure_memory_phi(int idx, bool nocreate = false);
558 Node* method_data_addressing(ciMethodData* md, ciProfileData* data, ByteSize offset, Node* idx = NULL, uint stride = 0);
559 void increment_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize offset, Node* idx = NULL, uint stride = 0);
H A Dlcm.cpp421 int idx = -1; // Index in worklist local
512 idx = i; // Also keep index in worklist
516 assert(idx >= 0, "index should be set");
517 Node *n = worklist[(uint)idx]; // Get the winner
519 worklist.map((uint)idx, worklist.pop()); // Compress worklist
788 int idx = n->_idx; local
789 tty->print("# ready cnt:%3d ", ready_cnt.at(idx));
790 tty->print("latency:%3d ", cfg->_node_latency->at_grow(idx));
791 tty->print("%4d: %s\n", idx, n->Name());
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java465 int idx = 0;
501 pstmt.setObject(++idx, params[i]);
758 idx = i;
763 pstmt.setObject(++idx, params[i]);
932 int idx = 0;
944 pstmt.setObject(++idx, params[i]);
1009 idx = 0;
1012 pstmt.setObject(++idx, params[i]);
1362 int idx =0;
1367 pStmt.setObject(++idx, ob
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp181 BlockBegin* block_at(int idx) const { assert(_cached_blocks.at(idx) == ir()->linear_scan_order()->at(idx), "invalid cached block list"); return _cached_blocks.at(idx); }
731 BlockBegin* block_at(int idx) const { return allocator()->block_at(idx); }
921 void inc_counter(Counter idx, int value = 1) { _counters_sum[idx] += value; } argument
959 const char* timer_name(int idx);
968 elapsedTimer* timer(int idx) { retur argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DDatatypeConverterImpl.java327 int idx = start + 1; // no point in searching the first char. that's not valid.
328 while (idx < end && text.charAt(idx) != ':') {
329 idx++;
332 if (idx == end) {
338 prefix = text.subSequence(start, idx).toString();
339 localPart = text.subSequence(idx + 1, end).toString();
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DComponentColorModel.java609 private int getRGBComponent(int pixel, int idx) { argument
648 return (int) (rgb[idx] * 255.0f + 0.5f);
778 private int extractComponent(Object inData, int idx, int precision) { argument
779 // Extract component idx from inData. The precision argument
797 int mask = (1 << nBits[idx]) - 1;
808 return (int) ((((float) sdata[idx]) /
814 return (int) ((sdata[idx] / 32767.0f) * scalefactor + 0.5f);
823 return (int) (((fdata[idx] / f) * scalefactor) + 0.5f);
828 return (int) (fdata[idx] * scalefactor + 0.5f);
837 return (int) (((ddata[idx] /
892 getRGBComponent(Object inData, int idx) argument
[all...]
H A DColorConvertOp.java383 int idx = 0;
386 theProfiles[idx++] = srcProfile;
391 theProfiles[idx++] = profileList [i1];
396 theProfiles[idx] = destProfile;
847 int idx;
853 idx = 0;
864 srcLine[idx++] = (short)
873 idx = 0;
876 dstColor[i] = ((float) (dstLine[idx++] & 0xffff)) *
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp383 unsigned int idx = 0; local
428 for (i = 0, idx = 0; i < items; i++, lFormats++) {
433 m_types[idx].cfFormat = fmt;
434 m_types[idx].dwAspect = DVASPECT_CONTENT;
435 m_types[idx].lindex = -1;
439 m_types[idx].tymed = TYMED_ISTREAM;
440 idx++;
443 m_types[idx] = m_types[idx-1];
444 m_types[idx]
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseMenuWindow.java516 int idx = (selIdx == cnt - 1) ? 0 : selIdx + 1;
522 XMenuItemPeer item = mappedItems[idx];
526 idx++;
527 if (idx >= cnt) {
528 idx = 0;
551 int idx = (selIdx <= 0) ? cnt - 1 : selIdx - 1;
554 XMenuItemPeer item = mappedItems[idx];
558 idx--;
559 if (idx < 0) {
560 idx
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DJAXPValidatorComponent.java324 int idx = qname.indexOf(':');
325 if( idx>0 )
326 prefix = symbolize(qname.substring(0,idx));
511 int idx = aqn.indexOf(':');
512 if( idx<0 ) {
515 prefix = symbolize(aqn.substring(0,idx));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToUnknownStream.java1114 int idx = value.lastIndexOf(':');
1115 if (idx >= 0)
1116 value = value.substring(idx + 1);
1117 idx = value.lastIndexOf('@');
1118 if (idx >= 0)
1119 value = value.substring(idx + 1);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java921 Index<K,V> idx = null;
923 idx = new Index<K,V>(z, idx, null);
924 addIndex(idx, h, level);
937 Index<K,V> idx = null;
939 idxs[i] = idx = new Index<K,V>(z, idx, null);
965 * @param idx the topmost index node being inserted
970 private void addIndex(Index<K,V> idx, HeadIndex<K,V> h, int indexLevel) { argument
973 Comparable<? super K> key = comparable(idx
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp343 void jvmtiDeferredLocalVariableSet::set_local_at(int idx, BasicType type, jvalue val) { argument
346 if ( locals()->at(i)->index() == idx) {
352 locals()->push(new jvmtiDeferredLocalVariable(idx, type, val));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DNGCCRuntimeEx.java452 int idx = qname.indexOf(':');
453 if(idx<0) {
463 String prefix = qname.substring(0,idx);
471 return new UName( uri, qname.substring(idx+1), qname );
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java2343 int idx = nynorskList.size() - 1;
2344 nynorskList.add(idx++, Locale.getInstance("no", "NO", "NY"));
2345 nynorskList.add(idx++, Locale.getInstance("no", "NO", ""));
2346 nynorskList.add(idx++, Locale.getInstance("no", "", ""));
2378 int idx = variant.length();
2379 while (idx != -1) {
2380 variants.add(variant.substring(0, idx));
2381 idx = variant.lastIndexOf('_', --idx);
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1821 long idx; /* index into environ */ local
1828 for (idx = 0; environ[idx] != NULL; idx++) {
1829 if (match_noeq(environ[idx], name))
1832 if (environ[idx] == NULL) {
1838 environ[idx] = environ[idx+1];
1839 } while (environ[++idx] != NULL);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.cpp623 int idx; local
624 for (idx = 0; idx < super_depth; idx++) {
625 if (Klass::cast(klass->primary_super_of_depth(idx))->name() == ty_sym) {
631 for (idx = 0; idx < sec_supers->length(); idx++) {
632 if (Klass::cast((klassOop) sec_supers->obj_at(idx))->name() == ty_sym) {

Completed in 128 milliseconds

1234567891011>>