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

1 2 3 4 5

  /external/ceres-solver/docs/
nnlsq.tex 8 \begin{equation}
10 \end{equation}
16 \begin{equation}
18 \end{equation}
20 \begin{equation}
22 \end{equation}
reference-overview.tex 5 \begin{equation}
8 \end{equation}
curvefitting.tex 6 \begin{equation}
8 \end{equation}
modeling.tex 9 \begin{equation}
11 \end{equation}
43 \begin{equation}
47 \end{equation}
276 \begin{equation}
278 \end{equation}
310 \begin{equation}
312 \end{equation}
316 \begin{equation}
318 \end{equation}
    [all...]
solving.tex 9 \begin{equation}
12 \end{equation}
16 \begin{equation}
19 \end{equation}
82 \begin{equation}
84 \end{equation}
126 \begin{equation}
128 \end{equation}
161 \begin{equation}
163 \end{equation}
    [all...]
helloworld.tex 5 \begin{equation}
7 \end{equation}
faq.tex 34 \begin{equation*}
43 \end{equation*}
  /frameworks/native/opengl/libagl/
vertex.cpp 124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v);
172 vec4_t& equation = c->clipPlanes.plane[p].equation; local
173 memcpy(equation.v, equ, sizeof(vec4_t));
177 mvit.point4(&mvit, &equation, &equation);
primitives.cpp 901 const vec4_t& equation = c->clipPlanes.plane[plane].equation; local
902 GLfixed sd = dot4(equation.v, s->eye.v);
906 const GLfixed pd = dot4(equation.v, p->eye.v);
1043 const vec4_t& equation = c->clipPlanes.plane[plane].equation; local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES11.java 179 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
183 float[] equation,
187 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
191 java.nio.FloatBuffer equation
194 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
198 int[] equation,
202 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
206 java.nio.IntBuffer equation
GLES11Ext.java 294 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
298 int[] equation,
302 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
306 java.nio.IntBuffer equation
968 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
972 float[] equation,
    [all...]
GLErrorWrapper.java 846 public void glClipPlanef(int plane, float[] equation, int offset) {
848 mgl11.glClipPlanef(plane, equation, offset);
852 public void glClipPlanef(int plane, FloatBuffer equation) {
854 mgl11.glClipPlanef(plane, equation);
858 public void glClipPlanex(int plane, int[] equation, int offset) {
860 mgl11.glClipPlanex(plane, equation, offset);
864 public void glClipPlanex(int plane, IntBuffer equation) {
866 mgl11.glClipPlanex(plane, equation);
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11.java 168 float[] equation,
174 java.nio.FloatBuffer equation
179 int[] equation,
185 java.nio.IntBuffer equation
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11.spec 4 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
GLES11Ext.spec 17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
79 void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 673 public void glClipPlanef(int plane, float[] equation, int offset) {
674 mgl11.glClipPlanef(plane, equation, offset);
677 public void glClipPlanef(int plane, FloatBuffer equation) {
678 mgl11.glClipPlanef(plane, equation);
681 public void glClipPlanex(int plane, int[] equation, int offset) {
682 mgl11.glClipPlanex(plane, equation, offset);
685 public void glClipPlanex(int plane, IntBuffer equation) {
686 mgl11.glClipPlanex(plane, equation);
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 410 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
419 GLfloat *equation = (GLfloat *) 0; local
424 _exceptionMessage = "equation == null";
436 equation = equation_base + offset;
440 (GLfloat *)equation
453 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
463 GLfloat *equation = (GLfloat *) 0; local
465 equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset);
466 if (equation == NULL) {
468 equation = (GLfloat *) (_equationBase + _bufferOffset)
491 GLfixed *equation = (GLfixed *) 0; local
535 GLfixed *equation = (GLfixed *) 0; local
    [all...]
android_opengl_GLES11Ext.cpp 816 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
825 GLfixed *equation = (GLfixed *) 0; local
830 _exceptionMessage = "equation == null";
842 equation = equation_base + offset;
846 (GLfixed *)equation
859 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
866 GLfixed *equation = (GLfixed *) 0; local
868 equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining, &_bufferOffset);
869 if (equation == NULL) {
871 equation = (GLfixed *) (_equationBase + _bufferOffset)
2856 GLfloat *equation = (GLfloat *) 0; local
2897 GLfloat *equation = (GLfloat *) 0; local
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLStub.java 774 float[] equation,
780 java.nio.FloatBuffer equation
785 int[] equation,
791 java.nio.IntBuffer equation
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
gles.cpp 71 void glClipPlanef(GLenum plane, const GLfloat *equation)
73 getDispatch()->glClipPlanef(plane, equation);
306 void glClipPlanex(GLenum plane, const GLfixed *equation)
308 getDispatch()->glClipPlanex(plane, equation);
861 void glClipPlanexOES(GLenum plane, const GLfixed *equation)
863 getDispatch()->glClipPlanexOES(plane, equation);
1171 void glClipPlanefOES(GLenum plane, const GLfloat *equation)
1173 getDispatch()->glClipPlanefOES(plane, equation);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 47 void (GLAPIENTRY *glClipPlane) (GLenum plane, const GLdouble *equation);
82 void (GLAPIENTRY *glGetClipPlane) (GLenum plane, GLdouble *equation);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 1191 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1195 float[] equation,
1199 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1203 java.nio.FloatBuffer equation
1206 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1210 int[] equation,
1214 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1218 java.nio.IntBuffer equation
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/GLES/
glext.h 338 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
378 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
512 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
519 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/GLES/
glext.h 338 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
378 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
512 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
519 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/GLES/
glext.h 338 GL_API void GL_APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation);
378 typedef void (GL_APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation);
512 GL_API void GL_APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation);
519 typedef void (GL_APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation);

Completed in 1482 milliseconds

1 2 3 4 5