Searched refs:sign (Results 101 - 114 of 114) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CertImpl.java125 // when we sign and decode we set this to true
477 public void sign(PrivateKey key, String algorithm) method in class:X509CertImpl
480 sign(key, algorithm, null);
500 public void sign(PrivateKey key, String algorithm, String provider) method in class:X509CertImpl
530 signature = sigEngine.sign();
/openjdk7/jdk/test/sun/security/mscapi/
H A DSignUsingNONEwithRSA.java177 byte [] sigBytes = sig1.sign();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDatatypeConverterImpl.java100 int sign = 1;
111 sign = -1;
119 return r * sign;
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp1561 Node* sign = new (C) RShiftINode(offset, shift); local
1562 register_new_node(sign, pre_ctrl);
1563 offset = new (C) AndINode(offset, sign);
1614 Node* sign = new (C) RShiftINode(plus_one, shift); local
1615 register_new_node(sign, pre_ctrl);
1616 plus_one = new (C) AndINode(plus_one, sign);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DXMLGregorianCalendarImpl.java404 // start at index 1 to skip potential negative sign for year.
412 // negative sign in timezone is not mistaken as
2657 char sign = zoneoffset < 0 ? '-' : '+';
2658 if (sign == '-') {
2671 customTimezoneId.append(sign);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLStream.java1079 * Dmitri Ilyin: Makes sure if the String is HH encoded sign.
1086 boolean sign = true;
1093 sign = false;
1095 return sign;
1272 // Dmitri Ilyin: to check if '%' number number is invalid. It must be checked if %xx is a sign, that would be encoded
1273 // The encoded signes are in Hex form. So %xx my be in form %3C that is "<" sign. I will try to change here a little.
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java1241 cert.sign(privateKey, sigAlgName);
1293 crl.sign(privateKey, sigAlgName);
1333 // Construct a Signature object, so that we can sign the request
2505 // other solution: We first sign the cert, then retrieve the
2508 newCert.sign(privKey, sigAlgName);
2525 newCert.sign(privKey, sigAlgName);
3534 int sign = 0;
3536 case '+': sign = 1; break;
3537 case '-': sign = -1; break;
3558 c.add(unit, sign * numbe
[all...]
H A DJarSigner.java124 String jarfile; // jar files to sign or verify
125 String alias; // alias to sign jar with
146 boolean signManifest = true; // "sign" the whole manifest
1239 error(rb.getString("unable.to.sign.jar.") +
1337 error(rb.getString("unable.to.sign.jar.")+ioe, ioe);
1419 // error(rb.getString("unable.to.sign.jar.")+ioe, ioe);
2137 // sign the whole manifest
2313 byte[] signature = sig.sign();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java201 // look at the sign of dx and dy only
202 dx = sign(dx);
203 dy = sign(dy);
231 private static int sign(int num) { method in class:BasicTableUI.Actions
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java380 private static int sign(int n) { method in class:Util
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java398 // handle the sign
475 // optional sign
507 if (negexp) // apply sign
631 * of an optional sign, {@code '+'} (<tt> '&#92;u002B'</tt>) or
639 * by the sign, the integer and the fraction is referred to as the
810 // Translate the double into sign, exponent and significand, according
813 int sign = ((valBits >> 63)==0 ? 1 : -1);
818 // At this point, val == sign * significand * 2**exponent.
838 long s = sign * significand;
1417 int qsign; // quotient sign
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java2066 int sign = useMin ? -1 : 1;
2083 sizes[springDelta.index] = sign * springDelta.delta;
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java187 INITIAL_ARG_VAL = ONE_MILLION << 1; // <<1 makes space for sign bit;
191 long sign = -(val & 1); // alternate signs
199 return val ^ sign;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp236 assert((op1 & 0x02) == 0, "sign-extension bit should not be set");
238 emit_byte(op1 | 0x02); // set sign bit
252 assert((op1 & 0x02) == 0, "sign-extension bit should not be set");
261 assert((op1 & 0x02) == 0, "sign-extension bit should not be set");
263 emit_byte(op1 | 0x02); // set sign bit
277 assert((op1 & 0x02) == 0, "sign-extension bit should not be set");
2807 // doesn't support sign-extension of
5431 // doesn't support sign-extension of
6725 // Used in sign-masking with aligned address.
6736 // Used in sign
9925 char sign = (_ex < 0) ? '-' : '+'; local
9988 bool sign() const { return ((_value >> 7) & 1) != 0; } function in class:Flag_Register
[all...]

Completed in 142 milliseconds

12345