Searched refs:tst (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/test/java/net/Socket/asyncClose/
H A DAsyncClose.java51 AsyncCloseTest tst = tests[i];
54 System.out.println("Test: " + tst.description());
56 if (tst.go()) {
59 System.out.println("Failed: " + tst.failureReason());
/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A DTimestampCheck.java153 DerOutputStream tst = new DerOutputStream();
155 tst.putInteger(1);
156 tst.putOID(new ObjectIdentifier("1.2.3.4")); // policy
159 tst.putDerValue(messageImprint);
169 tst.write(data);
172 tst.putInteger(1);
175 tst.putGeneralizedTime(cal.getTime());
178 tst.putInteger(1234);
182 tst.putInteger(nonce);
186 tstInfo.write(DerValue.tag_Sequence, tst);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLangCall.java82 final int tst = cpg.addMethodref(BASIS_LIBRARY_CLASS,
91 il.append(new INVOKESTATIC(tst));
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DTimestampedSigner.java347 TimestampToken tst = new TimestampToken(tsToken.getContentInfo().getData());
348 if (!tst.getHashAlgorithm().equals(
352 if (!Arrays.equals(tst.getHashedMessage(), digest)) {
356 BigInteger replyNonce = tst.getNonce();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Druntime_sparc.cpp133 __ tst(O7);
H A DtemplateTable_sparc.cpp400 __ tst(Rcon_klass);
1162 __ tst(O1);
1169 __ tst(Otos_i);
1222 __ tst(Otos_l);
1239 __ tst(Otos_l);
1759 __ tst(Otos_i);
2113 __ tst(result);
2318 __ delayed()->tst(Lscratch);
2333 __ delayed()->tst(Lscratch);
2349 __ delayed()->tst(Lscratc
[all...]
H A DinterpreterRT_sparc.cpp114 __ tst(Rtmp1);
H A DcppInterpreter_sparc.cpp477 __ tst(Otos_i); // check if local 0 == NULL and go the slow path
715 __ tst(G3_scratch);
780 __ tst(O1);
799 __ tst(O0);
965 __ tst(Gtemp);
1193 __ tst(O1);
1747 __ tst(Lscratch); // exception pending?
1803 __ tst(L1_scratch);
1916 __ tst(L1_scratch);
2033 __ tst(L1_scratc
[all...]
H A Dassembler_sparc.cpp985 tst(L0);
1034 tst(L0);
1259 tst(L0);
2135 tst(s1);
2146 tst(s1);
2156 tst(s1);
2791 tst(tmp);
3248 tst(count_temp);
4251 _masm->tst(temp);
H A Dc1_Runtime1_sparc.cpp673 __ tst(L0); // Condition codes are preserved over the restore.
1063 __ tst(L0); // Condition codes are preserved over the restore.
H A Dinterp_masm_sparc.cpp725 if (should_set_CC == set_CC) tst(Rdst);
911 tst(array);
1487 delayed()->tst(scratch);
1666 // delayed()->tst(scratch);
H A DsharedRuntime_sparc.cpp1356 __ tst( L4 );
1383 __ tst( rOop );
3399 __ tst(O4array_size);
H A DstubGenerator_sparc.cpp3002 __ delayed()->tst(src_pos);
3010 __ delayed()->tst(dst_pos);
3014 __ delayed()->tst(length);
H A DtemplateInterpreter_sparc.cpp382 __ tst(O0);
H A Dc1_LIRAssembler_sparc.cpp2127 __ tst(src);
2133 __ tst(dst);
H A Dassembler_sparc.hpp1806 // Condition (the one you would use to get the same effect after "tst" on
1996 inline void tst( Register s ) { orcc( G0, s, G0 ); } function in class:MacroAssembler
/openjdk7/hotspot/src/share/vm/opto/
H A DparseHelper.cpp226 Node *tst = Bool( CmpP( init_thread, cur_thread), BoolTest::eq); local
227 IfNode* iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
237 tst = Bool( CmpI( init_state, being_init), BoolTest::eq);
238 iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
327 Node *tst = _gvn.transform( new (C) BoolNode( chk, btest) ); local
329 { BuildCutout unless(this, tst, PROB_ALWAYS);
H A Dparse2.cpp119 Node* tst; local
123 // only works with non-negative lengths. Instead, hack "tst" to be zero so
125 tst = _gvn.intcon(0);
133 tst = _gvn.transform( new (C) BoolNode(chk, btest) );
136 { BuildCutout unless(this, tst, PROB_MAX);
170 Node *tst = _gvn.transform( new (C) BoolNode( cmp, mask)); local
171 IfNode *iff = create_and_map_if( control(), tst, ((mask == BoolTest::eq) ? PROB_STATIC_INFREQUENT : PROB_FAIR), COUNT_UNKNOWN );
448 Node* tst = _gvn.transform( new (C) BoolNode(cmp, BoolTest::ge) ); local
449 IfNode* iff = create_and_map_if( control(), tst, PROB_FAIR, COUNT_UNKNOWN);
1001 Node *tst local
1094 Node* tst = _gvn.transform(tst0); local
[all...]
H A DgraphKit.hpp816 IfNode* create_and_map_if(Node* ctrl, Node* tst, float prob, float cnt) { argument
817 IfNode* iff = new (C) IfNode(ctrl, tst, prob, cnt);// New IfNode's
820 if (!tst->is_Con()) record_for_igvn(iff); // Range-check and Null-check removal is later
824 IfNode* create_and_xform_if(Node* ctrl, Node* tst, float prob, float cnt) { argument
825 IfNode* iff = new (C) IfNode(ctrl, tst, prob, cnt);// New IfNode's
828 if (!tst->is_Con()) record_for_igvn(iff); // Range-check and Null-check removal is later
H A DgraphKit.cpp500 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) ); local
503 { BuildCutout unless(this, tst, PROB_MAX);
1241 Node *tst = _gvn.transform( btst ); local
1246 if (tst != btst && type == T_OBJECT) {
1253 cfg->in(0)->in(1) == tst ) {
1306 IfNode* iff = create_and_map_if(control(), tst, ok_prob, COUNT_UNKNOWN);
1313 BuildCutout unless(this, tst, ok_prob);
H A Dparse1.cpp151 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) ); local
152 IfNode* iff = create_and_map_if(control(), tst, PROB_MAX, COUNT_UNKNOWN);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s226 tst sz ! size > 0

Completed in 391 milliseconds