Searched defs:sign (Results 226 - 250 of 406) sorted by relevance

1234567891011>>

/external/skqp/src/pathops/
H A DSkPathOpsQuad.cpp52 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; local
53 if (approximately_zero(sign)) {
60 if (test * sign > 0 && !precisely_zero(test)) {
132 // the sign of B -- and further suggesting that the greatest loss of precision
/external/tensorflow/tensorflow/contrib/labeled_tensor/
H A D__init__.py54 sign = _core.sign variable
/external/tensorflow/tensorflow/core/graph/
H A Dquantize_training.cc57 EdgeToConvert(const Edge* e, int32 bits, bool sign, bool range, float min, argument
61 signed_input(sign),
/external/valgrind/VEX/priv/
H A Dguest_ppc_helpers.c230 * A valid BCD value has a sign value in bits [3:0] between 0xA
240 UInt sign; local
243 sign = bcd_string_low & 0xF;
244 if( ( sign >= 0xA ) && ( sign <= 0xF ) )
247 /* Change the sign digit to a zero
254 sign_valid = True; /* set sign to True so result is only
278 * the lower 32 bits of the result. If the input was signed the sign of
291 bcd_value = bcd_string >> 4; /* remove sign */
327 * byte may contain a sign valu
[all...]
/external/valgrind/none/tests/amd64/
H A Dfma4.c24 char sign = neg != 0 ? '-' : ' '; local
32 printf ("[ %cINF ]", sign);
36 printf ("[%cZERO ]", sign);
44 printf ("[%cSUBNR]", sign);
54 char sign = neg != 0 ? '-' : ' '; local
62 printf ("[ %cINF ]", sign);
66 printf ("[ %cZERO ]", sign);
74 printf ("[ %cSUBNORMAL ]", sign);
/external/vixl/src/aarch32/
H A Doperands-aarch32.h643 // The index register may have an associated {+/-} sign,
652 // The other with a sign and a positive value offset parameters. The value of
653 // sign_ is "constructor's sign parameter" and the value of offset_ is
654 // "constructor's sign parameter * constructor's offset parameter".
658 // the sign of offset_.
690 MemOperand(Register rn, Sign sign, int32_t offset, AddrMode addrmode = Offset) argument
692 offset_(sign.IsPlus() ? offset : -offset),
693 sign_(sign),
699 // With this constructor, the sign must only be specified by "sign"
707 MemOperand(Register rn, Sign sign, Register rm, AddrMode addrmode = Offset) argument
737 MemOperand(Register rn, Sign sign, Register rm, Shift shift, AddrMode addrmode = Offset) argument
775 MemOperand(Register rn, Sign sign, Register rm, Shift shift, uint32_t shift_amount, AddrMode addrmode = Offset) argument
[all...]
/external/vixl/src/
H A Dutils-vixl.h191 // If the highest extracted bit is set, sign extend.
281 float FloatPack(uint32_t sign, uint32_t exp, uint32_t mantissa);
283 inline float float_pack(uint32_t sign,
286 return FloatPack(sign, exp, mantissa);
289 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa);
291 inline double double_pack(uint32_t sign,
294 return DoublePack(sign, exp, mantissa);
403 T sign = -(val >> (bitSize - 1)); local
404 val |= (sign << bitSize);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dbandwidth_estimator.c173 int32_t sign; local
443 sign = 1;
446 sign = -1;
473 bweStr->recJitterShortTerm = 205 * (arrTimeNoise << 3) * sign +
753 /* adjust bw proportionally to negative average jitter sign */
773 /* adjust Rate if jitter sign is mostly constant */
/external/ImageMagick/MagickCore/
H A Dpixel-accessor.h217 sign; local
222 sign=x < 0.0 ? -1.0 : 1.0;
223 if ((sign*x) >= MagickEpsilon)
225 return(sign/MagickEpsilon);
/external/aac/libAACdec/src/
H A Daacdec_hcr.cpp1064 0) { /* no sign bits follow after the codeword-body */
1078 /* result is written out here because NO sign bits follow the body */
1082 spectrum; sign is already valid */
1108 sign bits after the codeword-body */
1147 (codebook >= 11)) { /* possibly there follow some sign bits and
1392 INT sign; local
1425 sign = (quantSpecCoef >= 0) ? 1 : -1;
1427 quantSpecCoef = sign * (((INT)1 << escapeOnesCounter) + escape_word);
1465 /* adapt sign of values according to the decoded sign bi
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java637 * @return -1.0, -0.0, +0.0, +1.0 or NaN depending on sign of a
646 * @return -1.0, -0.0, +0.0, +1.0 or NaN depending on sign of a
2796 if (xa == 0.0) { // Matches +/- 0.0; return correct sign
3049 if (ra == 0) { // Fix up the sign so atan works correctly
3080 if (x == 0.0) { // Matches +/- 0.0; return correct sign
3308 if (Double.isInfinite(x) || x == 0.0) { // Matches +/- 0.0; return correct sign
3321 result = result * x; // ensure correct sign if calculation underflows
3333 if (Double.isInfinite(x) || x == 0.0) { // Matches +/- 0.0; return correct sign
3433 final long sign = bits & 0x8000000000000000L;
3444 return Double.longBitsToDouble(sign | (((lon
3995 copySign(double magnitude, double sign) argument
4012 copySign(float magnitude, float sign) argument
[all...]
/external/boringssl/src/crypto/fipsmodule/ec/
H A Dp224-64.c916 uint8_t sign, digit; local
969 ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits);
974 p224_copy_conditional(tmp[1], tmp[3], sign);
/external/deqp/external/openglcts/modules/gles31/
H A Des31cVertexAttribBindingTests.cpp247 unsigned int sign = (GLhalf)(x >> 31); local
269 hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(HALF_FLOAT_MAX_BIASED_EXP) | (GLhalf)(mantissa >> 13));
278 hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(mantissa));
282 hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)((exp - HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP) >> 13) |
/external/deqp/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingTests.cpp1124 // Two sets of identical primitives, but with a different ClipDistance sign.
1127 const float sign = (setNdx == 0 ? 1.0f : -1.0f); local
1134 const Vec4 p0 = Vec4(x, -1.0f, 0.0f, sign * clipDistances[ndxBase + 0]);
1135 const Vec4 p1 = Vec4(x, 1.0f, 0.0f, sign * clipDistances[ndxBase + 1]);
1136 const Vec4 p2 = Vec4(x + dx, 1.0f, 0.0f, sign * clipDistances[ndxBase + 2]);
1137 const Vec4 p3 = Vec4(x + dx, -1.0f, 0.0f, sign * clipDistances[ndxBase + 3]);
1152 log << tcu::TestLog::Message << "Draw two sets of primitives with blending, differing only with ClipDistance sign." << tcu::TestLog::EndMessage
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorBase.h90 sign() const { function in class:Eigen::TensorBase
/external/freetype/src/autofit/
H A Dafcjk.c1494 FT_Int sign = 0; local
1507 sign = 1;
1596 if ( sign )
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DBasicTest.java231 * The Tibetan vowel sign AA, 0f71, was messed up prior to
1809 private static int sign(int value) { method in class:BasicTest
1844 // Angstrom sign = A ring
1988 if(sign(result)!=sign(refResult)) {
1989 errln("Normalizer::compare( " + i +", "+j + ", " +k+"( " +opt[k].name+"))=" + result +" should be same sign as " + refResult);
2005 if(sign(result)!=sign(refResult)) {
2006 errln("Normalizer::compare( " + i +", "+j + ", "+k+"( " +opt[k].name+"))=" + result +" should be same sign as " + refResult);
2038 if(sign(resul
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dnumberformatter.h51 * .sign(UNumberSignDisplay::UNUM_SIGN_ALWAYS)
182 * The exact format, including the position and the code point of the sign, differ by locale.
188 * Show the minus sign on negative numbers, and do not show the sign on positive numbers. This is the default
196 * Show the minus sign on negative numbers and the plus sign on positive numbers.
203 * Do not show the sign on positive or negative numbers.
210 * Use the locale-dependent accounting format on negative numbers, and do not show the sign on positive numbers.
218 * AUTO sign display strategy when formatting without a currency unit. This limitation may be lifted in the
226 * Use the locale-dependent accounting format on negative numbers, and show the plus sign o
1307 UNumberSignDisplay sign = UNUM_SIGN_COUNT; member in struct:number::impl::MacroProps
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DBasicTest.java228 * The Tibetan vowel sign AA, 0f71, was messed up prior to
1806 private static int sign(int value) { method in class:BasicTest
1841 // Angstrom sign = A ring
1985 if(sign(result)!=sign(refResult)) {
1986 errln("Normalizer::compare( " + i +", "+j + ", " +k+"( " +opt[k].name+"))=" + result +" should be same sign as " + refResult);
2002 if(sign(result)!=sign(refResult)) {
2003 errln("Normalizer::compare( " + i +", "+j + ", "+k+"( " +opt[k].name+"))=" + result +" should be same sign as " + refResult);
2035 if(sign(resul
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodemv.c238 const int sign = vpx_read(r, mvcomp->sign); local
264 return sign ? -mag : mag;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemb.c161 const int sign = -(x < 0); // -1 if x is negative and 0 otherwise. local
162 const int x1 = x - 2 * sign - 1; // abs(x1) = abs(x) - 1.
171 const int diff_step = (dqv_step + sign) ^ sign;
/external/libxaac/decoder/drc_src/
H A Dimpd_drc_dynamic_payload.c45 WORD32 sign, magn, bit_2_extract; local
48 sign = impd_read_bits_buf(it_bit_buff, 1);
53 if (sign) *initial_gain = -*initial_gain;
59 sign = impd_read_bits_buf(it_bit_buff, 1);
61 if (sign == 0)
657 WORD32 m, sign, j, temp; local
700 sign = temp & 0x01;
704 sign = sign << 1;
706 unique_td_filt_ele->real_zero_radius[m] = (1 - sign) * tm
760 WORD32 sign, bs_fir_coeff; local
890 WORD32 sign, bs_eq_subband_gain; local
[all...]
H A Dimpd_drc_static_payload.c1362 WORD32 sign, temp; local
1402 sign = ((temp >> 5) & 1);
1405 if (sign) {
1441 sign = ((temp >> 5) & 1);
1444 if (sign) {
/external/libxaac/decoder/
H A Dixheaacd_arith_dec.c1915 WORD32 sign = 0; local
1918 sign = -1;
1920 sign = +1;
1922 return sign;
H A Dixheaacd_drc_freq_dec.c656 WORD32 sign = ixheaacd_read_bits_buf(bs, 1); local
658 if (sign)

Completed in 642 milliseconds

1234567891011>>