/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;
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/test_types/ |
text_diff.py | 55 norm = output.replace("\r\r\n", "\r\n").strip("\r\n").replace( 57 return norm + "\n"
|
/frameworks/base/libs/rs/ |
rsComponent.cpp | 33 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) 37 mNormalized = norm;
|
/external/libxml2/ |
xmlschemastypes.c | 2131 xmlChar *norm = NULL; local 5919 xmlSchemaValPtr norm; local 5948 xmlSchemaValPtr norm; local 5976 xmlSchemaValPtr norm; local [all...] |
/external/icu4c/test/intltest/ |
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...] |
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);
|
ssearch.cpp | 213 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==NULL || *norm=="ON" || *norm=="OFF") [all...] |
/development/samples/GlobalTime/src/com/android/globaltime/ |
Clock.java | 83 float norm = (radius / 2.0f) / (float) Math.sqrt(ox * ox + oy * oy); local 84 ox *= norm; 85 oy *= norm;
|
/external/icu4c/test/perf/collationperf/ |
readme.html | 48 -norm Normalizing mode on
|
/external/srec/srec/include/ |
c42mul.h | 102 void convert_adjustment_to_imelda(norm_info *norm, preprocessed *prep);
|
/frameworks/base/docs/html/guide/developing/tools/ |
draw9patch.jd | 10 <img src="{@docRoot}images/draw9patch-norm.png" style="float:right" alt="" height="300" width="341"
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
DriverCall.java | 108 + (isMpty ? "conf" : "norm") + ","
|
/external/icu4c/samples/strsrch/ |
strsrch.cpp | 17 "-norm Normalizing mode on\n" 79 {"-norm", OptSpec::FLAG, &opt_norm},
|
/external/neven/Embedded/common/src/b_TensorEm/ |
Flt16Vec2D.h | 94 /** returns square norm of vector; return bbp is ptrA->bbpE * 2 */ 97 /** returns norm of vector; return bbp is ptrA->bbpE*/
|
Flt16Vec3D.h | 100 /** returns square norm of vector; return bbp is ptrA->bbpE * 2 */ 103 /** returns norm of vector; return bbp is ptrA->bbpE*/
|
Int16Vec2D.h | 89 /** returns square norm of vector */ 92 /** returns norm of vector */
|
Int16Vec3D.h | 81 /** returns square norm of vector */ 84 /** returns norm of vector */
|
Flt16Vec.h | 85 /** returns norm of vector without exponent */ 132 /** normalizes vector (euclidean norm) */
|
/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/icu4c/test/testdata/ |
ssearch.xml | 14 norm (ON | OFF) "OFF" 229 <test-case id="test32" strength="TERTIARY" norm="ON"> 235 <test-case id="test32a" strength="TERTIARY" norm="OFF">
|
/bionic/libc/kernel/common/linux/ |
videodev.h | 57 __u16 norm; member in struct:video_channel
|
/external/dhcpcd/ |
net.h | 86 * though as the norm is to just have one default route, and an IPV4LL route.
|
/external/kernel-headers/original/linux/ |
time.h | 86 * Returns true if the timespec is norm, false if denorm:
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
hp_max.cpp | 88 cor_hp_max = pointer to max high-pass filtered norm. correlation (Word16) 92 cor_hp_max contains max high-pass filtered norm. correlation (Word16) 134 Word16 *cor_hp_max) // o : max high-pass filtered norm. correlation 243 Word16 *cor_hp_max, /* o : max high-pass filtered norm. correlation */
|
/frameworks/base/core/java/android/util/ |
MathUtils.java | 147 public static float norm(float start, float stop, float value) { method in class:MathUtils
|