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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/math/
mod.go 13 // sign agrees with that of x.
32 sign := false
36 sign = true
46 if sign {
  /toolchain/binutils/binutils-2.25/gas/
flonum-mult.c 93 if ((a->sign != '-' && a->sign != '+')
94 || (b->sign != '-' && b->sign != '+'))
97 product->sign = 0;
100 product->sign = (a->sign == b->sign) ? '+' : '-';
131 /* Watch out for sign extension! Without the casts, on
133 int, which gets sign-extended to convert to th
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 500 Word16 sign, signLength; local
533 sign=0;
539 sign = sign << 1;
542 sign|=1;
550 sign = sign << 1;
553 sign|=1;
561 sign = sign << 1
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ldtoa.c 49 __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign,
70 * gdtoa doesn't know anything about the sign of the number, so
74 *sign = p->ext_sign;
113 __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign,
118 ret = dtoa((double)*ld, mode, ndigits, decpt, sign, rve);
  /bionic/libm/
fabs.cpp 28 u.bits.sign = 0;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modfl.c 67 *iptr = zero[ux.bits.sign];
73 return (zero[ux.bits.sign]);
87 return (zero[ux.bits.sign]);
92 return (zero[ux.bits.sign]);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
__init__.py 35 from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \
43 __all__ = ["newkeys", "encrypt", "decrypt", "sign", "verify", 'PublicKey',
  /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/fio/lib/
ieee754.c 15 long long sign, exp, significand; local
16 unsigned significandbits = bits - expbits - 1; // -1 for sign bit
22 // check sign and begin normalization
24 sign = 1;
27 sign = 0;
50 return (sign << (bits - 1)) | (exp << (bits-expbits - 1)) | significand;
58 unsigned significandbits = bits - expbits - 1; // -1 for sign bit
80 // sign it
  /external/mesa3d/src/gallium/auxiliary/util/
u_half.h 53 uint32_t sign; local
62 /* Sign */
63 sign = f32.ui & sign_mask;
64 f32.ui ^= sign;
85 /* Sign */
86 f16 |= sign >> 16;
112 /* 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/private/
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 */
  /system/nativepower/example/
Android.mk 26 LOCAL_CFLAGS += -Wno-sign-promo # for libchrome
  /ndk/sources/android/support/src/wcstox/
floatscan.c 87 static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok)
161 if (!x[0]) return sign * 0.0;
165 return sign * (long double)x[0];
168 return sign * LDBL_MAX * LDBL_MAX;
172 return sign * LDBL_MIN * LDBL_MIN;
189 if (rp == 9) return sign * (long double)x[0];
190 if (rp < 9) return sign * (long double)x[0] / p10s[8-rp];
193 return sign * (long double)x[0] * p10s[rp-10];
281 y *= sign;
302 frac += 0.25*sign;
446 int sign = 1; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 53 * n = sign &times; mant &times; (radix)<sup>exp</sup>;</p>
55 * where sign is &plusmn;1, mantissa represents a fractional number between
166 /** Sign bit: & for positive, -1 for negative. */
167 protected byte sign; field in class:Dfp
183 sign = 1;
224 // set the sign
226 sign = -1;
229 sign = 1;
260 sign = 1;
288 sign = (byte) 1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_GetVLCBits.c 118 OMX_U8 sign = 0; local
139 /* a signed value and the sign and the unsigned value for */
143 sign = (storeLevel & 0x80);
144 if(sign==0x80)
147 sign=1;
151 armRetDataErrIf( storeLevel == 0 || sign*storeLevel == 128 , OMX_Sts_Err); /* Invalid FLC */
157 sign,
206 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1);
243 sign = (OMX_U8) armGetBits(ppBitStream, pBitOffset, 1);
259 sign,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fpformat.py 24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign + intpar
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fpformat.py 24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign + intpar
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fpformat.py 24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign + intpar
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fpformat.py 24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign + intpar
    [all...]
  /prebuilts/go/darwin-x86/src/math/
asinh.go 25 // asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
28 // := sign(x)*(log(x)+ln2)) for large |x|, else
29 // := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
30 // := sign(x)*log1p(|x| + x**2/(1 + sqrt(1+x**2)))
49 sign := false
52 sign = true
65 if sign {

Completed in 803 milliseconds

1 2 34 5 6 7 8 91011>>