/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/ |
ParticleBodyContact.java | 13 /** The normalized direction from the particle to the body. */
|
/external/icu/icu4c/source/common/unicode/ |
normlzr.h | 40 * - static functions that normalize strings or test if strings are normalized 42 * provides iteration over its normalized form 52 * The input text is not normalized all at once, but incrementally where needed 56 * However, if the entire text is normalized, then the iterator will be 59 * original text that is close to where the normalized characters come from. 69 * At any time, next() returns the next normalized code point (UChar32), 71 * previous() returns the previous normalized code point (UChar32), 77 * needs to be normalized, then these functions will do that. 82 * getIndex() always refers to the position in the input text where the normalized 103 * The normalized results is stored in an internal string buffer, an [all...] |
/external/opencv3/3rdparty/openexr/Imath/ |
ImathFun.cpp | 59 // Positive float, normalized or denormalized. 67 // Negative normalized or denormalized float. 94 // Positive float, normalized or denormalized. 100 // Negative normalized or denormalized float. 129 // Positive double, normalized or denormalized. 137 // Negative normalized or denormalized double. 164 // Positive double, normalized or denormalized. 170 // Negative normalized or denormalized double.
|
/frameworks/rs/driver/ |
rsdVertexArray.h | 41 bool normalized; member in class:RsdVertexArray::Attrib 46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
|
/external/icu/icu4c/source/i18n/ |
uitercollationiterator.cpp | 131 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) { 132 c = normalized[pos++]; 152 U_ASSERT(pos < normalized.length()); 154 if(U16_IS_TRAIL(trail = normalized[pos])) { ++pos; } 192 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) { 193 c = normalized.char32At(pos); 246 c = normalized.char32At(pos - 1); 277 (state >= IN_NORM_ITER_AT_LIMIT && pos == normalized.length())); 291 // The input text segment needed to be normalized. 308 // Collect the characters being checked, in case they need to be normalized [all...] |
utf8collationiterator.h | 28 * Handles normalized UTF-8 text inline, with length or NUL-terminated. 56 * Valid lead surrogates are returned from inside a normalized text segment, 153 * The input text [start..limit[ failed the FCD check and was normalized. 154 * pos tracks the current index in the normalized string. 165 UnicodeString normalized; member in class:FCDUTF8CollationIterator
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
Normalizer2.java | 24 * The primary functions are to produce a normalized string and to detect whether 25 * a string is already normalized. 40 * When the goal is a normalized string, then the text before the boundary 52 * (to avoid replacing already-normalized text) and ucol_nextSortKeyPart() 94 * equivalent text, without having to be fully normalized.<br> 211 * Returns the normalized form of the source string. 213 * @return normalized src 219 // and is already normalized. 231 * Writes the normalized form of the source string to the destination string 235 * @param dest destination string; its contents is replaced with normalized sr [all...] |
/external/eigen/test/eigen2/ |
eigen2_geometry.cpp | 51 m << v0.normalized(), 52 (v0.cross(v1)).normalized(), 53 (v0.cross(v1).cross(v0)).normalized(); 70 VERIFY_IS_APPROX(v0, AngleAxisx(a, v0.normalized()) * v0); 73 m = AngleAxisx(a, v0.normalized()).toRotationMatrix().adjoint(); 74 VERIFY_IS_APPROX(Matrix3::Identity(), m * AngleAxisx(a, v0.normalized())); 75 VERIFY_IS_APPROX(Matrix3::Identity(), AngleAxisx(a, v0.normalized()) * m); 77 q1 = AngleAxisx(a, v0.normalized()); 78 q2 = AngleAxisx(a, v1.normalized()); 115 VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized()) [all...] |
eigen2_geometry_with_eigen2_prefix.cpp | 53 m << v0.normalized(), 54 (v0.cross(v1)).normalized(), 55 (v0.cross(v1).cross(v0)).normalized(); 72 VERIFY_IS_APPROX(v0, AngleAxisx(a, v0.normalized()) * v0); 75 m = AngleAxisx(a, v0.normalized()).toRotationMatrix().adjoint(); 76 VERIFY_IS_APPROX(Matrix3::Identity(), m * AngleAxisx(a, v0.normalized())); 77 VERIFY_IS_APPROX(Matrix3::Identity(), AngleAxisx(a, v0.normalized()) * m); 79 q1 = AngleAxisx(a, v0.normalized()); 80 q2 = AngleAxisx(a, v1.normalized()); 117 VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized()) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NormalizationTransliterator.java | 89 * must not be normalized. 96 StringBuilder normalized = new StringBuilder(); local 114 norm2.normalize(segment, normalized); 115 if(!Normalizer2Impl.UTF16Plus.equal(segment, normalized)) { 116 // replace the input chunk with its normalized form 117 text.replace(prev, start, normalized.toString()); 120 int delta = normalized.length() - (start - prev);
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
NormalizationTransliterator.java | 88 * must not be normalized. 95 StringBuilder normalized = new StringBuilder(); local 113 norm2.normalize(segment, normalized); 114 if(!Normalizer2Impl.UTF16Plus.equal(segment, normalized)) { 115 // replace the input chunk with its normalized form 116 text.replace(prev, start, normalized.toString()); 119 int delta = normalized.length() - (start - prev);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
VertexAttribute.java | 33 /** whether the values are normalized to either -1f and +1f (signed) or 0f and +1f (unsigned) */
34 public final boolean normalized;
field in class:VertexAttribute 67 private VertexAttribute (int usage, int numComponents, int type, boolean normalized, String alias) {
68 this(usage, numComponents, type, normalized, alias, 0);
71 private VertexAttribute (int usage, int numComponents, int type, boolean normalized, String alias, int index) {
75 this.normalized = normalized;
|
/external/v8/src/ |
diy-fp.h | 16 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will 30 // The result will not be normalized. 39 // than other. The result will not be normalized.
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-364374.js | 8 // Locations with 2 underscores are accepted and normalized. 19 // Zone ids with more than 2 parts are accepted and normalized. 23 // 3-part zone IDs are accepted and normalized.
|
/hardware/qcom/display/msm8996/libgralloc/ |
adreno_utils.h | 29 ADRENO_PIXELFORMAT_R10G10B10A2_UNORM = 24, // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES 47 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES 49 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
|
/external/dng_sdk/source/ |
dng_lens_correction.h | 55 // The optical center of the lens in normalized [0,1] coordinates with 58 // of the image's active area. A normalized radius of 1.0 corresponds to 121 /// Parameter r is the destination (i.e., corrected) normalized radius, 122 /// i.e., the normalized Euclidean distance between a corrected pixel 131 /// Parameter r is the source (i.e., uncorrected) normalized radius, 132 /// i.e., normalized Euclidean distance between a corrected pixel 141 /// normalized radius, i.e., the square of the normalized Euclidean 153 /// r2 is the square of the destination (i.e., corrected) normalized 154 /// radius, i.e., the square of the normalized Euclidean distanc [all...] |
/cts/tests/openglperf2/assets/vertex/ |
water | 26 // Multiply to get the final point in normalized screen coordinates.
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
WindowsFakeFileSystem.java | 24 * <li>Filenames are case-insensitive (and normalized to lower-case)</li>
25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
55 * Return the normalized and unique key used to access the file system entry. Windows is case-insensitive,
59 * @return the corresponding normalized key
|
/frameworks/compile/slang/ |
slang_rs_export_type.h | 224 // @T was normalized by calling RSExportType::NormalizeType(). 277 // @T may not be normalized 324 // @T was normalized by calling RSExportType::NormalizeType() before calling 331 bool Normalized = false); 339 bool Normalized) 342 mNormalized(Normalized) { 350 // T is normalized by calling RSExportType::NormalizeType() before 354 // @T may not be normalized 411 // @PT was normalized by calling RSExportType::NormalizeType() before calling 437 bool Normalized, [all...] |
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
AKFS_VNorm.c | 31 const int16 nvec, /*!< Size of normalized vector buffer */ 32 AKFVEC vvec[] /*!< Normalized vector buffer */ 69 const int16 nvec, /*!< Size of normalized vector buffer */ 70 const AKFVEC vvec[], /*!< Normalized vector buffer */
|
/packages/inputmethods/LatinIME/java/res/values/ |
config-spellchecker-thresholds.xml | 22 <!-- Threshold of the normalized score of the best suggestion for the spell checker to declare
|
/device/google/dragon/audio/hal/dsp/ |
crossover.h | 50 * freq1 - The normalized frequency splits low and mid band. 51 * freq2 - The normalized frequency splits mid and high band.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
NormalizedRandomGenerator.java | 21 * This interface represent a normalized random generator for 23 * Normalized generator provide null mean and unit standard deviation scalars.
|
/external/mesa3d/src/mapi/glapi/gen/ |
ARB_vertex_type_2_10_10_10_rev.xml | 171 <param name="normalized" type="GLboolean"/> 178 <param name="normalized" type="GLboolean"/> 185 <param name="normalized" type="GLboolean"/> 192 <param name="normalized" type="GLboolean"/> 199 <param name="normalized" type="GLboolean"/> 206 <param name="normalized" type="GLboolean"/> 213 <param name="normalized" type="GLboolean"/> 220 <param name="normalized" type="GLboolean"/>
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
CallLogInsertionHelperTest.java | 61 * Runs the DefaultCallLogInsertionHelper to determine if it produces the correct normalized 65 * @param expectedNormalized The expected normalized number.
|