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

/frameworks/compile/slang/
H A Dslang_rs_export_element.h45 bool normalized; member in struct:slang::RSExportElement::__anon1293
/frameworks/rs/driver/
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, uint32_t offset, const char *name);
H A DrsdVertexArray.cpp50 normalized = false;
55 bool normalized, uint32_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, uint32_t offset, const char *name) argument
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DGLES20cHeader.cpp121 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
122 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
120 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
/frameworks/base/media/mca/filterfw/native/core/
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/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java452 Log.i(TAG, "normalized t=" + t + " " + t.month
1128 * when time jumps forward an hour, then the "normalized" value will be
1287 * Converts a normalized Time value to a 64-bit long. The mapping of Time
1293 * @param normalized a Time object whose date and time fields have been
1294 * normalized
1298 private static final long normDateTimeComparisonValue(Time normalized) { argument
1301 return ((long)normalized.year << 26) + (normalized.month << 22)
1302 + (normalized.monthDay << 17) + (normalized
[all...]
/frameworks/base/tools/aidl/
H A DType.cpp1363 string normalized = normalize_generic(name); local
1366 ssize_t baseIndex = normalized.find('<');
1367 string base(normalized.c_str(), baseIndex);
1380 while (normalized[start] != '\0') {
1381 end = normalized.find(',', start);
1382 if (end == normalized.npos) {
1383 end = normalized.find('>', start);
1385 string s(normalized.c_str()+start, end-start);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_fixup.cpp473 GLboolean normalized, GLsizei stride, const GLvoid* ptr,
476 GLboolean normalized, GLsizei stride, const GLvoid* ptr,
501 // copy argument normalized
505 arg_normalized->add_boolvalue(normalized);
471 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
H A Dgltrace_api.cpp5621 void GLTrace_glVertexAttribPointer(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr) { argument
5645 // copy argument normalized
5649 arg_normalized->add_boolvalue(normalized);
5666 glContext->hooks->gl.glVertexAttribPointer(indx, size, type, normalized, stride, ptr);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES20.cpp122 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
123 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
5963 /* void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset ) */
5966 (JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jint offset) {
5971 (GLboolean)normalized,
5977 /* void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr ) */
5980 (JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jobject ptr_buf, jint remaining) {
5996 (GLboolean)normalized,
121 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
5965 android_glVertexAttribPointer__IIIZII(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jint offset) argument
5979 android_glVertexAttribPointerBounds__IIIZILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, jobject ptr_buf, jint remaining) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1932 // C function void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLint offset )
1938 boolean normalized,
1943 // C function void glVertexAttribPointer ( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *ptr )
1949 boolean normalized,
1959 boolean normalized,
1967 normalized,
1934 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, int offset ) argument
1945 glVertexAttribPointerBounds( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr, int remaining ) argument
1955 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr ) argument

Completed in 1229 milliseconds