Searched defs:normalized (Results 1 - 25 of 96) 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/mesa3d/src/compiler/nir/
H A Dnir_normalize_cubemap_coords.c64 nir_ssa_def *normalized = nir_fmul(b, orig_coord, nir_frcp(b, norm)); local
66 /* Array indices don't have to be normalized, so make a new vector
70 normalized = nir_vec4(b,
71 nir_channel(b, normalized, 0),
72 nir_channel(b, normalized, 1),
73 nir_channel(b, normalized, 2),
79 nir_src_for_ssa(normalized));
/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.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/swiftshader/tests/fuzzers/
H A DVertexRoutineFuzzer.cpp79 // byte: stream count and normalized
159 bool normalized : 1; member in struct:Stream
174 state.input[i].normalized = stream.normalized;
/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 = unorm2_normalize (unorm2_getNFCInstance (&icu_err), utf16, len, 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 = unorm2_normalize (unorm2_getNFDInstance (&icu_err), utf16, len, normalized, ARRAY_LENGTH (normalized), &icu_err);
268 len = u_countChar32 (normalized, len);
271 U16_GET_UNSAFE (normalized,
284 unorm2_normalize (unorm2_getNFCInstance (&icu_err), normalized, len, recomposed, ARRAY_LENGTH (recomposed), &icu_err); local
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/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/tensorflow/tensorflow/compiler/jit/
H A Dgraph_to_functiondef.cc53 // Look up how a node name was previously normalized/uniquified.
93 const string normalized = UniquifyHelper(NormalizeHelper(name)); local
94 name_mapping_[name] = normalized;
95 return normalized;
135 const string normalized = node_names.Normalize(node->name()); local
136 argdef->set_name(normalized);
137 tensor_renaming[strings::StrCat(node->name(), ":0")] = normalized;
152 const string normalized = node_names.Normalize(node->name()); local
153 argdef->set_name(normalized);
156 return_values[normalized]
234 const string normalized = local
[all...]
/external/icu/icu4c/source/common/
H A Dunormcmp.cpp533 UnicodeString &normalized, UErrorCode *pErrorCode) {
551 normalized.setTo(FALSE, str.getBuffer(), spanQCYes);
552 n2->normalizeSecondAndAppend(normalized, unnormalized, *pErrorCode);
532 _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/tensorflow/tensorflow/core/kernels/
H A Deigen_attention.h33 * batch dimension. The normalized boolean indicates if incoming coordinates are
34 * normalized so that 0.0 and 1.0 correspond to the minimum and maximum of each
50 const bool normalized, const bool centered,
55 normalized_(normalized),
96 // Un-normalize coordinates back to pixel space if normalized.
240 const bool normalized = true, const bool centered = true,
248 const GlimpseExtractionOp<Index> op(width, height, offsets, normalized,
48 GlimpseExtractionOp(const Index width, const Index height, const std::vector<IndexPair<float> >& offsets, const bool normalized, const bool centered, const bool uniform_noise) argument

Completed in 8057 milliseconds

1234