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

1 2 34 5 6 7 8 91011>>

  /external/fdlibm/
e_jn.c 79 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
222 int sign; local
232 sign = 1;
235 sign = 1 - ((n&1)<<1);
238 if(n==1) return(sign*__ieee754_y1(x));
271 if(sign>0) return b; else return -b;
  /external/freetype/src/psaux/
psconv.c 91 FT_Bool sign = 0; local
109 sign = FT_BOOL( *p == '-' );
146 if ( sign )
203 FT_Bool sign = 0; local
213 sign = FT_BOOL( *p == '-' );
340 if ( sign )
  /external/iproute2/tc/
f_flow.c 101 int sign = 0; local
105 sign = 1;
127 if (sign)
  /external/opencv3/3rdparty/libwebp/enc/
token.c 115 const int sign = c < 0; local
116 int v = sign ? -c : c;
170 AddConstantToken(tokens, sign, 128);
  /external/opencv3/3rdparty/openexr/Imath/
ImathFun.h 61 sign (T a) function in namespace:Imath
119 return Imath::sign (a - b);
171 // remainder of x/y has the same sign as x:
173 // divs(x,y) == (abs(x) / abs(y)) * (sign(x) * sign(y))
  /external/pdfium/third_party/freetype/src/psaux/
psconv.c 91 FT_Bool sign = 0; local
109 sign = FT_BOOL( *p == '-' );
146 if ( sign )
203 FT_Bool sign = 0; local
213 sign = FT_BOOL( *p == '-' );
340 if ( sign )
  /external/v8/src/runtime/
runtime-maths.cc 91 // is a multiple of Pi / 4. The sign of the result is determined
92 // by the first argument (x) and the sign of the second argument
193 int sign = number->get_sign(); local
197 if (sign) return isolate->heap()->minus_zero_value();
204 if (!sign && exponent < kSmiValueSize - 2) {
214 if (sign && value >= -0.5) return isolate->heap()->minus_zero_value();
  /external/vixl/test/
test-invalset.cc 198 int sign = ((i % 2) == 0) ? -1 : 1; local
199 set.insert(Obj(sign * i, i));
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.c 39 int16_t shifts, sign; local
119 sign = y;
130 if (sign < 0) {
  /frameworks/av/drm/mediadrm/plugins/clearkey/
DrmPlugin.h 194 virtual status_t sign( function in class:clearkeydrm::DrmPlugin
  /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...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_bsd.c 25 with codeNum & sign on sucess.
28 @retval 1 : Sucessfuly found a code num, cxt is updated with codeNum, sign, and size of code.
171 signed char sign; local
177 sign = (sval & 0x1)?1:-1;
179 sval = sval * sign;
  /toolchain/binutils/binutils-2.25/libiberty/
copysign.c 10 unsigned int sign : 1; member in struct:__anon74713::__anon74714
20 unsigned int sign : 1; member in struct:__anon74713::__anon74715
55 unsigned int sign : 1; member in struct:__anon74717::__anon74718
70 unsigned int sign : 1; member in struct:__anon74717::__anon74719
90 unsigned int sign : 1; member in struct:__anon74721::__anon74722
97 unsigned int sign:1; member in struct:__anon74721::__anon74723
117 unsigned int sign : 1; member in struct:__anon74724::__anon74725
125 unsigned int sign:1; member in struct:__anon74724::__anon74726
140 a.number.sign =b.number.sign;
    [all...]
  /system/extras/verity/
BootSignature.java 164 public byte[] sign(byte[] image, PrivateKey key) throws Exception { method in class:BootSignature
166 return Utils.sign(key, signable);
245 bootsig.setSignature(bootsig.sign(image, key),
311 args[1] is the path to a boot image to sign
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jn.c 76 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
220 int32_t sign; local
231 sign = 1;
234 sign = 1 - ((n&1)<<1);
237 if(n==1) return(sign*__ieee754_y1(x));
273 if(sign>0) return b; else return -b;
  /bionic/tests/
math_data_test.h 89 unsigned sign:1; member in struct:fp_u::__anon1226
100 unsigned sign:1; member in struct:fp_u::__anon1227
111 if (u.bits.sign) {
114 u.bits.sign = 1;
math_test.cpp 1147 int sign; local
1148 ASSERT_DOUBLE_EQ(log(24.0), gamma_r(5.0, &sign));
1149 ASSERT_EQ(1, sign);
1157 int sign; local
1158 ASSERT_FLOAT_EQ(logf(24.0f), gammaf_r(5.0f, &sign));
1159 ASSERT_EQ(1, sign);
1178 int sign; local
1179 ASSERT_DOUBLE_EQ(log(24.0), lgamma_r(5.0, &sign));
1180 ASSERT_EQ(1, sign);
1184 int sign; local
1195 int sign; local
1201 int sign; local
1212 int sign; local
1218 int sign; local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
RSASignatureTest.java 75 byte[] sigBytes = signature.sign();
86 signature.sign();
134 // Assert that either initSign or sign fails. We don't expect all keymaster
139 byte[] sigBytes = signature.sign();
  /cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
RSUtils.java 59 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 local
60 double rand = sign * mantissa * Math.pow(2.0, exponent);
110 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 local
111 float rand = sign * mantissa * (float) Math.pow(2.0, exponent);
  /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...]
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 241 INT sign; local
250 sign = 1;
253 sign = 0;
285 if (sign) {
  /external/aac/libSBRenc/src/
ton_corr.cpp 242 INT sign; variable
277 sign = 1;
280 sign = -1;
284 sign = 1;
287 if(sign < 0) {
    [all...]
  /external/aac/libSYS/src/
wav_file.cpp 334 INT sign, exponent, mantissa, sample ; local
337 sign = (ulawbyte & 0x80) ;
342 if (sign != 0)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
BrentSolver.java 112 * function at the three points have the same sign (note that it is
113 * allowed to have endpoints with the same sign if the initial point has
114 * opposite sign function-wise).</p>
179 * function at the three points have the same sign (note that it is
180 * allowed to have endpoints with the same sign if the initial point has
181 * opposite sign function-wise).</p>
234 double sign = yMin * yMax; local
235 if (sign > 0) {
248 } else if (sign < 0){
  /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...]

Completed in 2561 milliseconds

1 2 34 5 6 7 8 91011>>