/system/core/fastboot/ |
signfile.sh | 9 openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
|
/external/dropbear/libtommath/ |
bn_mp_cmp.c | 22 /* compare based on sign */ 23 if (a->sign != b->sign) { 24 if (a->sign == MP_NEG) { 32 if (a->sign == MP_NEG) {
|
bn_mp_neg.c | 29 b->sign = (a->sign == MP_ZPOS) ? MP_NEG : MP_ZPOS; 31 b->sign = MP_ZPOS;
|
bn_mp_add.c | 23 /* get sign of both inputs */ 24 sa = a->sign; 25 sb = b->sign; 30 /* add their magnitudes, copy the sign */ 31 c->sign = sa; 37 /* the sign of the one with the greater magnitude. */ 39 c->sign = sb; 42 c->sign = sa;
|
bn_mp_sub.c | 24 sa = a->sign; 25 sb = b->sign; 31 /* and use the sign of the first number. */ 32 c->sign = sa; 40 /* Copy the sign from the first */ 41 c->sign = sa; 45 /* The result has the *opposite* sign from */ 47 c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
|
bn_mp_read_signed_bin.c | 30 a->sign = MP_ZPOS; 32 a->sign = MP_NEG;
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_signbit.c | 39 return (u.bits.sign); 48 return (u.bits.sign); 57 return (u.bits.sign);
|
s_fabsl.c | 41 u.bits.sign = 0;
|
s_copysignl.c | 40 ux.bits.sign = uy.bits.sign;
|
s_cbrtf.c | 36 u_int32_t sign; local 40 sign=hx&0x80000000; /* sign= sign(x) */ 41 hx ^=sign; 51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2)); 53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
|
s_rintl.c | 59 int ex, sign; local 70 sign = expsign >> 15; 79 x += shift[sign]; 80 x -= shift[sign]; 83 * If the result is +-0, then it must have the same sign as x, but 84 * the above calculation doesn't always give this. Fix up the sign. 87 return (zero[sign]);
|
/bionic/libm/ |
fpmath.h | 39 unsigned int sign :1; member in struct:IEEEf2bits::__anon741 41 unsigned int sign :1; 58 unsigned int sign :1; member in struct:IEEEd2bits::__anon742 64 unsigned int sign :1; 66 unsigned int sign :1;
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
d1035pf.cpp | 94 represented by sign+position 130 Word16 index[], // (i) : index of 10 pulses (sign+position) 134 Word16 i, j, pos1, pos2, sign, tmp; 157 sign = 4096; // +1.0 161 sign = -4096; // -1.0 164 cod[pos1] = sign; 176 sign = negate (sign); 178 cod[pos2] = add (cod[pos2], sign); 208 Word16 index[], /* (i) : index of 10 pulses (sign+position) * 213 Word16 sign, tmp; local [all...] |
d2_11pf.h | 84 Word16 sign, /* i : signs of 2 pulses. */
|
d3_14pf.h | 105 Word16 sign, /* i : signs of 3 pulses. */
|
d4_17pf.h | 106 Word16 sign, /* i : signs of 4 pulses. */
|
/external/compiler-rt/lib/ |
fixdfsi.c | 25 // Break a into sign, exponent, significand 28 const int sign = aRep & signBit ? -1 : 1; local 34 return sign * (significand >> (significandBits - exponent)); 47 return sign * (significand << (exponent - significandBits));
|
fixsfsi.c | 23 // Break a into sign, exponent, significand 26 const int sign = aRep & signBit ? -1 : 1; local 32 return sign * (significand >> (significandBits - exponent)); 45 return sign * (significand << (exponent - significandBits));
|
floatsidf.c | 31 // All other cases begin by extracting the sign and absolute value of a 32 rep_t sign = 0; 34 sign = signBit; 50 // Insert the sign bit and return 51 return fromRep(result | sign);
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
MouseAxisTrigger.java | 73 String sign = negative ? "Negative" : "Positive"; local 75 case MouseInput.AXIS_X: return "Mouse X Axis " + sign; 76 case MouseInput.AXIS_Y: return "Mouse Y Axis " + sign; 77 case MouseInput.AXIS_WHEEL: return "Mouse Wheel " + sign;
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
cor_h.h | 83 Word16 sign[], /* (i) : sign of d[n] */
|
set_sign.h | 105 Word16 sign[], /* o : sign of dn[] */ 113 Word16 sign[], /* o : sign of d[n] */
|
/bionic/libm/mips/ |
_fpmath.h | 36 unsigned int sign :1; member in struct:IEEEl2bits::__anon747 38 unsigned int sign :1;
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
Duration.java | 31 public int sign; // 1 or -1 field in class:Duration 40 sign = 1; 49 sign = 1; 66 sign = -1; 131 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7); 132 cal.add(Calendar.DAY_OF_MONTH, sign*days); 133 cal.add(Calendar.HOUR, sign*hours); 134 cal.add(Calendar.MINUTE, sign*minutes); 135 cal.add(Calendar.SECOND, sign*seconds); 143 long factor = 1000 * sign; [all...] |
/external/chromium_org/v8/test/cctest/ |
test-dtoa.cc | 64 int sign; local 66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); 70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point); 75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); 80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); 84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point); 90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); 96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); 100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point); 106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point) 270 int sign; local 290 int sign; local 313 int sign; local [all...] |