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

1 23 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/stdio/arm64/
_fpmath.h 40 unsigned int sign :1; member in struct:IEEEl2bits::__anon35160
42 unsigned int sign :1;
  /ndk/sources/android/support/src/stdio/i386/
_fpmath.h 35 unsigned int sign :1; member in struct:IEEEl2bits::__anon35164
  /ndk/sources/android/support/src/stdio/mips/
_fpmath.h 37 unsigned int sign :1; member in struct:IEEEl2bits::__anon35166
42 unsigned int sign :1;
46 unsigned int sign :1;
51 unsigned int sign :1;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/
size_size_pointer_size.pass.cpp 20 int sign(int x) function
36 assert(sign(s.compare(pos, n1, str, n2)) == sign(x));
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put.cpp 39 int sign = 0; local
42 sign = 1;
68 return (last - first) + sign + basechars;
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
humanize_number.c 51 int b, r, s1, s2, sign; local
91 sign = -1;
92 baselen = 3; /* sign, digit, prefix */
101 sign = 1;
153 sign * s1, localeconv()->decimal_point, s2,
157 sign * ((bytes + 50) / 100),
  /bionic/libm/upstream-freebsd/lib/msun/src/
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);
e_jnf.c 55 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
176 int32_t sign; local
184 sign = 1;
187 sign = 1 - ((n&1)<<1);
190 if(n==1) return(sign*__ieee754_y1f(x));
203 if(sign>0) return b; else return -b;
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Signature_Impl1Test.java 34 * Class under test for int sign(byte[], int, int)
40 s.sign(b, 0, 5);
48 s.sign(b, 0, 5);
54 s.sign(b, 0, 5);
55 assertEquals("state", Signature.SIGN, s.getState());
56 assertTrue("sign() failed", s.runEngineSign);
  /external/fio/
flow.c 19 int sign; local
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
  /external/libcxx/test/std/experimental/string.view/string.view.ops/
compare.size_size_sv_pointer_size.pass.cpp 21 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
30 assert ( sign( sv1.compare(pos1, n1, s2, n2)) == sign(expected));
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_twoside.c 40 float sign; /**< +1 or -1 */ member in struct:twoside_stage
81 if (header->det * twoside->sign < 0.0) {
131 * We'll multiply the primitive's determinant by this sign to determine
133 * sign = -1 for CCW, +1 for CW
135 twoside->sign = stage->draw->rasterizer->front_ccw ? -1.0f : 1.0f;
  /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;
  /external/skia/src/core/
SkFloatBits.cpp 18 Floor and Cast are very similar, but Cast applies its sign after all other
81 // apply the sign after we check for overflow
84 // apply the sign before we right-shift
120 // apply the sign after we check for overflow
123 // apply the sign before we right-shift
150 // apply the sign after we check for overflow
153 // apply the sign before we right-shift
181 // record the sign and make value positive
182 int sign = SkExtractSign(value); local
183 value = SkApplySign(value, sign);
    [all...]
SkMath.cpp 59 // make numer and denom positive, and sign hold the resulting sign
60 int32_t sign = SkExtractSign(numer ^ denom); local
72 return SkApplySign(SK_MaxS32, sign);
111 return SkApplySign(result, sign);
  /external/v8/test/cctest/
test-dtoa.cc 64 int sign; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point)
270 int sign; local
290 int sign; local
313 int sign; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_unittest.cc 38 int sign = 1; local
41 sign *= -1;
42 data_ch1[i] = sign * WEBRTC_SPL_WORD32_MAX / (i * i + 1);
43 data_ch2[i] = sign * WEBRTC_SPL_WORD32_MIN / (i * i + 1);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 80 /* define values/representation for output codevector and sign */
276 indx[] -- array of type Word16 -- position and sign of
343 Word16 indx[], /* i : position and sign of 8 pulses (compressed) */
500 index array of type Word16 -- index of 8 pulses (sign+position)
559 Word16 index[], /* i : index of 8 pulses (sign+position) */
568 Word16 sign; local
594 sign = POS_CODE; /* +1.0 */
598 sign = -NEG_CODE; /* -1.0 */
603 cod[pos1] = sign; /* avoid buffer overflow */
614 sign = negate(sign)
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 31 public int sign; // 1 or -1 field in class:Duration
40 sign = 1;
49 sign = 1;
66 sign = -1;
131 cal.add(Calendar.DAY_OF_MONTH, sign*weeks*7);
132 cal.add(Calendar.DAY_OF_MONTH, sign*days);
133 cal.add(Calendar.HOUR, sign*hours);
134 cal.add(Calendar.MINUTE, sign*minutes);
135 cal.add(Calendar.SECOND, sign*seconds);
143 long factor = 1000 * sign;
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
G711Codec.cpp 52 int sign = (sample >> 8) & 0x80; local
62 ulaws[i] = ~(sign | (exponent << 4) | mantissa);
103 int sign = (sample >> 8) & 0x80; local
112 alaws[i] = (sign | (exponent << 4) | mantissa) ^ 0xD5;
  /ndk/sources/android/support/src/stdio/
fpmath.h 51 unsigned int sign :1; member in struct:IEEEf2bits::__anon35162
53 unsigned int sign :1;
70 unsigned int sign :1; member in struct:IEEEd2bits::__anon35163
76 unsigned int sign :1;
78 unsigned int sign :1;
  /bionic/libm/
fpmath.h 46 unsigned int sign :1; member in struct:IEEEf2bits::__anon1193
59 unsigned int sign :1; member in struct:IEEEd2bits::__anon1194
71 unsigned int sign :1; member in struct:IEEEl2bits::__anon1195
  /external/aac/libAACenc/src/
aacenc_pns.cpp 515 INT sign = (accu < FL2FXCONST_DBL(0.0f)) ? 1 : 0 ; local
519 ccf = (ccf>=FL2FXCONST_DBL(0.0)) ? ((FIXP_DBL)MAXVAL_DBL) : (sign) ? -CalcInvLdData(ccf) : CalcInvLdData(ccf);
  /external/boringssl/src/crypto/bn/
gcd.c 234 int sign; local
274 sign = -1;
278 * -sign*X*a == B (mod |n|),
279 * sign*Y*a == A (mod |n|).
292 * (1) -sign*X*a == B (mod |n|),
293 * (2) sign*Y*a == A (mod |n|) */
347 * (1) -sign*X*a == B (mod |n|),
348 * (2) sign*Y*a == A (mod |n|),
352 /* -sign*(X + Y)*a == B - A (mod |n|) */
362 /* sign*(X + Y)*a == A - B (mod |n|) *
557 int sign; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
pkcs1.py 205 :py:func:`rsa.sign`.
242 def sign(message, priv_key, hash): function
248 :param message: the message to sign. Can be an 8-bit string or a file-like
251 :param priv_key: the :py:class:`rsa.PrivateKey` to sign with
287 :param signature: the signature block, as created with :py:func:`rsa.sign`.
376 __all__ = ['encrypt', 'decrypt', 'sign', 'verify',

Completed in 602 milliseconds

1 23 4 5 6 7 8 91011>>