HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 26 - 50 of 4265) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaxf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].f);
s_fmaxl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
s_fmin.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].d);
s_fminf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].f);
s_fminl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[1].bits.sign ? y : x);
e_sqrt.c 98 int32_t sign = (int)0x80000000; local
111 if(((ix0&(~sign))|ix1)==0) return x;/* sqrt(+-0) = +-0 */
130 ix0 += ix0 + ((ix1&sign)>>31);
136 ix0 += ix0 + ((ix1&sign)>>31);
148 ix0 += ix0 + ((ix1&sign)>>31);
153 r = sign;
159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
165 ix0 += ix0 + ((ix1&sign)>>31)
    [all...]
s_cbrt.c 45 u_int32_t sign; local
49 sign=hx&0x80000000; /* sign= sign(x) */
50 hx ^=sign;
74 INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
76 INSERT_WORDS(t,sign|(hx/3+B1),0);
  /external/compiler-rt/lib/builtins/
floatsidf.c 32 // All other cases begin by extracting the sign and absolute value of a
33 rep_t sign = 0;
35 sign = signBit;
51 // Insert the sign bit and return
52 return fromRep(result | sign);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.cpp 94 sign -- Word16 -- signs of 2 pulses.
151 Word16 sign, /* i : signs of 2 pulses. */
203 i = sign & 1;
220 sign >>= 1;
d2_9pf.h 108 Word16 sign, /* i : signs of 2 pulses. */
  /external/chromium_org/base/third_party/dmg_fp/
dmg_fp.h 19 int* decpt, int* sign, char** rve);
  /external/chromium_org/v8/src/
dtoa.h 58 Vector<char> buffer, int* sign, int* length, int* point);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Polynomial.c 49 LVM_INT32 Y,A,XTemp,Temp,sign; local
57 sign=Temp;
60 Y+=((*pCoefficients)*sign);
62 sign*=Temp;
  /ndk/sources/android/support/src/stdio/mips/
_fpmath.h 37 unsigned int sign :1; member in struct:IEEEl2bits::__anon43751
42 unsigned int sign :1;
46 unsigned int sign :1;
51 unsigned int sign :1;
  /external/fdlibm/
e_sqrt.c 99 int sign = (int)0x80000000; local
113 if(((ix0&(~sign))|ix1)==0) return x;/* ieee_sqrt(+-0) = +-0 */
132 ix0 += ix0 + ((ix1&sign)>>31);
138 ix0 += ix0 + ((ix1&sign)>>31);
150 ix0 += ix0 + ((ix1&sign)>>31);
155 r = sign;
161 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
167 ix0 += ix0 + ((ix1&sign)>>31)
    [all...]
  /external/chromium_org/chrome/installer/mac/
sign_versioned_dir.sh.in 7 # Using codesign, sign the contents of the versioned directory. Namely, this
52 codesign --sign "${codesign_id}" --keychain "${codesign_keychain}" \
56 codesign --sign "${codesign_id}" --keychain "${codesign_keychain}" \
60 codesign --sign "${codesign_id}" --keychain "${codesign_keychain}" \
64 codesign --sign "${codesign_id}" --keychain "${codesign_keychain}" \
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLDBuffer.c 43 * and sign, also updates the index
48 * [in] sign Flag indicating the sign of level
65 OMX_U8 sign,
76 /* Store the level depending on the sign*/
77 if (sign == 1)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
dtoa.h 8 int *decpt, int *sign, char **rve);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
dtoa.h 8 int *decpt, int *sign, char **rve);
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 38 private static final int SIGN = 1;
77 * plus the minus sign (only at the beginning) and/or decimal point
80 public DigitsKeyListener(boolean sign, boolean decimal) {
81 mSign = sign;
84 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
97 * plus the minus sign (only at the beginning) and/or decimal point
100 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
101 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0)
152 int sign = -1; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.h 53 enum Sign {
64 EncodedData(Sign, int exponent, uint64_t coefficient);
77 Sign sign() const { return m_sign; } function in class:blink::Decimal::EncodedData
78 void setSign(Sign sign) { m_sign = sign; }
88 EncodedData(Sign, FormatClass);
94 Sign m_sign;
98 Decimal(Sign, int exponent, uint64_t coefficient)
175 Sign sign() const { return m_data.sign(); } function in class:blink::Decimal
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
math-fround.js 57 if (mantissa_23_bits == 0 && mantissa_29_bits == 0) return sign * Infinity;
62 var sign = this.sign_bit ? -1 : 1;
67 return sign * Math.pow(2, exponent) * mantissa;
71 var sign = this.sign_bit ? -1 : 1;
74 if (exponent > 127) return sign * Infinity;
75 if (exponent < -126) return this.toSingleSubnormal(sign, exponent);
78 return sign * Math.pow(2, exponent) * mantissa;
81 ieee754float.prototype.toSingleSubnormal = function(sign, exponent) {
83 if (shift > 24) return sign * 0;
97 return sign * Math.pow(2, -126) * mantissa
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkMathPriv.h 23 /** If sign == -1, returns -n, else sign must be 0, and returns n.
26 static inline int32_t SkApplySign(int32_t n, int32_t sign) {
27 SkASSERT(sign == 0 || sign == -1);
28 return (n ^ sign) - sign;
31 /** Return x with the sign of y */
  /external/skia/src/core/
SkMathPriv.h 17 /** If sign == -1, returns -n, else sign must be 0, and returns n.
20 static inline int32_t SkApplySign(int32_t n, int32_t sign) {
21 SkASSERT(sign == 0 || sign == -1);
22 return (n ^ sign) - sign;
25 /** Return x with the sign of y */
  /external/deqp/framework/common/
tcuFloat.hpp 73 * \param sign Sign. Must be +1/-1
88 static inline Float construct (int sign, int exponent, StorageType mantissa);
92 * \param sign Sign. Must be +1/-1
99 * The sign is turned into a sign bit and the exponent bias is added.
103 static Float constructBits (int sign, int exponent, StorageType mantissaBits);
113 inline int sign (void) const { return signBit() ? -1 : 1; } function in class:tcu::Float
122 static Float zero (int sign);
    [all...]

Completed in 1221 milliseconds

12 3 4 5 6 7 8 91011>>