Searched refs:normalized (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/rs/driver/
H A DrsdVertexArray.cpp50 normalized = false;
55 bool normalized, size_t offset,
61 this->normalized = normalized;
78 mAttribs[idx].normalized,
113 mAttribs[ct].normalized,
54 set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name) argument
H A DrsdVertexArray.h41 bool normalized; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
H A DrsdMeshObj.cpp113 mAttribs[userNum].normalized = f->mHal.state.dataType != RS_TYPE_FLOAT_32;
/frameworks/compile/slang/
H A Dslang_rs_export_element.h45 bool normalized; member in struct:slang::RSExportElement::__anon1208
H A Dslang_rs_export_element.cpp37 bool normalized; member in struct:slang::DataElementInfo
61 EI->normalized = DataElementInfoTable[i].normalized;
96 EI->normalized);
111 EI->normalized);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java178 float normalized = (float)
180 done = normalized >= 1.0f;
181 normalized = Math.min(normalized, 1.0f);
182 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java303 String normalized = language.toLowerCase();
304 return ((normalized.charAt(0) & 0xFF) << 16)
305 | ((normalized.charAt(1) & 0xFF) << 8)
306 | (normalized.charAt(2) & 0xFF);
H A DHdmiCecMessageBuilder.java111 String normalized = language.toLowerCase();
113 (byte) (normalized.charAt(0) & 0xFF),
114 (byte) (normalized.charAt(1) & 0xFF),
115 (byte) (normalized.charAt(2) & 0xFF),
/frameworks/base/services/core/java/com/android/server/
H A DAnyMotionDetector.java224 Vector3 previousGravityVectorNormalized = mPreviousGravityVector.normalized();
225 Vector3 currentGravityVectorNormalized = mCurrentGravityVector.normalized();
317 private Vector3 normalized() { method in class:AnyMotionDetector.Vector3
324 * Assumes both have already been normalized.
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java452 Log.i(TAG, "normalized t=" + t + " " + t.month
1130 * when time jumps forward an hour, then the "normalized" value will be
1289 * Converts a normalized Time value to a 64-bit long. The mapping of Time
1295 * @param normalized a Time object whose date and time fields have been
1296 * normalized
1300 private static final long normDateTimeComparisonValue(Time normalized) { argument
1303 return ((long)normalized.year << 26) + (normalized.month << 22)
1304 + (normalized.monthDay << 17) + (normalized
[all...]
/frameworks/base/tools/aidl/
H A DType.cpp1365 string normalized = normalize_generic(name); local
1368 ssize_t baseIndex = normalized.find('<');
1369 string base(normalized.c_str(), baseIndex);
1382 while (normalized[start] != '\0') {
1383 end = normalized.find(',', start);
1384 if (end == normalized.npos) {
1385 end = normalized.find('>', start);
1387 string s(normalized.c_str()+start, end-start);
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp59 normalized(false),
959 attrib.normalized = normalize;
985 attrib.normalized = normalize;
1025 attrib.normalized = false;
1071 attrib.normalized,
1081 attrib.normalized,
H A Dshader_program.h133 // normalized between 0.0 and 1.0. If this region exceeds the input frame
138 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
147 // normalized between 0.0 and 1.0. If this region exceeds the output frame
152 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
255 // normalize: True, if not float values should be normalized to the range
413 bool normalized; member in struct:android::filterfw::ShaderProgram::VertexAttrib
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp40 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
41 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
39 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
/frameworks/rs/api/
H A Drs_quaternion.spec69 Computes a rotation matrix from the normalized quaternion.
H A Drs_vector_math.spec125 summary: Approximate normalized vector
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1875 // C function void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
1881 boolean normalized,
1886 // C function void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr )
1892 boolean normalized,
1902 boolean normalized,
1910 normalized,
1877 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, int offset ) argument
1888 glVertexAttribPointerBounds( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr, int remaining ) argument
1898 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr ) argument
H A DGLES31.java1066 // C function void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset )
1072 boolean normalized,
1068 glVertexAttribFormat( int attribindex, int size, int type, boolean normalized, int relativeoffset ) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES20.spec142 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
143 void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr )
H A DGLES31.spec65 void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset )
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10Ext.cpp66 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
67 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
65 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
H A Dandroid_opengl_GLES31Ext.cpp65 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
66 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
64 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
H A Dandroid_opengl_GLES31.cpp64 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
65 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
3131 /* void glVertexAttribFormat ( GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset ) */
3134 (JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) {
3139 (GLboolean)normalized,
63 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
3133 android_glVertexAttribFormat__IIIZI(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint relativeoffset) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_fixup.cpp538 GLboolean normalized, GLsizei stride, const GLvoid* ptr,
541 GLboolean normalized, GLsizei stride, const GLvoid* ptr,
566 // copy argument normalized
570 arg_normalized->add_boolvalue(normalized);
536 trace_glVertexAttribPointerData(GLTraceContext *context, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr, GLuint minIndex, GLuint maxIndex, nsecs_t startTime) argument
/frameworks/base/libs/hwui/tests/
H A Dnullgles.cpp255 void glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer) {} argument

Completed in 2124 milliseconds

12