HomeSort by relevance Sort by last modified time
    Searched defs:norm (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
autocorr.cpp 171 norm = normalized autocorrelation at lag zero of type Word16
207 Word16 i, j, norm;
252 norm = norm_l (sum);
253 sum = L_shl (sum, norm);
267 sum = L_shl (sum, norm);
271 norm = sub (norm, overfl_shft);
273 return norm;
311 register Word16 norm; local
414 norm = norm_l(sum)
416 sum <<= norm; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
autocorr.c 38 Word32 i, norm, shift; local
66 norm = norm_l(L_sum);
67 shift = 4 - (norm >> 1);
94 norm = norm_l(L_sum);
95 L_sum = (L_sum << norm);
115 L_sum1 = L_sum1<<norm;
116 L_sum = L_sum<<norm;
pitch_f4.c 171 Word32 corr, exp_corr, norm, exp, scale; local
232 norm = extract_h(L_tmp);
236 L_tmp = vo_L_mult(corr, norm);
  /external/dropbear/libtommath/
bn_mp_div.c 106 int res, n, t, i, norm, neg; local
152 norm = mp_count_bits(&y) % DIGIT_BIT;
153 if (norm < (int)(DIGIT_BIT-1)) {
154 norm = (DIGIT_BIT-1) - norm;
155 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
158 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
162 norm = 0;
272 if ((res = mp_div_2d (&x, norm, &x, NULL)) != MP_OKAY) {
  /external/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /libcore/luni/src/main/java/java/util/
Random.java 155 double norm = Math.sqrt(-2 * Math.log(s) / s); local
156 nextNextGaussian = v2 * norm; // should that not be norm instead
159 return v1 * norm; // should that not be norm instead of multiplier
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /development/samples/GlobalTime/src/com/android/globaltime/
LatLongSphere.java 83 float norm = 1.0f / Shape.length(x, y, z); local
84 normals[nidx++] = toFixed(x * norm);
85 normals[nidx++] = toFixed(y * norm);
86 normals[nidx++] = toFixed(z * norm);
Clock.java 83 float norm = (radius / 2.0f) / (float) Math.sqrt(ox * ox + oy * oy); local
84 ox *= norm;
85 oy *= norm;
Shape.java 126 float norm = 1.0f / length; local
127 v[0] *= norm;
128 v[1] *= norm;
129 v[2] *= norm;
  /frameworks/base/core/java/android/util/
MathUtils.java 147 public static float norm(float start, float stop, float value) { method in class:MathUtils
  /external/chromium/third_party/icu/source/test/intltest/
tscoll.cpp 155 UColAttributeValue norm = ucol_getAttribute(myCollation, UCOL_NORMALIZATION_MODE, &status); local
193 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
227 if(norm != UCOL_ON && !quick) {
231 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
tstnorm.cpp 159 Normalizer* norm = new Normalizer("", UNORM_NFD); local
164 backAndForth(norm, canonTests[i][0]);
168 norm->setMode(UNORM_NFC);
170 backAndForth(norm, canonTests[i][0]);
173 delete norm;
178 Normalizer* norm = new Normalizer("", UNORM_NFD); local
179 iterateTest(norm, canonTests, ARRAY_LENGTH(canonTests), 1);
181 delete norm;
186 Normalizer* norm = new Normalizer("", UNORM_NFKD); local
187 iterateTest(norm, compatTests, ARRAY_LENGTH(compatTests), 1)
196 Normalizer* norm = new Normalizer("", UNORM_NFC); local
206 Normalizer* norm = new Normalizer("", UNORM_NFKC); local
226 Normalizer* norm = new Normalizer("", UNORM_NFC); local
248 Normalizer* norm = new Normalizer("", UNORM_NFD); local
    [all...]
  /external/chromium/third_party/icu/source/tools/gennorm/
gennorm.c 427 Norm norm; local
443 uprv_memset(&norm, 0, sizeof(Norm));
449 norm.combiningIndex=0xffff;
467 norm.udataCC=(uint8_t)value;
502 norm.lenNFKD=(uint8_t)length;
503 norm.nfkd=decomp;
511 norm.lenNFD=(uint8_t)length;
512 norm.nfd=decomp
    [all...]
  /external/icu4c/test/intltest/
tscoll.cpp 158 UColAttributeValue norm = ucol_getAttribute(myCollation, UCOL_NORMALIZATION_MODE, &status); local
196 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
230 if(norm != UCOL_ON && !quick) {
234 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
  /external/webkit/WebCore/platform/graphics/skia/
ImageSkia.cpp 269 FloatRect norm = rect; local
270 if (norm.width() < 0) {
271 norm.setX(norm.x() + norm.width());
272 norm.setWidth(-norm.width());
274 if (norm.height() < 0) {
275 norm.setY(norm.y() + norm.height())
    [all...]
  /external/stlport/src/
num_get_float.cpp 232 static void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo) {
233 norm = 0;
247 norm = 1;
300 int norm; /* number of bits of normalization */ local
308 _Stl_norm_and_round(p, norm, prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
315 _Stl_norm_and_round(p, norm, prodhi, prodlo);
316 bexp += _Stl_twoexp[lo] - norm;
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 232 static void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo) {
233 norm = 0;
247 norm = 1;
300 int norm; /* number of bits of normalization */ local
308 _Stl_norm_and_round(p, norm, prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
315 _Stl_norm_and_round(p, norm, prodhi, prodlo);
316 bexp += _Stl_twoexp[lo] - norm;
  /external/chromium/third_party/icu/source/i18n/
ucol_res.cpp 353 UColAttributeValue norm; local
382 norm = normalizationMode;
476 ucol_setAttribute(result, UCOL_NORMALIZATION_MODE, norm, status);
    [all...]
  /external/icu4c/i18n/
ucol_res.cpp 352 UColAttributeValue norm; local
376 norm = normalizationMode;
470 ucol_setAttribute(result, UCOL_NORMALIZATION_MODE, norm, status);
    [all...]
  /external/libvpx/vp8/encoder/
bitstream.c 171 static const unsigned int norm[256] = variable
224 shift = norm[range];
284 shift = norm[range];
439 shift = norm[range];
499 shift = norm[range];
643 shift = norm[range];
703 shift = norm[range];
    [all...]
  /external/skia/src/core/
SkStroke.cpp 254 SkVector norm, unit; local
257 this->quad_to(&tmp[0], normalAB, unitNormalAB, &norm, &unit, subDivide);
258 this->quad_to(&tmp[2], norm, unit, normalBC, unitNormalBC, subDivide);
312 SkVector norm, unit, dummy, unitDummy; local
315 this->cubic_to(&tmp[0], normalAB, unitNormalAB, &norm, &unit,
319 this->cubic_to(&tmp[3], norm, unit, &dummy, &unitDummy, subDivide);
  /external/svox/pico/lib/
picosig2.c 1007 picoos_int32 *norm; local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
callcoll.c 279 UColAttributeValue norm = ucol_getAttribute(myCollation, UCOL_NORMALIZATION_MODE, &status); local
311 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
347 if(QUICK <= 0 && norm != UCOL_ON) {
351 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, norm, &status);
    [all...]
cnormtst.c 703 UChar norm[100]; local
712 norm + normsize, 100 - normsize, &status);
727 if (nfdsize != normsize || u_memcmp(nfd, norm, nfdsize) != 0) {
    [all...]

Completed in 1647 milliseconds

1 2 3