Searched defs:sign (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/external/boringssl/src/crypto/ec/
H A Dutil-64.c59 * "sign-alternating {+-1}-representation".
81 * The sign-alternating property implies that the resulting digit values are
90 * recoded digit to *sign (0 for positive, 1 for negative) and *digit (absolute
95 void ec_GFp_nistp_recode_scalar_bits(uint8_t *sign, uint8_t *digit, argument
105 *sign = s & 1;
/external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
H A Dpointer.pass.cpp19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
H A Dstring.pass.cpp19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
H A Dsize_size_pointer.pass.cpp22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
H A Dsize_size_string.pass.cpp22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
/external/libcxx/test/std/experimental/string.view/string.view.ops/
H A Dcompare.sv.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
25 assert ( sign( sv1.compare(sv2)) == sign(expected));
H A Dcompare.pointer.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
24 assert ( sign( sv1.compare(s)) == sign(expected));
H A Dcompare.pointer_size.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
36 assert(sign(sv1.compare(pos1, n1, s)) == sign(expected));
H A Dcompare.size_size_sv.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
37 assert ( sign( sv1.compare(pos1, n1, sv2)) == sign(expected));
/external/libcxx/test/std/strings/string.view/string.view.ops/
H A Dcompare.sv.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
25 assert ( sign( sv1.compare(sv2)) == sign(expected));
H A Dcompare.pointer.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
24 assert ( sign( sv1.compare(s)) == sign(expected));
H A Dcompare.pointer_size.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
27 assert(sign(sv1.compare(pos1, n1, s)) == sign(expected));
30 assert(sign(sv1.compare(pos1, n1, s)) == sign(expected));
H A Dcompare.size_size_sv.pass.cpp20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
27 assert(sign( sv1.compare(pos1, n1, sv2)) == sign(expected));
30 assert(sign( sv1.compare(pos1, n1, sv2)) == sign(expected));
/external/bison/lib/
H A Dfrexp.c60 int sign; local
71 sign = 0;
75 sign = -1;
161 if (sign < 0)
/external/boringssl/include/openssl/
H A Dec_key.h246 /* sign matches the arguments and behaviour of |ECDSA_sign|. */
247 int (*sign)(const uint8_t *digest, size_t digest_len, uint8_t *sig, member in struct:ecdsa_method_st
/external/boringssl/src/include/openssl/
H A Dec_key.h246 /* sign matches the arguments and behaviour of |ECDSA_sign|. */
247 int (*sign)(const uint8_t *digest, size_t digest_len, uint8_t *sig, member in struct:ecdsa_method_st
/external/crcalc/src/com/hp/creals/
H A DStringFloatRep.java42 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/deqp/framework/delibs/debase/
H A DdeFloat16.c30 deUint32 sign; local
40 sign = (x.u >> 16u) & 0x00008000u;
49 return (deFloat16) sign;
64 return (deFloat16) (sign | mantissa);
71 return (deFloat16) (sign | 0x7c00u);
77 return (deFloat16) (sign | 0x7c00u | mantissa | (mantissa == 0u));
95 return (deFloat16) (sign | 0x7c00u);
98 return (deFloat16) (sign | ((deUint32)expotent << 10u) | (mantissa >> 13u));
104 deUint32 sign; local
115 sign
[all...]
H A DdeMathTest.c76 int sign; local
84 for (sign = -1; sign < 1; ++sign)
88 const deInt64 x = (deInt64)(sign == -1 ? (-1) : (+1)) * (1LL << (deInt64)numBits) + (deInt64)delta;
/external/fdlibm/
H A Ds_cbrt.c48 unsigned sign; local
52 sign=hx&0x80000000; /* sign= sign(x) */
53 hx ^=sign;
84 /* retore the sign bit */
85 __HI(t) |= sign;
/external/fio/lib/
H A Dieee754.c15 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/libopus/src/
H A Dmlp.c72 float sign=1; local
86 sign=-1;
93 return sign*y;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_half.h53 uint32_t sign; local
63 sign = f32.ui & sign_mask;
64 f32.ui ^= sign;
86 f16 |= sign >> 16;
/external/nanopb-c/examples/using_double_on_avr/
H A Ddouble_conversion.c12 * 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 << 3
[all...]
/external/opencv/cv/src/
H A D_cvgeom.h75 char sign; /* sign of the triangle */ member in struct:_CvTrianAttr

Completed in 2459 milliseconds

1234567891011>>