/external/libcxx/test/std/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));
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
armVCM4P2_FillVLCBuffer.c | 57 * levelPlus = sign(level)*[abs(level) - LMAX] 93 OMX_U32 tempRun = run, sign = 0; local 130 sign = 1; 148 armPackBits(ppBitStream, pBitOffset, (OMX_U32)sign, 1); 152 if (sign)
|
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...] |
/external/libcxx/test/std/experimental/string.view/string.view.ops/ |
compare.pointer.pass.cpp | 19 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function 23 assert ( sign( sv1.compare(s)) == sign(expected));
|
compare.sv.pass.cpp | 19 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function 24 assert ( sign( sv1.compare(sv2)) == sign(expected));
|
compare.pointer_size.pass.cpp | 19 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function 25 assert(sign(sv1.compare(pos1, n1, s)) == sign(expected));
|
compare.size_size_sv.pass.cpp | 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function 28 assert ( sign( sv1.compare(pos1, n1, sv2)) == sign(expected));
|
/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 | 59 int ex, sign; local 70 sign = expsign >> 15; 79 x += shift[sign]; 80 x -= shift[sign]; 83 * If the result is +-0, then it must have the same sign as x, but 84 * the above calculation doesn't always give this. Fix up the sign. 87 return (zero[sign]);
|
/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 ECPoint result = sign > 0 ? positive : positive.negate();
|
/external/crcalc/src/com/hp/creals/ |
StringFloatRep.java | 42 sign = s; 48 * The sign associated with this approximation. May be -1, _1, or zero. 50 public int sign; field in class:StringFloatRep 66 * Produce a textual representation including the sign and exponent. 70 (sign < 0? "-" : "") + mantissa + "E" + Integer.toString(exponent)
|
/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/opencv3/3rdparty/openexr/IlmImf/ |
ImfRational.cpp | 94 int sign; local 98 sign = 1; // positive 102 sign = -1; // negative 114 n = sign; // infinity 121 n = sign * (int) floor (x * d + 0.5);
|
/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)
|
/external/v8/src/crankshaft/ |
hydrogen-dehoist.cc | 33 int32_t sign = binary_operation->IsSub() ? -1 : 1; local 34 checked_value = checked_value * 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...] |