HomeSort by relevance Sort by last modified time
    Searched refs:sign (Results 226 - 250 of 1603) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
floatobject.h 34 #define Py_RETURN_INF(sign) do \
35 if (copysign(1., sign) == 1.) { \
  /system/extras/alloc-stress/
Android.mk 6 LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers -Wno-sign-compare
  /bionic/libm/upstream-freebsd/lib/msun/src/
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;
s_ceill.c 65 u.e = u.bits.sign ? -0.0 : 1.0;
70 if (!u.bits.sign) {
87 if (!u.bits.sign) {
s_floorl.c 65 u.e = u.bits.sign ? -1.0 : 0.0;
70 if (u.bits.sign) {
87 if (u.bits.sign) {
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Signature_Impl2Test.java 114 s.sign();
122 s.sign();
128 s.sign();
129 assertEquals("Incorrect state", Signature.SIGN, ((MySignature1) s)
131 assertTrue("sign() failed", ((MySignature1) s).runEngineSign);
139 assertEquals("Incorrect state", Signature.SIGN, ((MySignature1) s)
141 assertTrue("sign() failed", ((MySignature1) s).runEngineUpdate1);
166 s.sign(b, 0, 5);
172 s.sign(b, 0, 3);
174 assertTrue("sign() failed", MySignature2.runEngineSign)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf_5.cpp 174 Word16 temp, sign;
221 sign = indice[2] & 1;
225 if (sign == 0)
313 Word16 sign; local
339 sign =
347 sign,
413 sign = *(indice + 2) & 1;
432 if (sign == 0)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
set_sign.cpp 80 These functions are used to build a sign vector according
129 sign = buffer containing sign of dn elements (Word16)
138 sign buffer is modified to contain the sign information for the
153 This function builds sign vector according to dn buffer It also finds
171 Word16 sign[], o : sign of dn[]
180 // set sign according to dn[]
186 sign[i] = 32767
    [all...]
c2_9pf.cpp 131 Word16 dn_sign[], /* i : sign of dn[] */
135 Word16 sign[], /* o : sign of 2 pulses */
177 sign = pointer to the signs of 2 pulses (Word16)
248 Word16 * sign // o : Signs of 2 pulses
265 index = build_code(subNr, codvec, dn_sign, code, h, y, sign);
311 Word16 * sign, /* o : Signs of 2 pulses */
395 sign,
841 dn_sign = vector containing the sign of pulses (Word16)
846 sign = vector containing the sign of 2 pulses (Word16
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
sign.hpp 53 return a & traits::sign ? 1 : 0;
64 return a & traits::sign ? 1 : 0;
89 a ^= traits::sign;
101 a ^= traits::sign;
118 inline int sign BOOST_NO_MACRO_EXPAND(const T& z)
124 { //!< \brief return unchanged binary pattern of x, except for change of sign bit.
  /libcore/ojluni/src/main/java/sun/misc/
FpUtils.java 50 * to to least significant, sign, exponent, and significand.
53 * [sign|exponent| fractional_significand]
62 * (-1)^sign * 2^(exponent)*(1.fractional_significand)
82 * The 32-bit float format has 1 sign bit, 8 exponent bits, and 23
85 * sign bit, 11 exponent bits, and 52 bits for the significand
91 * (-1)^sign * 2^(E_min)*(0.fractional_significand)
94 * zero bits in the significand; zero can have either sign.
185 * Returns the first floating-point argument with the sign of the
188 * does not require NaN {@code sign} arguments to be treated
194 * @param sign the parameter providing the sign of the resul
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 900 char sign = 0; local
913 sign = '-';
914 else if (flags & PRINT_F_PLUS) /* Do a sign. */
915 sign = '+';
917 sign = ' ';
950 - ((sign != 0) ? 1 : 0) /* Will we print a sign? */
973 if (sign != 0) /* Sign. */
974 OUTCHAR(str, *len, size, sign);
1008 char sign = 0; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c4t64fx.c 76 Word16 sign[], /* (i) sign vector */
86 Word16 sign[], /* (i) sign vector */
96 Word16 sign[], /* (i) sign vector */
141 Word16 dn2[L_SUBFR], sign[L_SUBFR], vec[L_SUBFR]; local
238 * Find sign for each pulse position. *
280 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */
287 sign[i] = 32767; /* sign = +1 (Q12) *
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
subtract_sse2.asm 104 pcmpgtb xmm1, xmm2 ; obtain sign information
107 punpcklbw xmm0, xmm1 ; put sign back to subtraction
108 punpckhbw xmm2, xmm1 ; put sign back to subtraction
124 pcmpgtb xmm5, xmm1 ; obtain sign information
127 punpcklbw xmm3, xmm5 ; put sign back to subtraction
128 punpckhbw xmm1, xmm5 ; put sign back to subtraction
182 psubb xmm0, xmm1 ; subtraction with sign missed
186 pcmpgtb xmm1, xmm2 ; obtain sign information
190 punpcklbw xmm0, xmm1 ; put sign back to subtraction
191 punpckhbw xmm2, xmm3 ; put sign back to subtractio
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
atof-generic.c 57 <flonum> ::= <optional-sign> <decimal-number> <optional-exponent>
58 <optional-sign> ::= '+' | '-' | {empty}
65 | <exponent-character> <optional-sign> <integer>
127 address_of_generic_floating_point_number->sign = 0;
140 address_of_generic_floating_point_number->sign =
300 address_of_generic_floating_point_number->sign = digits_sign_char;
438 * The value of digits_flonum . sign should not be important.
439 * We have already decided the output's sign.
440 * We trust that the sign won't influence the other parts of the number!
444 * (2) in future there may be more meaning attached to sign,
    [all...]
read.h 125 extern int output_leb128 (char *, valueT, int sign);
130 extern int sizeof_leb128 (valueT, int sign);
179 extern void s_leb128 (int sign);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 164 sign, exponent, flag, significand -- bit masks that give the meaning of the
181 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
200 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
236 static const uint64_t sign = ((uint64_t)0x80000000u) << 32; member in struct:boost::math::detail::fp_traits_non_native
260 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
296 static const uint64_t sign = (uint64_t)0x80000000u << 32; member in struct:boost::math::detail::fp_traits_non_native
323 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
367 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
412 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u);
448 BOOST_STATIC_CONSTANT(uint32_t, sign = 0x80000000u)
    [all...]
  /system/bt/stack/smp/
p_256_ecc_pp.c 162 uint32_t sign; local
171 sign = (k[0] & 0x03); // 1 or 3
174 if (sign == 1)
190 sign = 0;
193 naf[i / 4] |= (sign) << ((i % 4) * 2);
203 uint32_t sign; local
241 sign = (naf[i / 4] >> ((i % 4) * 2)) & 0x03;
243 if (sign == 1)
248 else if (sign == 3)
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/
LOC.py 37 sign = -1
40 sign = 1
49 return (degrees * sign, minutes, seconds, what)
53 sign = -1
56 sign = 1
61 return sign * value
253 sign = -1
256 sign = 1
261 self.latitude[3]) * sign
264 sign = -
    [all...]
  /external/libopus/src/
mlp.c 72 float sign=1; local
81 sign=-1;
88 return sign*y;
  /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/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.c 39 int16_t shifts, sign; local
119 sign = y;
130 if (sign < 0) {
  /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;
  /external/libjpeg-turbo/
jdarith.c 248 int blkn, ci, tbl, sign; local
277 /* Figure F.22: Decoding the sign of v */
278 sign = arith_decode(cinfo, st + 1);
279 st += 2; st += sign;
296 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */
298 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */
304 v += 1; if (sign) v = -v;
327 int tbl, sign, k; local
358 /* Figure F.22: Decoding the sign of v */
359 sign = arith_decode(cinfo, entropy->fixed_bin)
504 int blkn, ci, tbl, sign, k; local
    [all...]

Completed in 2481 milliseconds

1 2 3 4 5 6 7 8 91011>>