Searched refs:req (Results 151 - 175 of 181) sorted by relevance

12345678

/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp765 uint cnt = n->req();
1580 for( i = 2; i < derived->req(); i++ )
1584 if( i == derived->req() ) { // No need for a base Phi here
1592 for( i = 1; i < derived->req(); i++ ) {
1610 for( j = 1; j < base->req(); j++ )
1614 if( j == base->req() ) { // All inputs match?
1725 for( uint k = 1; k < n->req(); k++ ) {
1778 for( k = 0; k < n->req(); k++) {
2133 uint cnt = n->req();
H A Descape.cpp446 if (n->req() > TypeFunc::Parms &&
584 for (uint i = CMoveNode::IfFalse; i < n->req(); i++) {
615 for (uint i = 1; i < n->req(); i++) {
641 if (n->req() > TypeFunc::Parms &&
708 for (uint i = 2; i < n->req(); i++) {
2361 while (idx < phi->req()) {
2385 assert( phi->req() == result->req(), "must have same number of inputs.");
2390 for (uint i = 1; i < phi->req(); i++) {
2454 if (use->req() > MemBarNod
[all...]
H A Dgcm.cpp140 for( int i = n->req() - 1; i >= 0; --i ) { // For all inputs
230 if (n->req() == 1) { // This guy is a constant with NO inputs?
320 uint pmax = use->req(); // Number of Phi inputs
404 if (mem_inputs_length + 1 < (int) load->req()) {
637 for (uint j = PhiNode::Input, jmax = store->req(); j < jmax; j++) {
665 assert(PhiNode::Input + num_mem_inputs < store->req(),
H A Dstringopts.cpp351 assert(init->req() <= InitializeNode::RawStores, "no pending inits");
672 for (i = 1; i < use->req(); i++) {
677 if (i >= use->req()) {
831 if (ptr->req() == 3 &&
1274 uint size = sc->begin()->req();
1288 for (uint i1 = jvms->debug_start(); i1 < sc->begin()->req(); i1++) {
H A Dmachnode.cpp436 if( req() > 2 )
442 if (req() > idx) {
H A Dvectornode.cpp239 *end = n->req();
243 *end = n->req(); // default is all operands
H A DgenerateOptoStub.cpp76 for( ; i<map()->req(); i++ )
H A Dblock.cpp873 for( uint i=1; i<p->req(); i++ )
913 for (uint k = 0; k < n->req(); k++) {
928 for (uint l = 1; l < def->req(); l++) {
H A DcallGenerator.cpp330 uint size = call->req();
681 uint limit = slow_map->req();
930 uint limit = slow_map->req();
H A Dmemnode.hpp1161 _cnt = mm->req();
1171 else if ((uint)_idx < _mm->req() && !_mm->in(_idx)->is_top())
1206 _cnt2 = mm2->req();
H A Dcfgnode.hpp144 : TypeNode(t,r->req()),
H A Dcoalesce.cpp216 for( k=0; k<n->req(); k++ ) // For all required inputs
389 uint ncnt = n->req();
H A DloopTransform.cpp517 if (old->in(0) == loop->_head && old->req() == 3 && old->is_Phi()) {
535 if (use->in(0) == new_head && use->req() == 3 && use->is_Phi()) {
770 if (bol->req() != 2) continue; // dead constant test
848 for( uint i = 1; i < n->req(); i++ ) {
2049 if( bol && bol->req() > 1 && bol->in(1) &&
H A Dblock.hpp121 uint num_preds() const { return head()->req(); }
H A Dconnode.hpp560 Node* original_loop_limit() { return req()==3 ? in(2) : NULL; }
H A DparseHelper.cpp300 if (mem && i < mem->req() && mem->in(i) && mem->in(i) != mem->empty_memory()) {
H A Dnode.hpp260 inline int Init(int req, Compile* C);
299 uint req() const { return _cnt; } function in class:Node
494 // for( i = 0; i < X.req(); i++ ) ... X[i] ...
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java527 // If it is DII request then get the arguments from the DII req
886 protected void setDIIRequest(org.omg.CORBA.Request req) { argument
887 request = req;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBSingleton.java343 public void send_multiple_requests_oneway(Request[] req) { argument
347 public void send_multiple_requests_deferred(Request[] req) { argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputContext.java345 InputMethodRequests req = source.getInputMethodRequests();
346 if (req != null && inputContext.useBelowTheSpotInput()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DSeiGenerator.java354 Request req = operation.getRequest();
357 boolean header = isHeaderParam(param, req) ||
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java2161 SizeRequirements req
2168 req.minimum = req.preferred;
2171 return req;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java363 BreakpointRequest req = (BreakpointRequest)it.next();
364 if (classToBytes.containsKey(req.location().declaringType())) {
365 toDelete.add(req);
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java1220 PKCS10 req = new PKCS10(rawReq);
1222 info.set(X509CertInfo.KEY, new CertificateX509Key(req.getSubjectPublicKeyInfo()));
1224 dname==null?req.getSubjectName():new X500Name(dname)));
1226 Iterator<PKCS10Attribute> attrs = req.getAttributes().getAttributes().iterator();
1237 req.getSubjectPublicKeyInfo(),
2198 PKCS10 req = new PKCS10(new BASE64Decoder().decodeBuffer(new String(sb)));
2200 PublicKey pkey = req.getSubjectPublicKeyInfo();
2202 req.getSubjectName(), pkey.getFormat(), pkey.getAlgorithm());
2203 for (PKCS10Attribute attr: req.getAttributes().getAttributes()) {
2216 out.println(req); // Jus
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java2104 for (HeavyweightFocusRequest req : heavyweightRequests) {
2105 System.err.println(">>> Req: " + req);

Completed in 246 milliseconds

12345678