HomeSort by relevance Sort by last modified time
    Searched defs:normalized (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/delibs/debase/
deInt32.c 152 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);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 44 final Bitmap normalized = PhotoProcessor.getNormalizedBitmap(sourceBitmap, 50, false); local
47 assertEquals(10, normalized.getWidth());
48 assertEquals(10, normalized.getHeight());
51 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /external/icu/icu4c/source/i18n/
uitercollationiterator.h 32 * 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
utf16collationiterator.h 31 * 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
utf8collationiterator.h 31 * 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
nortrans.cpp 115 * 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...]
  /external/swiftshader/src/Renderer/
Stream.hpp 26 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...]
  /frameworks/compile/slang/
slang_rs_export_element.h 45 bool normalized; member in struct:slang::RSExportElement::__anon39195
slang_rs_export_element.cpp 37 bool normalized; member in struct:slang::DataElementInfo
61 EI->normalized = DataElementInfoTable[i].normalized;
97 EI->normalized);
112 EI->normalized);
  /frameworks/rs/driver/
rsdVertexArray.h 43 bool normalized; member in class:RsdVertexArray::Attrib
48 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
  /external/eigen/Eigen/src/Core/
Dot.h 121 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/harfbuzz_ng/src/
hb-glib.cc 254 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...]
hb-icu.cc 190 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, 0, *a)
319 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NormalizationTransliterator.java 98 * must not be normalized.
105 StringBuilder normalized = new StringBuilder(); local
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/swiftshader/src/OpenGL/libGL/
VertexDataManager.h 36 bool normalized; member in struct:gl::TranslatedAttribute
  /external/swiftshader/src/OpenGL/libGLES_CM/
VertexDataManager.h 33 bool normalized; member in struct:es1::TranslatedAttribute
  /external/swiftshader/src/OpenGL/libGLESv2/
VertexDataManager.h 33 bool normalized; member in struct:es2::TranslatedAttribute
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoPeriod.java 261 * Returns a copy of this period with the amounts of each unit normalized.
265 * normalized but the days are not, such that "15 months" would be
266 * normalized to "1 year and 3 months".
271 * unit normalized, not null
274 ChronoPeriod normalized(); method in interface:ChronoPeriod
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionUtils.java 101 String normalized; local
107 normalized = DEFAULT_SCHEME + SCHEME_SEPARATOR + url;
110 normalized = url;
113 int end = normalized.length();
114 if (normalized.indexOf('/', start) == end - 1) {
117 return normalized.substring(0, end);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
CorrelatedRandomVectorGenerator.java 41 * {@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[j]
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NormalizationTransliterator.java 97 * must not be normalized.
104 StringBuilder normalized = new StringBuilder(); local
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/jsoncpp/src/jsontestrunner/
main.cpp 31 std::string normalized = s.substr(0, exponentStartIndex); local
40 return normalized + exponent;
  /external/mesa3d/src/glx/
indirect_vertex_array_priv.h 83 * "Normalized" data is on the range [0,1] (unsigned) or [-1,1] (signed).
86 GLboolean normalized; member in struct:array_state
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 179 float normalized = (float) local
181 done = normalized >= 1.0f;
182 normalized = Math.min(normalized, 1.0f);
183 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
  /libcore/ojluni/src/test/java/time/tck/java/time/serial/
TCKZoneIdSerialization.java 104 // getId, equals, hashCode, toString and normalized are OK
109 assertEquals(deser.normalized(), deser);
186 // regular factory and .normalized()

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>