HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 126 - 150 of 538) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/speex/libspeex/
cb_search.c 169 spx_word16_t sign=1; local
173 sign=-1;
177 if (sign>0)
185 if (sign==1)
195 e[subvect_size*i+j]=sign*0.03125*shape_cb[rind*subvect_size+j];
204 spx_word16_t sign=1; local
208 sign=-1;
214 g=sign*shape_cb[rind*subvect_size+m];
216 g=sign*0.03125*shape_cb[rind*subvect_size+m];
427 spx_word16_t sign=1 local
475 spx_word16_t sign=1; local
    [all...]
pseudofloat.h 67 int sign=0; local
70 sign = 1;
80 if (sign)
stereo.c 129 /*Pack sign*/
277 spx_word16_t sign=1, dexp; local
285 sign=-1;
288 stereo->balance = exp(sign*.25*dexp);
290 stereo->balance = spx_exp(MULT16_16(sign, SHL16(dexp, 9)));
  /external/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /external/webp/src/enc/
token.c 122 const int sign = c < 0; local
123 int v = sign ? -c : c;
177 AddConstantToken(tokens, sign, 128);
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
pitch_filter.c 53 WebRtc_Word16 sign,
80 WebRtc_Word16 sign = 1; local
103 sign = -1;
156 indW32, sign, inystateQQ, ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 500 Word16 sign, signLength; local
533 sign=0;
539 sign = sign << 1;
542 sign|=1;
550 sign = sign << 1;
553 sign|=1;
561 sign = sign << 1
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 361 frequency domain. The sign change interval is subdivided 4 times to better
387 Word16 x, y, sign, exp;
488 sign = y;
497 if (sign < 0)
580 Word16 sign; local
683 sign = y;
691 if (sign < 0)
q_plsf_5.cpp 381 Word16 sign = 0; /* initialization only needed to keep gcc silent */ local
462 sign = 0;
471 sign = 1;
479 if (sign)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 264 Word16 sign[], // (i) : sign of d[n]
268 Word16 indx[] // (o) : index of 10 pulses (sign+position)
288 // read sign
289 j = sign[i];
316 // sign of 1st pulse == sign of 2nd pulse
330 // sign of 1st pulse != sign of 2nd pulse
401 Word16 sign[], /* (i) : sign of d[n] *
659 Word16 dn[L_CODE], sign[L_CODE]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c 68 Word16 x, y, sign, exp; local
104 * - Evaluate Chebyshev pol. at grid points and check for sign change.*
105 * - If sign change track the root by subdividing the interval *
106 * 2 times and ckecking sign change. *
150 sign = y;
158 if (sign < 0)
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
262 if (TrailingOnes) /* keep reading the sign of those trailing ones */
307 sign = 0;
311 sign = 1;
319 status = BitstreamWriteBits(stream, value * 2 + sign - 1, 1);
323 status = BitstreamWriteBits(stream, 14 + 1 + 4, (1 << 4) | ((value - 8) << 1) | sign);
327 status = BitstreamWriteBits(stream, 14 + 2 + 12, (1 << 12) | ((value - 16) << 1) | sign) ;
339 status = BitstreamWriteBits(stream, numPrefix + vlcnum + 1, (1 << (shift + 1)) | (suffix << 1) | sign);
343 status = BitstreamWriteBits(stream, 28, (1 << 12) | ((value - escape) << 1) | sign);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 74 sign RN 5 label
175 SXTB storeLevel,storeLevel ;// Sign Extend storeLevel to 32 bits
275 M_BD_READ8 sign,1,T1
277 CMP sign,#1
335 ;// armVCM4P2_FillVLDBuffer ( Sign not used as storeLevel is preprocessed)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 74 sign RN 5 label
175 SXTB storeLevel,storeLevel ;// Sign Extend storeLevel to 32 bits
275 M_BD_READ8 sign,1,T1
277 CMP sign,#1
335 ;// armVCM4P2_FillVLDBuffer ( Sign not used as storeLevel is preprocessed)
  /libcore/luni/src/main/java/java/math/
NativeBN.java 67 public static native int sign(long a); method in class:NativeBN
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /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...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_monetary.h 42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
  /system/core/libpixelflinger/
fixed.cpp 54 // shift right 1-bit to make room for the sign bit
323 int32_t sign = a^b^c; local
336 if (sign < 0)
  /system/extras/verity/
KeystoreSigner.java 112 public void sign(PrivateKey privateKey) throws Exception { method in class:BootKeystore
114 byte[] rawSignature = Utils.sign(privateKey, innerKeystore);
134 ks.sign(Utils.loadPEMPrivateKeyFromFile(privkeyFname));
  /bionic/libc/tzcode/
strftime.c 569 char const * sign; local
609 sign = "-";
611 } else sign = "+";
612 pt = _add(sign, pt, ptlim, modifier);

Completed in 1165 milliseconds

1 2 3 4 56 7 8 91011>>