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

1234

/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/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/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/eigen/Eigen/src/Core/
H A DDot.h121 MatrixBase<Derived>::normalized() const function in class:Eigen::MatrixBase
139 * \sa norm(), normalized()
154 * This method is analogue to the normalized() method, but it reduces the risk of
160 * \sa stableNorm(), stableNormalize(), normalized()
/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.h32 * Handles normalized text inline, with length or NUL-terminated.
135 * The input text [start..limit[ failed the FCD check and was normalized.
136 * pos tracks the current index in the normalized string.
141 * The input text [start..limit[ failed the FCD check and was normalized.
142 * pos tracks the current index in the normalized string.
155 UnicodeString normalized; member in class:FCDUIterCollationIterator
H A Dutf16collationiterator.h31 * Handles normalized UTF-16 text inline, with length or NUL-terminated.
168 // or the current segment had to be normalized so that
169 // [segmentStart..segmentLimit[ turned into the normalized string,
170 // corresponding to normalized.getBuffer()==start<=pos<=limit==start+normalized.length().
178 UnicodeString normalized; member in class:FCDUTF16CollationIterator
H A Dutf8collationiterator.h31 * Handles normalized UTF-8 text inline, with length or NUL-terminated.
59 * Valid lead surrogates are returned from inside a normalized text segment,
156 * The input text [start..limit[ failed the FCD check and was normalized.
157 * pos tracks the current index in the normalized string.
168 UnicodeString normalized; member in class:FCDUTF8CollationIterator
/external/swiftshader/src/OpenGL/libGL/
H A DVertexDataManager.h36 bool normalized; member in struct:gl::TranslatedAttribute
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DVertexDataManager.h33 bool normalized; member in struct:es1::TranslatedAttribute
/external/swiftshader/src/OpenGL/libGLESv2/
H A DVertexDataManager.h33 bool normalized; member in struct:es2::TranslatedAttribute
/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.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...]
/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/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.cpp539 UnicodeString &normalized, UErrorCode *pErrorCode) {
557 normalized.setTo(FALSE, str.getBuffer(), spanQCYes);
558 n2->normalizeSecondAndAppend(normalized, unnormalized, *pErrorCode);
538 _normalize(const Normalizer2 *n2, const UChar *s, int32_t length, UnicodeString &normalized, UErrorCode *pErrorCode) argument
/external/jsoncpp/src/jsontestrunner/
H A Dmain.cpp31 std::string normalized = s.substr(0, exponentStartIndex); local
40 return normalized + exponent;
/external/jsoncpp/src/lib_json/
H A Djson_writer.cpp450 std::string normalized; local
451 normalized.reserve(text.length());
461 normalized += '\n';
463 normalized += c;
465 return normalized;
666 std::string normalized; local
667 normalized.reserve(text.length());
677 normalized += '\n';
679 normalized += c;
681 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/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::__anon4570::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...]

Completed in 3870 milliseconds

1234