Searched defs:normalized (Results 1 - 25 of 57) sorted by relevance

123

/external/deqp/framework/delibs/debase/
H A DdeInt32.c132 deUint32 normalized = (deUint32)a << shift; /* Highest bit is always 1. */ local
133 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. */
145 tmp = deSafeMuluAsr32(result, normalized, 31);
149 tmp = deSafeMuluAsr32(result, normalized, 31);
/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/eigen/Eigen/src/Core/
H A DDot.h139 MatrixBase<Derived>::normalized() const function in class:Eigen::MatrixBase
151 * \sa norm(), normalized()
H A DVectorwiseOp.h535 /** \returns an expression where each column of row of the referenced matrix are normalized.
537 * \sa MatrixBase::normalized(), normalize()
542 normalized() const { return m_matrix.cwiseQuotient(extendedToOpposite(this->norm())); } function in class:Eigen::VectorwiseOp
546 * \sa MatrixBase::normalize(), normalized()
549 m_matrix = this->normalized();
/external/icu/icu4c/source/i18n/
H A Dnortrans.cpp113 * must not be normalized.
118 UnicodeString input, normalized;
124 fNorm2.normalize(input, normalized, status);
126 text.handleReplaceBetween(start, limit, normalized);
128 int32_t delta = normalized.length() - length;
136 UnicodeString normalized; local
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
159 // replace the input chunk with its normalized form
160 text.handleReplaceBetween(prev, start, normalized);
[all...]
H A Duitercollationiterator.h29 * Handles normalized text inline, with length or NUL-terminated.
132 * The input text [start..limit[ failed the FCD check and was normalized.
133 * pos tracks the current index in the normalized string.
138 * The input text [start..limit[ failed the FCD check and was normalized.
139 * pos tracks the current index in the normalized string.
152 UnicodeString normalized; member in class:FCDUIterCollationIterator
H A Dutf16collationiterator.h29 * Handles normalized UTF-16 text inline, with length or NUL-terminated.
166 // or the current segment had to be normalized so that
167 // [segmentStart..segmentLimit[ turned into the normalized string,
168 // corresponding to normalized.getBuffer()==start<=pos<=limit==start+normalized.length().
176 UnicodeString normalized; member in class:FCDUTF16CollationIterator
H A Dutf8collationiterator.h28 * 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/skia/src/gpu/gl/
H A DGrGLVertexArray.cpp17 GrGLboolean normalized,
30 array->fNormalized != normalized ||
38 normalized,
44 array->fNormalized = normalized;
12 set(const GrGLGpu* gpu, int index, GrGLVertexBuffer* buffer, GrGLint size, GrGLenum type, GrGLboolean normalized, GrGLsizei stride, GrGLvoid* offset) argument
/external/harfbuzz_ng/src/
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...]
H A Dhb-icu.cc189 UChar utf16[4], normalized[5]; local
202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
205 if (u_countChar32 (normalized, len) == 1) {
206 U16_GET_UNSAFE (normalized, 0, *ab);
248 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
267 len = u_countChar32 (normalized, len);
270 U16_GET_UNSAFE (normalized,
318 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDIterCollationIterator.java83 pos != normalized.length()) {
84 c = normalized.codePointAt(pos);
137 c = normalized.codePointBefore(pos);
173 pos != normalized.length()) {
174 c = normalized.charAt(pos++);
194 assert(pos < normalized.length());
196 if(Character.isLowSurrogate(trail = normalized.charAt(pos))) { ++pos; }
225 (state.compareTo(State.IN_NORM_ITER_AT_LIMIT) >= 0 && pos == normalized.length()));
239 // The input text segment needed to be normalized.
258 // Collect the characters being checked, in case they need to be normalized
448 private StringBuilder normalized; field in class:FCDIterCollationIterator
[all...]
H A DFCDUTF16CollationIterator.java227 // The input text segment needed to be normalized.
307 // The input text segment needed to be normalized.
364 if(normalized == null) {
365 normalized = new StringBuilder();
368 nfcImpl.decompose(rawSeq, from, to, normalized, to - from);
373 seq = normalized;
375 limit = start + normalized.length();
400 // or the current segment had to be normalized so that
401 // rawSeq[segmentStart..segmentLimit[ turned into the normalized string,
402 // corresponding to seq==normalized
410 private StringBuilder normalized; field in class:FCDUTF16CollationIterator
[all...]
/external/mesa3d/src/glx/
H A Dindirect_vertex_array_priv.h86 GLboolean normalized; member in struct:array_state
/external/icu/icu4c/source/common/
H A Dunormcmp.cpp537 UnicodeString &normalized, UErrorCode *pErrorCode) {
555 normalized.setTo(FALSE, str.getBuffer(), spanQCYes);
556 n2->normalizeSecondAndAppend(normalized, unnormalized, *pErrorCode);
536 _normalize(const Normalizer2 *n2, const UChar *s, int32_t length, UnicodeString &normalized, UErrorCode *pErrorCode) argument
/external/jsoncpp/src/jsontestrunner/
H A Dmain.cpp30 std::string normalized = s.substr( 0, exponentStartIndex ); local
37 return normalized + exponent;
/external/jsoncpp/src/lib_json/
H A Djson_writer.cpp531 std::string normalized; local
532 normalized.reserve( text.length() );
543 normalized += '\n';
546 normalized += c;
548 return normalized;
812 std::string normalized; local
813 normalized.reserve( text.length() );
824 normalized += '\n';
827 normalized += c;
829 return normalized;
[all...]
/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/state_tracker/
H A Dst_atom_array.c212 GLboolean normalized, GLboolean integer)
229 if (normalized)
234 if (normalized)
241 if (normalized)
246 if (normalized)
257 assert(normalized);
272 else if (normalized) {
211 st_pipe_vertex_format(GLenum type, GLuint size, GLenum format, GLboolean normalized, GLboolean integer) argument
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DQuaternion.h150 * \sa normalized(), MatrixBase::normalize() */
152 /** \returns a normalized version of \c *this
153 * \sa normalize(), MatrixBase::normalized() */
154 inline Quaternion normalized() const { return Quaternion(m_coeffs.normalized()); } function in class:Eigen::Quaternion
334 * Note that the two input vectors do \b not have to be normalized.
340 Vector3 v0 = a.normalized();
341 Vector3 v1 = b.normalized();
370 * and/or the quaternion is normalized, then it is enough to use the conjugate.
389 * if the quaternion is normalized
[all...]
/external/jsoncpp/src/test_lib_json/
H A Dmain.cpp123 std::string normalized = s.substr( 0, exponentStartIndex ); local
130 return normalized + exponent;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_draw_upload.c214 * Given vertex array type/size/format/normalized info, return
219 GLenum format, bool normalized, bool integer )
222 printf("type %s size %d normalized %d\n",
223 _mesa_lookup_enum_by_nr(type), size, normalized);
236 } else if (normalized) {
218 get_surface_type( GLenum type, GLuint size, GLenum format, bool normalized, bool integer ) argument
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayObjectTests.cpp66 GLboolean normalized; member in struct:deqp::gles3::Functional::__anon3451::Attribute
92 , normalized (GL_FALSE)
209 << "\tGL_VERTEX_ATTRIB_ARRAY_NORMALIZED : " << (state.attributes[attribNdx].normalized ? "GL_TRUE" : "GL_FALSE") << "\n"
452 else if (state.attributes[attribNdx].type != GL_FLOAT && !state.attributes[attribNdx].normalized)
503 if (state.attributes[0].normalized || state.attributes[0].type == GL_FLOAT)
561 GLU_CHECK_CALL(glVertexAttribPointer(attribNdx, state.attributes[attribNdx].size, state.attributes[attribNdx].type, state.attributes[attribNdx].normalized, state.attributes[attribNdx].stride, (const GLvoid*)((GLintptr)state.attributes[attribNdx].offset)));
727 << "\tGL_VERTEX_ATTRIB_ARRAY_NORMALIZED : " << (state.attributes[attribNdx].normalized ? "GL_TRUE" : "GL_FALSE") << "\n"
767 m_spec.state.attributes[attribNdx].normalized = m_random.getBool();
785 m_spec.vao.attributes[attribNdx].normalized = m_random.getBool();
1028 else if (state.attributes[attribNdx].type != GL_FLOAT && !state.attributes[attribNdx].normalized)
[all...]
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h122 * \sa normalized(), MatrixBase::normalize() */
124 /** \returns a normalized copy of \c *this
125 * \sa normalize(), MatrixBase::normalized() */
126 inline Quaternion<Scalar> normalized() const { return Quaternion<Scalar>(coeffs().normalized()); } function in class:Eigen::QuaternionBase
206 * \warning Operations interpreting the quaternion as rotation have undefined behavior if the quaternion is not normalized.
521 * be normalized, otherwise the result is undefined.
566 * Note that the two input vectors do \b not have to be normalized, and
575 Vector3 v0 = a.normalized();
576 Vector3 v1 = b.normalized();
[all...]
/external/expat/lib/
H A Dxmltok.h122 char normalized; member in struct:__anon4874

Completed in 673 milliseconds

123