Searched refs:norm (Results 1 - 25 of 33) sorted by relevance

12

/external/svox/pico/lib/
H A Dpicosig2.c1007 picoos_int32 *norm; local
1010 norm = sig_inObj->norm_window_p;
1012 norm[0] = 80224;
1013 norm[1] = 320832;
1014 norm[2] = 721696;
1015 norm[3] = 1282560;
1016 norm[4] = 2003104;
1017 norm[5] = 2882880;
1018 norm[6] = 3921376;
1019 norm[
[all...]
/external/icu4c/tools/gennorm/
H A Dstore.c97 typedef void EnumTrieFn(void *context, uint32_t code, Norm *norm);
258 Norm *norm=getNorm(code); local
259 if(norm==NULL) {
262 return norm->udataCC;
603 decompStoreNewNF(uint32_t code, Norm *norm) { argument
614 if((length=norm->lenNFD)!=0) {
617 s32=norm->nfd;
618 } else if((length=norm->lenNFKD)!=0) {
621 s32=norm->nfkd;
671 /* assume that norm
702 Norm *norm; member in struct:DecompSingle
710 decompWithSingleFn(void *context, uint32_t code, Norm *norm) argument
809 storeNorm(uint32_t code, Norm *norm) argument
891 Norm *norm; local
1057 postParseFn(void *context, uint32_t code, Norm *norm) argument
1144 make32BitNorm(Norm *norm) argument
1346 makeCanonSetFn(void *context, uint32_t code, Norm *norm) argument
1567 getSkippableFlags(const Norm *norm) argument
1624 Norm *norm; local
[all...]
H A Dgennorm.c427 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;
530 (long)code, norm.udataCC, (long)norm
[all...]
H A Dgennorm.h75 storeNorm(uint32_t code, Norm *norm);
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
H A Dautocorr.cpp171 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
416 sum <<= norm; local
[all...]
/external/webkit/WebCore/platform/graphics/skia/
H A DImageSkia.cpp269 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
[all...]
/external/icu4c/test/intltest/
H A Dtstnrapi.cpp27 Normalizer norm(iter, UNORM_NFC);
28 if(norm.next()!=0xe4) {
33 Normalizer copy(norm);
75 norm.setIndexOnly(3);
76 if(norm.current()!=0x4e3d) {
135 norm.setMode(UNORM_NONE);
136 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
H A Dtstnorm.cpp159 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, compatTest
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...]
H A Dtscoll.cpp155 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);
H A Dssearch.cpp213 const UnicodeString *norm = testCase->getAttribute("norm"); local
214 TEST_ASSERT (norm==NULL || *norm=="ON" || *norm=="OFF");
215 if (norm!=NULL && *norm=="ON") {
561 const UnicodeString *norm = testCase->getAttribute("norm"); local
562 TEST_ASSERT (norm
[all...]
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/
H A Dtext_diff.py55 norm = output.replace("\r\r\n", "\r\n").strip("\r\n").replace(
57 return norm + "\n"
/external/dropbear/libtommath/
H A Dbn_mp_div.c106 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/srec/srec/crec/
H A Dget_fram.c438 void convert_adjustment_to_imelda(norm_info *norm, preprocessed *prep) argument
444 ASSERT(norm);
446 fram[ii] = (imeldata) norm->adjust[ii]; /* TODO: review types */
453 norm->imelda_adjust[ii] = fram[ii];
456 for (ii = 0; ii < norm->dim; ii++)
457 log_report("%d ", (int)norm->imelda_adjust[ii]);
460 norm->adj_valid = True;
/external/libxml2/
H A Dxmlschemastypes.c2131 xmlChar *norm = NULL; local
2154 norm = xmlSchemaWhiteSpaceReplace(value);
2156 norm = xmlSchemaCollapseString(value);
2157 if (norm != NULL)
2158 value = norm;
2206 norm = xmlSchemaCollapseString(value);
2208 norm = xmlSchemaWhiteSpaceReplace(value);
2209 if (norm != NULL)
2210 value = norm;
2225 norm
5919 xmlSchemaValPtr norm; local
5948 xmlSchemaValPtr norm; local
5976 xmlSchemaValPtr norm; local
[all...]
/external/stlport/src/
H A Dnum_get_float.cpp232 static void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo) { argument
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/srec/srec/include/
H A Dc42mul.h102 void convert_adjustment_to_imelda(norm_info *norm, preprocessed *prep);
/external/skia/src/core/
H A DSkStroke.cpp254 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/kernel-headers/original/linux/
H A Dvideodev.h60 __u16 norm; /* Norm set by channel */ member in struct:video_channel
73 #define VIDEO_TUNER_NORM 16 /* Tuner can set norm */
/external/quake/quake/src/QW/dxsdk/sdk/inc/
H A Dd3drmdef.h325 LPD3DVECTOR norm);
/external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
H A DD3DRMDEF.H325 LPD3DVECTOR norm);
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dlibtommath.c1679 int res, n, t, i, norm, neg; local
1725 norm = mp_count_bits(&y) % DIGIT_BIT;
1726 if (norm < (int)(DIGIT_BIT-1)) {
1727 norm = (DIGIT_BIT-1) - norm;
1728 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
1731 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
1735 norm = 0;
1845 mp_div_2d (&x, norm, &x, NULL);
/external/icu4c/tools/gensprep/
H A DfilterRFC3454.pl58 "--normalize" => \$norm,
79 if(defined $norm) {
/external/qemu/android/skin/
H A Dtrackball.c89 norm( int dx, int dy ) function
420 if ( norm( ball->acc_x, ball->acc_y ) > ball->acc_threshold )
/external/icu4c/test/cintltst/
H A Dcallcoll.c279 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);
/external/icu4c/i18n/
H A Ducol_res.cpp353 UColAttributeValue norm; local
382 norm = normalizationMode;
476 ucol_setAttribute(result, UCOL_NORMALIZATION_MODE, norm, status);

Completed in 246 milliseconds

12