HomeSort by relevance Sort by last modified time
    Searched refs:SIGN (Results 1 - 25 of 26) sorted by null

1 2

  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature1.java 46 public static int SIGN = Signature.SIGN;
  /external/dropbear/libtommath/mtest/
mpi.c 287 SIGN(mp) = MP_ZPOS;
320 SIGN(mp) = SIGN(from);
376 /* Copy the precision and sign from the original */
378 SIGN(to) = SIGN(from);
470 SIGN(mp) = MP_ZPOS;
517 SIGN(mp) = MP_NEG;
533 Compute the sum b = a + d, for a single digit d. Respects the sign of
546 if(SIGN(b) == MP_ZPOS)
    [all...]
mpi.h 56 #define SIGN(MP) ((MP)->sign)
75 mp_sign sign; /* sign of this quantity */ member in struct:__anon3484
116 /* Sign manipulations */
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 86 * Used to test the sign of a byte.
88 static final int SIGN = -128;
281 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0);
283 ((b2 & SIGN) == 0) ? (byte) (b2 >> 4) : (byte) ((b2) >> 4 ^ 0xf0);
285 ((b3 & SIGN) == 0) ? (byte) (b3 >> 6) : (byte) ((b3) >> 6 ^ 0xfc);
327 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0);
340 ((b1 & SIGN) == 0) ? (byte) (b1 >> 2) : (byte) ((b1) >> 2 ^ 0xc0);
342 ((b2 & SIGN) == 0) ? (byte) (b2 >> 4) : (byte) ((b2) >> 4 ^ 0xf0);
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 34 private static final int SIGN = 1;
64 * plus the minus sign (only at the beginning) and/or decimal point
67 public DigitsKeyListener(boolean sign, boolean decimal) {
68 mSign = sign;
71 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
84 * plus the minus sign (only at the beginning) and/or decimal point
87 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
88 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0)
139 int sign = -1; local
    [all...]
  /libcore/luni/src/main/java/java/security/
Signature.java 60 protected static final int SIGN = 2;
70 * possible states are {@link #UNINITIALIZED}, {@link #SIGN} or
289 state = SIGN;
307 state = SIGN;
322 public final byte[] sign() throws SignatureException { method in class:Signature
323 if (state != SIGN) {
351 public final int sign(byte[] outbuf, int offset, int len) method in class:Signature
357 if (state != SIGN) {
515 case SIGN:
516 return "SIGN";
    [all...]
  /external/quake/quake/src/QW/scitech/include/
debug.h 231 #ifndef SIGN
232 # define SIGN(a) ((a) > 0 ? 1 : -1)
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
DEBUG.H 231 #ifndef SIGN
232 # define SIGN(a) ((a) > 0 ? 1 : -1)
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 205 assertEquals("state", MySignature1.SIGN, s.getState());
245 assertEquals("state", MySignature1.SIGN, s.getState());
260 * Class under test for byte[] sign()
265 method = "sign",
271 s.sign();
279 s.sign();
285 s.sign();
286 assertEquals("state", MySignature1.SIGN, s.getState());
287 assertTrue("sign() failed", s.runEngineSign);
291 * Class under test for sign(byte[], offset, len
    [all...]
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 760 * This constant stands for the number sign.
762 public static final Field SIGN = new Field("sign");
780 * This constant stands for the exponent sign symbol.
782 public static final Field EXPONENT_SIGN = new Field("exponent sign");
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
91 t_FormatWithField(18, format, number, text, NumberFormat.Field.SIGN, 0,
117 t_FormatWithField(27, format, number, text, NumberFormat.Field.SIGN, 0,
223 v.add(new FieldContainer(4, 5, NumberFormat.Field.SIGN));
  /external/chromium/third_party/icu/source/common/
putil.c 20 * 05/13/97 aliu Restored sign of timezone
139 #define SIGN 0x80000000U
330 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L);
359 return((highBits & SIGN) && uprv_isInfinite(number));
451 if(x == 0.0 && y == 0.0 && (lowBits & SIGN))
472 if(x == 0.0 && y == 0.0 && (lowBits & SIGN))
501 if( (d == 0.0 && (lowBits & SIGN)) || d < 0)
    [all...]
  /external/icu4c/common/
putil.c 20 * 05/13/97 aliu Restored sign of timezone
156 #define SIGN 0x80000000U
350 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L);
379 return((highBits & SIGN) && uprv_isInfinite(number));
471 if(x == 0.0 && y == 0.0 && (lowBits & SIGN))
492 if(x == 0.0 && y == 0.0 && (lowBits & SIGN))
521 if( (d == 0.0 && (lowBits & SIGN)) || d < 0)
    [all...]
  /external/dropbear/
buffer.c 275 if (SIGN(mp) == MP_NEG) {
  /external/stlport/src/
num_put_float.cpp 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf)
217 { return ecvtbuf(x, n, pt, sign, buf); }
218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf)
219 { return fcvtbuf(x, n, pt, sign, buf); }
224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf)
225 { return ecvtbuf(x, n, pt, sign, buf); }
226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf)
227 { return fcvtbuf(x, n, pt, sign, buf); }
231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0;
861 int decpt, sign; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSignature.java 155 if (state == SIGN) {
  /ndk/sources/android/stlport/src/
num_put_float.cpp 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf)
217 { return ecvtbuf(x, n, pt, sign, buf); }
218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf)
219 { return fcvtbuf(x, n, pt, sign, buf); }
224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf)
225 { return ecvtbuf(x, n, pt, sign, buf); }
226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf)
227 { return fcvtbuf(x, n, pt, sign, buf); }
231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize)
232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0;
861 int decpt, sign; local
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/dropbear/libtommath/
tommath.h 180 int used, alloc, sign; member in struct:__anon3487
190 #define SIGN(m) ((m)->sign)
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
NativeDecimalFormat.java 609 NumberFormat.Field.SIGN,
  /external/srec/srec/crec/
srec_context.c     [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /external/jdiff/
xerces.jar 

Completed in 1008 milliseconds

1 2