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

1 2 3 4 5 6 7 8 910

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 42 final Bitmap normalized = PhotoProcessor.getNormalizedBitmap(sourceBitmap, 50, false); local
45 assertEquals(10, normalized.getWidth());
46 assertEquals(10, normalized.getHeight());
49 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /external/harfbuzz_ng/src/
hb-icu.cc 189 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, 0, *a)
318 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
    [all...]
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...]
  /external/eigen/test/
geo_quaternion.cpp 81 q1 = AngleAxisx(a, v0.normalized());
82 q2 = AngleAxisx(a, v1.normalized());
113 && (aa.axis() - v1.normalized()).norm() < 1.99
114 && (aa.axis() + v1.normalized()).norm() < 1.99)
120 VERIFY_IS_APPROX( v2.normalized(),(q2.setFromTwoVectors(v1, v2)*v1).normalized());
121 VERIFY_IS_APPROX( v1.normalized(),(q2.setFromTwoVectors(v1, v1)*v1).normalized());
122 VERIFY_IS_APPROX(-v1.normalized(),(q2.setFromTwoVectors(v1,-v1)*v1).normalized());
    [all...]
geo_orthomethods.cpp 37 mat3 << v0.normalized(),
38 (v0.cross(v1)).normalized(),
39 (v0.cross(v1).cross(v0)).normalized();
  /frameworks/rs/driver/
rsdVertexArray.cpp 50 normalized = false;
55 bool normalized, uint32_t offset,
61 this->normalized = normalized;
78 mAttribs[idx].normalized,
113 mAttribs[ct].normalized,
rsdVertexArray.h 41 bool normalized; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, uint32_t offset, const char *name);
  /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/icu4c/i18n/
nortrans.cpp 113 * 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...]
  /external/eigen/unsupported/test/
alignedvector3.cpp 45 VERIFY_IS_APPROX(f2.normalized(),r2.normalized());
47 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized());
  /external/webkit/Source/WebCore/platform/graphics/qt/
FloatRectQt.cpp 47 FloatRect FloatRect::normalized() const function in class:WebCore::FloatRect
StillImageQt.cpp 71 FloatRect normalizedSrc = src.normalized();
72 FloatRect normalizedDst = dst.normalized();
  /frameworks/compile/slang/
slang_rs_export_element.h 45 bool normalized; member in struct:slang::RSExportElement::__anon19976
slang_rs_export_element.cpp 41 EI->normalized = _norm; \
85 EI->normalized);
100 EI->normalized);
  /external/webkit/Source/WebCore/html/canvas/
WebGLVertexArrayObjectOES.h 55 , normalized(false)
67 bool normalized; member in struct:WebCore::WebGLVertexArrayObjectOES::VertexAttribState
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.h 43 GLboolean normalized, GLsizei stride, void * data, GLuint datalen);
45 GLboolean normalized, GLsizei stride, GLuint offset);
GL2Decoder.cpp 103 GLboolean normalized, GLsizei stride, void * data, GLuint datalen)
110 ctx->glVertexAttribPointer(indx, size, type, normalized, 0, ctx->m_contextData->pointerData(indx));
115 GLboolean normalized, GLsizei stride, GLuint data)
118 ctx->glVertexAttribPointer(indx, size, type, normalized, stride, (GLvoid *)data);
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 178 float normalized = (float) local
180 done = normalized >= 1.0f;
181 normalized = Math.min(normalized, 1.0f);
182 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Context.h 47 void setupArr(const GLvoid* arr,GLenum arrayType,GLenum dataType,GLint size,GLsizei stride,GLboolean normalized, int pointsIndex = -1);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 356 // VertexTypeMapping maps GL type & normalized flag to preferred and fallback D3D vertex types (as D3DVertexType enums).
357 template <GLenum GLtype, bool normalized>
377 template <bool normalized> struct VertexTypeMapping<GL_FIXED, normalized> : VertexTypeMappingBase<D3DVT_FLOAT> { }; // FixedToFloat
378 template <bool normalized> struct VertexTypeMapping<GL_FLOAT, normalized> : VertexTypeMappingBase<D3DVT_FLOAT> { }; // Identity
385 template <GLenum fromType, bool normalized, unsigned int toType>
390 // All conversions from normalized types to float use the Normalize operator.
398 // whether it is normalized or not.
399 template <class T, bool normalized>
    [all...]
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 51 m << v0.normalized(),
52 (v0.cross(v1)).normalized(),
53 (v0.cross(v1).cross(v0)).normalized();
70 VERIFY_IS_APPROX(v0, AngleAxisx(a, v0.normalized()) * v0);
73 m = AngleAxisx(a, v0.normalized()).toRotationMatrix().adjoint();
74 VERIFY_IS_APPROX(Matrix3::Identity(), m * AngleAxisx(a, v0.normalized()));
75 VERIFY_IS_APPROX(Matrix3::Identity(), AngleAxisx(a, v0.normalized()) * m);
77 q1 = AngleAxisx(a, v0.normalized());
78 q2 = AngleAxisx(a, v1.normalized());
115 VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized())
    [all...]
eigen2_geometry_with_eigen2_prefix.cpp 53 m << v0.normalized(),
54 (v0.cross(v1)).normalized(),
55 (v0.cross(v1).cross(v0)).normalized();
72 VERIFY_IS_APPROX(v0, AngleAxisx(a, v0.normalized()) * v0);
75 m = AngleAxisx(a, v0.normalized()).toRotationMatrix().adjoint();
76 VERIFY_IS_APPROX(Matrix3::Identity(), m * AngleAxisx(a, v0.normalized()));
77 VERIFY_IS_APPROX(Matrix3::Identity(), AngleAxisx(a, v0.normalized()) * m);
79 q1 = AngleAxisx(a, v0.normalized());
80 q2 = AngleAxisx(a, v1.normalized());
117 VERIFY_IS_APPROX(v2.normalized(),(q2.setFromTwoVectors(v1,v2)*v1).normalized())
    [all...]
  /bionic/libc/kernel/common/linux/
hdsmart.h 31 unsigned char normalized; member in struct:ata_smart_attribute_s
  /development/ndk/platforms/android-3/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /external/eigen/demos/opengl/
camera.cpp 109 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());

Completed in 937 milliseconds

1 2 3 4 5 6 7 8 910