Searched refs:normalized (Results 1 - 25 of 207) sorted by relevance

123456789

/external/swiftshader/src/Renderer/
H A DStream.hpp26 STREAMTYPE_COLOR, // 4 normalized unsigned bytes, ZYXW order
28 STREAMTYPE_DEC3N, // 3 normalized signed 10-bit fields
61 Stream &define(StreamType type, unsigned int count, bool normalized = false)
65 this->normalized = normalized;
70 Stream &define(const void *buffer, StreamType type, unsigned int count, bool normalized = false)
75 this->normalized = normalized;
89 normalized = false;
101 bool normalized; member in struct:sw::Stream
[all...]
/external/harfbuzz_ng/src/
H A Dhb-icu.cc190 UChar utf16[4], normalized[5]; local
203 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
206 if (u_countChar32 (normalized, len) == 1) {
207 U16_GET_UNSAFE (normalized, 0, *ab);
249 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
264 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
268 len = u_countChar32 (normalized, len);
271 U16_GET_UNSAFE (normalized,
319 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
[all...]
H A Dhb-glib.cc254 gchar *normalized; local
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
261 len = g_utf8_strlen (normalized, -1);
266 *ab = g_utf8_get_char (normalized);
272 g_free (normalized);
291 gchar *normalized; local
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
297 len = g_utf8_strlen (normalized, -1);
302 *a = g_utf8_get_char (normalized);
306 *a = g_utf8_get_char (normalized);
[all...]
/external/eigen/test/
H A Dgeo_quaternion.cpp80 q1 = AngleAxisx(a, v0.normalized());
81 q2 = AngleAxisx(a, v1.normalized());
117 && (aa.axis() - v1.normalized()).norm() < Scalar(1.99)
118 && (aa.axis() + v1.normalized()).norm() < Scalar(1.99))
124 VERIFY_IS_APPROX( v2.normalized(),(q2.setFromTwoVectors(v1, v2)*v1).normalized());
125 VERIFY_IS_APPROX( v1.normalized(),(q2.setFromTwoVectors(v1, v1)*v1).normalized());
126 VERIFY_IS_APPROX(-v1.normalized(),(q2.setFromTwoVectors(v1,-v1)*v1).normalized());
[all...]
/external/icu/icu4c/source/i18n/
H A Dnortrans.cpp115 * must not be normalized.
120 UnicodeString input, normalized;
126 fNorm2.normalize(input, normalized, status);
128 text.handleReplaceBetween(start, limit, normalized);
130 int32_t delta = normalized.length() - length;
138 UnicodeString normalized; local
156 fNorm2.normalize(segment, normalized, errorCode);
160 if(segment != normalized) {
161 // replace the input chunk with its normalized form
162 text.handleReplaceBetween(prev, start, normalized);
[all...]
H A Duitercollationiterator.cpp133 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) {
134 c = normalized[pos++];
154 U_ASSERT(pos < normalized.length());
156 if(U16_IS_TRAIL(trail = normalized[pos])) { ++pos; }
194 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) {
195 c = normalized.char32At(pos);
248 c = normalized.char32At(pos - 1);
279 (state >= IN_NORM_ITER_AT_LIMIT && pos == normalized.length()));
293 // The input text segment needed to be normalized.
310 // Collect the characters being checked, in case they need to be normalized
[all...]
H A Dutf8collationiterator.cpp213 } else if(state == IN_NORMALIZED && pos != normalized.length()) {
214 c = normalized[pos++];
250 U_ASSERT(pos < normalized.length());
252 if(U16_IS_TRAIL(trail = normalized[pos])) { ++pos; }
294 } else if(state == IN_NORMALIZED && pos != normalized.length()) {
295 c = normalized.char32At(pos);
333 c = normalized.char32At(pos - 1);
364 (state == IN_NORMALIZED && pos == normalized.length()));
378 // The input text segment needed to be normalized.
392 // Collect the characters being checked, in case they need to be normalized
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DFCDIterCollationIterator.java87 pos != normalized.length()) {
88 c = normalized.codePointAt(pos);
141 c = normalized.codePointBefore(pos);
177 pos != normalized.length()) {
178 c = normalized.charAt(pos++);
198 assert(pos < normalized.length());
200 if(Character.isLowSurrogate(trail = normalized.charAt(pos))) { ++pos; }
229 (state.compareTo(State.IN_NORM_ITER_AT_LIMIT) >= 0 && pos == normalized.length()));
243 // The input text segment needed to be normalized.
262 // Collect the characters being checked, in case they need to be normalized
452 private StringBuilder normalized; field in class:FCDIterCollationIterator
[all...]
H A DFCDUTF16CollationIterator.java241 // The input text segment needed to be normalized.
321 // The input text segment needed to be normalized.
378 if(normalized == null) {
379 normalized = new StringBuilder();
382 nfcImpl.decompose(rawSeq, from, to, normalized, to - from);
387 seq = normalized;
389 limit = start + normalized.length();
414 // or the current segment had to be normalized so that
415 // rawSeq[segmentStart..segmentLimit[ turned into the normalized string,
416 // corresponding to seq==normalized
424 private StringBuilder normalized; field in class:FCDUTF16CollationIterator
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDIterCollationIterator.java85 pos != normalized.length()) {
86 c = normalized.codePointAt(pos);
139 c = normalized.codePointBefore(pos);
175 pos != normalized.length()) {
176 c = normalized.charAt(pos++);
196 assert(pos < normalized.length());
198 if(Character.isLowSurrogate(trail = normalized.charAt(pos))) { ++pos; }
227 (state.compareTo(State.IN_NORM_ITER_AT_LIMIT) >= 0 && pos == normalized.length()));
241 // The input text segment needed to be normalized.
260 // Collect the characters being checked, in case they need to be normalized
450 private StringBuilder normalized; field in class:FCDIterCollationIterator
[all...]
H A DFCDUTF16CollationIterator.java239 // The input text segment needed to be normalized.
319 // The input text segment needed to be normalized.
376 if(normalized == null) {
377 normalized = new StringBuilder();
380 nfcImpl.decompose(rawSeq, from, to, normalized, to - from);
385 seq = normalized;
387 limit = start + normalized.length();
412 // or the current segment had to be normalized so that
413 // rawSeq[segmentStart..segmentLimit[ turned into the normalized string,
414 // corresponding to seq==normalized
422 private StringBuilder normalized; field in class:FCDUTF16CollationIterator
[all...]
/external/eigen/unsupported/test/
H A Dalignedvector3.cpp55 VERIFY_IS_APPROX(f2.normalized(),r2.normalized());
57 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized());
/external/swiftshader/src/OpenGL/libGLESv2/
H A DVertexArray.cpp68 bool normalized, GLsizei stride, const void *pointer)
74 mVertexAttributes[attributeIndex].mNormalized = normalized;
H A DVertexArray.h41 bool normalized, GLsizei stride, const void *pointer);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DCorrelatedRandomVectorGenerator.java41 * {@link NormalizedRandomGenerator normalized values} like {@link
72 /** Storage for the normalized vector. */
73 private final double[] normalized; field in class:CorrelatedRandomVectorGenerator
88 * @param generator underlying generator for uncorrelated normalized
111 normalized = new double[rank];
121 * @param generator underlying generator for uncorrelated normalized
139 normalized = new double[rank];
143 /** Get the underlying normalized components generator.
288 normalized[i] = generator.nextNormalizedDouble();
296 correlated[i] += root.getEntry(i, j) * normalized[
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNormalizationTransliterator.java98 * must not be normalized.
105 StringBuilder normalized = new StringBuilder();
123 norm2.normalize(segment, normalized);
124 if(!Normalizer2Impl.UTF16Plus.equal(segment, normalized)) {
125 // replace the input chunk with its normalized form
126 text.replace(prev, start, normalized.toString());
129 int delta = normalized.length() - (start - prev);
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNormalizationTransliterator.java97 * must not be normalized.
104 StringBuilder normalized = new StringBuilder();
122 norm2.normalize(segment, normalized);
123 if(!Normalizer2Impl.UTF16Plus.equal(segment, normalized)) {
124 // replace the input chunk with its normalized form
125 text.replace(prev, start, normalized.toString());
128 int delta = normalized.length() - (start - prev);
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
H A DAbstractFakeFileSystem.groovy56 def normalized = normalize(entry.path)
57 if (entries.get(normalized) != null) {
58 throw new FileSystemException("The path [" + normalized + "] already exists")
62 String parent = getParent(normalized)
67 entries.put(normalized, entry)
406 * Return the standard, normalized form of the path.
450 def normalized = normalize(path)
451 int separatorIndex = normalized.lastIndexOf(this.separator)
452 return (separatorIndex == -1) ? normalized : normalized
[all...]
/external/deqp/framework/delibs/debase/
H A DdeInt32.c152 deUint32 normalized = (deUint32)a << shift; /* Highest bit is always 1. */ local
153 int lookupNdx = (normalized >> (31 - RCP_LUT_BITS)) & ((1<<RCP_LUT_BITS)-1); /* Discard high bit, leave 8 next highest bits to lowest bits of normalized. */
165 tmp = deSafeMuluAsr32(result, normalized, 31);
169 tmp = deSafeMuluAsr32(result, normalized, 31);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom.h77 GLboolean normalized, GLboolean integer);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c130 desc->channel[chan].normalized != type.norm) {
159 boolean normalized; local
190 normalized = FALSE;
215 if (desc->channel[i].normalized) {
217 normalized = TRUE;
241 * {255.0, 255.0, 255.0, 255.0}. Next, if the pixel values are normalized
245 if (normalized)
274 boolean normalized; local
300 normalized = FALSE;
317 if (desc->channel[i].normalized) {
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_attrib_tmp.h159 #define ATTR_UI(val, type, normalized, attr, arg) do { \
161 if (normalized) { \
167 if (normalized) { \
176 #define ATTR_UI_INDEX(val, type, normalized, index, arg) do { \
178 ATTR_UI(val, (type), normalized, 0, (arg)); \
180 ATTR_UI(val, (type), normalized, VBO_ATTRIB_GENERIC0 + (index), (arg)); \
1022 TAG(VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, argument
1026 ATTR_UI_INDEX(1, type, normalized, index, value);
1030 TAG(VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, argument
1034 ATTR_UI_INDEX(2, type, normalized, inde
1038 VertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) argument
1046 VertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) argument
1054 VertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1062 VertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1070 VertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
1078 VertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) argument
[all...]
/external/eigen/demos/opengl/
H A Dcamera.cpp109 camAxes.col(2) = (-newDirection).normalized();
110 camAxes.col(0) = up.cross( camAxes.col(2) ).normalized();
111 camAxes.col(1) = camAxes.col(2).cross( camAxes.col(0) ).normalized();
123 setDirection(newDirection.normalized());
H A Dtrackball.cpp24 Vector3f axis = mLastPoint3D.cross(newPoint3D).normalized();
/external/mesa3d/src/glx/
H A Dindirect_vertex_array_priv.h86 GLboolean normalized; member in struct:array_state

Completed in 584 milliseconds

123456789