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

1 2 34 5 6 7 8 91011>>

  /external/dropbear/libtommath/
bn_mp_cmp_d.c 21 /* compare based on sign */
22 if (a->sign == MP_NEG) {
bn_mp_invmod.c 22 if (b->sign == MP_NEG || mp_iszero(b) == 1) {
bn_mp_zero.c 24 a->sign = MP_ZPOS;
bn_mp_n_root.c 34 if ((b & 1) == 0 && a->sign == MP_NEG) {
50 /* if a is negative fudge the sign but keep track */
51 neg = a->sign;
52 a->sign = MP_ZPOS;
112 /* reset the sign of a first */
113 a->sign = neg;
118 /* set the sign of the result */
119 c->sign = neg;
bn_mp_div_2.c 60 b->sign = a->sign;
bn_mp_mul_2.c 75 b->sign = a->sign;
bn_mp_mul_d.c 36 /* set the sign */
37 c->sign = a->sign;
  /external/fdlibm/
s_cbrt.c 48 unsigned sign; local
52 sign=hx&0x80000000; /* sign= sign(x) */
53 hx ^=sign;
84 /* retore the sign bit */
85 __HI(t) |= sign;
  /external/regex-re2/re2/
unicode_groups.h 40 int sign; // +1 for [abc], -1 for [^abc] member in struct:re2::UGroup
  /external/skia/include/core/
SkFloatBits.h 15 /** Convert a sign-bit int (i.e. float interpreted as int) into a 2s compliement
27 /** Convert a 2s compliment int to a sign-bit (i.e. int interpreted as float).
31 int sign = x >> 31; local
33 x = (x ^ sign) - sign;
34 // set the sign bit as needed
35 x |= sign << 31;
  /external/skia/legacy/include/core/
SkFloatBits.h 15 /** Convert a sign-bit int (i.e. float interpreted as int) into a 2s compliement
27 /** Convert a 2s compliment int to a sign-bit (i.e. int interpreted as float).
31 int sign = x >> 31; local
33 x = (x ^ sign) - sign;
34 // set the sign bit as needed
35 x |= sign << 31;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c2_11pf.h 110 Word16 * sign, /* o : Signs of 2 pulses */
c2_9pf.h 111 Word16 * sign, /* o : Signs of 2 pulses */
c3_14pf.h 111 Word16 * sign, /* (o) : Signs of 3 pulses */
c4_17pf.h 110 Word16 * sign, /* (o) : Signs of 4 pulses */
  /external/openssl/crypto/rand/
randtest.c 71 int i,j,k,s,sign,nsign,err=0; local
91 sign=0;
103 if (s == sign)
110 runs[sign][nsign-1]++;
112 runs[sign][5]++;
114 sign=s;
123 if (nsign != 0) runs[sign][nsign-1]++;
  /external/srec/srec/cfront/
himul32.h 129 int sign = 0;
134 sign = 1;
139 sign = 1 - sign;
177 if (sign)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_GetVLCBits.c 103 OMX_U8 sign = 0; local
124 /* a signed value and the sign and the unsigned value for */
128 sign = (storeLevel & 0x80);
129 if(sign==0x80)
132 sign=1;
136 armRetDataErrIf( storeLevel == 0 || sign*storeLevel == 128 , OMX_Sts_Err); /* Invalid FLC */
142 sign,
191 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1);
228 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1);
244 sign,
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 246 // String sign;
249 // sign = "-";
253 // sign = "";
262 // return sign + wholePart + decimalPart + zeros(exp - decimalLen);
265 // return sign + wholePart + decimalPart.substring(0, exp) + "."
268 // return sign + "0." + zeros(-1 - exp) + wholePart + decimalPart;
317 String sign; local
321 sign = "-";
327 sign = "";
332 return sign + s.substring(0, 1) + s.substring(2, e
    [all...]
  /external/aac/libAACenc/src/
bit_cnt.cpp 784 INT sign,signLength; local
816 sign=0;
821 sign<<=1;
823 sign|=1;
830 sign<<=1;
832 sign|=1;
839 sign<<=1;
841 sign|=1;
848 sign<<=1;
850 sign|=1
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_sinl.c 54 s = z.bits.sign;
55 z.bits.sign = 0;
s_tanl.c 60 s = z.bits.sign;
61 z.bits.sign = 0;
  /dalvik/vm/mterp/armv5te/
OP_CONST_16.S 3 FETCH_S(r0, 1) @ r0<- ssssBBBB (sign-extended)
  /dalvik/vm/mterp/mips/
OP_CONST_16.S 3 FETCH_S(a0, 1) # a0 <- ssssBBBB (sign-extended)
OP_CONST_4.S 6 sra a1, a1, 28 # a1 <- sssssssB (sign-extended)

Completed in 1940 milliseconds

1 2 34 5 6 7 8 91011>>