HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 1 - 25 of 538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/strings/basic.string/string.ops/string_compare/
pointer.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
string.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
size_size_pointer.pass.cpp 20 int sign(int x) function
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
size_size_string.pass.cpp 20 int sign(int x) function
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/
pointer.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
string.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
size_size_pointer.pass.cpp 20 int sign(int x) function
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
size_size_string.pass.cpp 20 int sign(int x) function
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
  /external/chromium_org/third_party/skia/experimental/Intersection/
IntersectionUtilities.h 41 inline int sign(double x) { function
  /external/skia/experimental/Intersection/
IntersectionUtilities.h 41 inline int sign(double x) { function
  /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)
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/chromium_org/cc/resources/
layer_quad.cc 29 float sign = quad.IsCounterClockwise() ? -1 : 1; local
30 left_.scale(sign);
31 right_.scale(sign);
32 top_.scale(sign);
33 bottom_.scale(sign);
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubby-u2f.js 69 usbGnubby.prototype.sign = function(challengeHash, appIdHash, keyHandle, cb,
72 // The sign command's format is ever-so-slightly different between V1 and V2,
83 // The V2 sign command includes a length byte for the key handle.
  /external/compiler-rt/lib/builtins/
fixdfsi.c 26 // Break a into sign, exponent, significand
29 const int sign = aRep & signBit ? -1 : 1; local
35 return sign * (significand >> (significandBits - exponent));
48 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));
  /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;
  /bionic/libm/upstream-freebsd/lib/msun/src/
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 60 int ex, sign; local
71 sign = expsign >> 15;
80 x += shift[sign];
81 x -= shift[sign];
84 * If the result is +-0, then it must have the same sign as x, but
85 * the above calculation doesn't always give this. Fix up the sign.
88 return (zero[sign]);
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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 9 int sign = k.signum(); local
10 if (sign == 0 || p.isInfinity())
16 return sign > 0 ? positive : positive.negate();
  /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/nanopb-c/examples/using_double_on_avr/
double_conversion.c 12 * Single precision: sign, 8-bit exp, 23-bit frac.
13 * Double precision: sign, 11-bit exp, 52-bit frac.
20 uint8_t sign; local
25 sign = (in.i >> 31) & 1;
57 mantissa |= (uint64_t)sign << 63;
64 uint8_t sign; local
70 sign = (value >> 63) & 1;
83 if (sign)
91 if (sign)
118 out.i |= (uint32_t)sign << 31
    [all...]
  /external/speex/libspeex/
vq.c 109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
  /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...]

Completed in 436 milliseconds

1 2 3 4 5 6 7 8 91011>>