Searched refs:SIGN (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DBase64.java49 static private final int SIGN = -128; field in class:Base64
146 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
148 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0);
149 byte val3 = ((b3 & SIGN)==0)?(byte)(b3>>6):(byte)((b3)>>6^0xfc);
171 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
182 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
183 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DKeySelector.java69 public static final Purpose SIGN = new Purpose("sign"); field in class:KeySelector.Purpose
93 * @param purpose the key's purpose ({@link Purpose#SIGN},
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DBase64.java315 static private final int SIGN = -128; field in class:Base64
415 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
417 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0);
418 byte val3 = ((b3 & SIGN)==0)?(byte)(b3>>6):(byte)((b3)>>6^0xfc);
440 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
442 byte val2 = ((b2 & SIGN)==0)?(byte)(b2>>4):(byte)((b2)>>4^0xf0);
443 byte val3 = ((b3 & SIGN)==0)?(byte)(b3>>6):(byte)((b3)>>6^0xfc);
456 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
467 byte val1 = ((b1 & SIGN)==0)?(byte)(b1>>2):(byte)((b1)>>2^0xc0);
468 byte val2 = ((b2 & SIGN)
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c147 SIGN(mp) = ZPOS;
180 SIGN(mp) = SIGN(from);
243 SIGN(to) = SIGN(from);
322 SIGN(mp) = ZPOS;
369 SIGN(mp) = NEG;
429 if(SIGN(&tmp) == ZPOS) {
442 SIGN(&tmp) = ZPOS;
473 if(SIGN(
[all...]
H A Dmp_gf2m.c328 SIGN(c) = ZPOS;
472 SIGN(r) = ZPOS;
H A Dmpi.h367 #define SIGN(MP) MP_SIGN(MP) macro
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java144 protected final static int SIGN = 2; field in class:Signature
512 state = SIGN;
530 state = SIGN;
552 if (state == SIGN) {
596 if (state != SIGN) {
680 if (state == VERIFY || state == SIGN) {
714 if (state == SIGN || state == VERIFY) {
736 if ((state != SIGN) && (state != VERIFY)) {
771 case SIGN:
/openjdk7/jdk/src/share/classes/java/text/
H A DChoiceFormat.java523 static final long SIGN = 0x8000000000000000L;
534 significand |= (SIGN | EXPONENT);
549 static final long SIGN = 0x8000000000000000L; field in class:ChoiceFormat
587 long magnitude = bits & ~SIGN;
601 long signbit = bits & SIGN;
H A DDecimalFormat.java567 getNegativePrefixFieldPositions(), Field.SIGN);
570 getPositivePrefixFieldPositions(), Field.SIGN);
580 getNegativeSuffixFieldPositions(), Field.SIGN);
583 getPositiveSuffixFieldPositions(), Field.SIGN);
901 getNegativePrefixFieldPositions(), Field.SIGN);
904 getPositivePrefixFieldPositions(), Field.SIGN);
1158 getNegativeSuffixFieldPositions(), Field.SIGN);
1162 getPositiveSuffixFieldPositions(), Field.SIGN);
1174 * identifies a <code>SIGN</code> attribute, it is mapped to
1176 * to map the <code>SIGN</cod
[all...]
H A DNumberFormat.java1096 public static final Field SIGN = new Field("sign"); field in class:NumberFormat.Field
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DNumberFormatter.java291 if (attrs.get(NumberFormat.Field.SIGN) != null) {
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignature.java383 (ki, KeySelector.Purpose.SIGN,

Completed in 53 milliseconds