HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 101 - 125 of 679) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_toradix.c 43 if (t.sign == MP_NEG) {
46 t.sign = MP_ZPOS;
60 * to the first digit [exluding the sign] of the number]
bn_mp_toradix_n.c 46 if (t.sign == MP_NEG) {
47 /* we have to reverse our digits later... but not the - sign!! */
52 t.sign = MP_ZPOS;
73 * to the first digit [exluding the sign] of the number
bn_mp_clear.c 40 a->sign = MP_ZPOS;
bn_mp_init.c 35 * and sign to positive */
38 a->sign = MP_ZPOS;
bn_mp_init_size.c 35 a->sign = MP_ZPOS;
  /external/openssh/openbsd-compat/
fmt_scaled.c 79 int sign = 0; local
90 if (sign) {
94 sign = -1;
97 if (sign) {
101 sign = +1;
139 if (sign) {
140 whole *= sign;
141 fpart *= sign;
  /bionic/libm/i386/
_fpmath.h 35 unsigned int sign :1; member in struct:IEEEl2bits::__anon694
  /dalvik/vm/compiler/template/mips/
TEMPLATE_SHR_LONG.S 10 sra a3, rARG1, 31 # a3<- sign(ah)
17 movn rRESULT1, a3, a2 # rhi<- sign(ahi) (if shift&0x20)
  /dalvik/vm/mterp/armv5te/
binopLit8.S 16 FETCH_S(r3, 1) @ r3<- ssssCCBB (sign-extended for CC)
20 movs r1, r3, asr #8 @ r1<- ssssssCC (sign extended)
  /dalvik/vm/mterp/mips/
binopLit8.S 16 FETCH_S(a3, 1) # a3 <- ssssCCBB (sign-extended for CC)
20 sra a1, a3, 8 # a1 <- ssssssCC (sign extended)
  /external/bison/lib/
frexp.c 60 int sign; local
71 sign = 0;
75 sign = -1;
161 if (sign < 0)
  /external/icu4c/test/intltest/
thcoll.h 67 int8_t sign(int32_t i);
  /external/skia/src/gpu/
FlingState.cpp 30 // returns +1 or -1, depending on the sign of x
33 SkScalar sign = SK_Scalar1; local
35 sign = -sign;
37 return sign;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLCBuffer.c 42 * levelPlus = sign(level)*[abs(level) - LMAX]
78 OMX_U32 tempRun = run, sign = 0; local
115 sign = 1;
133 armPackBits(ppBitStream, pBitOffset, (OMX_U32)sign, 1);
137 if (sign)
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.moneypunct/
money_base.pass.cpp 15 // enum part {none, space, symbol, sign, value};
28 assert(mb.sign == 3);
  /external/chromium/base/third_party/dmg_fp/
g_fmt.cc 34 int decpt, j, sign; local
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
46 if (sign)
  /external/icu4c/test/perf/perldriver/
Format.pm 139 my $sign = (s/^-//) ? '-' : '';
154 $result = $sign . $d;
156 $result = $sign . substr($d, 0, $e) . '.' . substr($d, $e);
  /external/skia/legacy/src/utils/
SkParse.cpp 141 int sign = 0; local
144 sign = -1;
158 *value = (n ^ sign) - sign;
167 int sign = 0; local
170 sign = -1;
197 *value = (n ^ sign) - sign;
215 int sign = 0;
218 sign = -1
    [all...]
  /external/skia/src/utils/
SkParse.cpp 141 int sign = 0; local
144 sign = -1;
158 *value = (n ^ sign) - sign;
167 int sign = 0; local
170 sign = -1;
197 *value = (n ^ sign) - sign;
215 int sign = 0;
218 sign = -1
    [all...]
  /external/v8/src/
dtoa.cc 57 Vector<char> buffer, int* sign, int* length, int* point) {
61 if (Double(v).Sign() < 0) {
62 *sign = 1;
65 *sign = 0;
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DurationTest.java 27 int sign, int weeks, int days, int hours,
33 assertEquals("Duration sign is not equal for " + str, sign, duration.sign);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
neg_format.pass.cpp 60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
92 assert(p.field[0] == std::money_base::sign);
100 assert(p.field[0] == std::money_base::sign);
108 assert(p.field[0] == std::money_base::sign);
116 assert(p.field[0] == std::money_base::sign);
125 assert(p.field[0] == std::money_base::sign);
133 assert(p.field[0] == std::money_base::sign);
    [all...]
pos_format.pass.cpp 60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
92 assert(p.field[0] == std::money_base::sign);
100 assert(p.field[0] == std::money_base::sign);
108 assert(p.field[0] == std::money_base::sign);
116 assert(p.field[0] == std::money_base::sign);
125 assert(p.field[0] == std::money_base::sign);
133 assert(p.field[0] == std::money_base::sign);
    [all...]
  /libcore/luni/src/main/java/java/math/
BitLevel.java 43 if (val.sign == 0) {
49 if (val.sign < 0) {
56 // Subtracting all sign bits
66 if (val.sign == 0) {
71 if (val.sign > 0) {
75 } else {// (sign < 0)
132 return new BigInteger(source.sign, resLen, resDigits);
141 return ((source.sign < 0) ? BigInteger.MINUS_ONE : BigInteger.ZERO);
148 if (source.sign < 0) {
166 return new BigInteger(source.sign, resLength, resDigits)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 80 /* define values/representation for output codevector and sign */
276 indx[] -- array of type Word16 -- position and sign of
343 Word16 indx[], /* i : position and sign of 8 pulses (compressed) */
500 index array of type Word16 -- index of 8 pulses (sign+position)
559 Word16 index[], /* i : index of 8 pulses (sign+position) */
568 Word16 sign; local
594 sign = POS_CODE; /* +1.0 */
598 sign = -NEG_CODE; /* -1.0 */
603 cod[pos1] = sign; /* avoid buffer overflow */
614 sign = negate(sign)
    [all...]

Completed in 398 milliseconds

1 2 3 45 6 7 8 91011>>