HomeSort by relevance Sort by last modified time
    Searched full:equation (Results 26 - 50 of 395) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES11Ext.spec 17 void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
79 void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
  /libcore/luni/src/main/java/java/security/spec/
EllipticCurve.java 31 // The first coefficient of the equation defining this elliptic curve
34 // The second coefficient of the equation defining this elliptic curve
  /development/tools/emulator/opengl/system/GLESv1_enc/
gl.in 4 GL_ENTRY(void, glClipPlanef, GLenum plane, const GLfloat *equation)
186 GL_ENTRY(void, glClipPlanexOES, GLenum plane, const GLfixed * equation)
187 GL_ENTRY(void, glClipPlanexIMG, GLenum plane, const GLfixed * equation)
250 GL_ENTRY(void, glClipPlanefOES, GLenum plane, const GLfloat *equation)
251 GL_ENTRY(void, glClipPlanefIMG, GLenum plane, const GLfloat *equation)
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 189 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
195 GLfloat *equation = (GLfloat *) 0; local
198 jniThrowException(_env, "java/lang/IllegalArgumentException", "equation == null");
208 equation = equation_base + offset;
212 (GLfloat *)equation
222 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
228 GLfloat *equation = (GLfloat *) 0; local
230 equation = (GLfloat *)getPointer(_env, equation_buf, &_array, &_remaining);
233 (GLfloat *)equation
236 releasePointer(_env, _array, equation, JNI_FALSE)
246 GLfixed *equation = (GLfixed *) 0; local
279 GLfixed *equation = (GLfixed *) 0; local
    [all...]
android_opengl_GLES11Ext.cpp 514 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
520 GLfixed *equation = (GLfixed *) 0; local
523 jniThrowException(_env, "java/lang/IllegalArgumentException", "equation == null");
533 equation = equation_base + offset;
537 (GLfixed *)equation
547 /* void glClipPlanexOES ( GLenum plane, const GLfixed *equation ) */
553 GLfixed *equation = (GLfixed *) 0; local
555 equation = (GLfixed *)getPointer(_env, equation_buf, &_array, &_remaining);
558 (GLfixed *)equation
561 releasePointer(_env, _array, equation, JNI_FALSE)
2199 GLfloat *equation = (GLfloat *) 0; local
2232 GLfloat *equation = (GLfloat *) 0; local
    [all...]
  /frameworks/base/opengl/libs/
trace.in 37 TRACE_GL_VOID(glClipPlanef, (GLenum plane, const GLfloat *equation), (plane, equation), 2, "GLenum", plane, "const GLfloat *", equation)
39 TRACE_GL_VOID(glClipPlanefOES, (GLenum plane, const GLfloat *equation), (plane, equation), 2, "GLenum", plane, "const GLfloat *", equation)
40 TRACE_GL_VOID(glClipPlanex, (GLenum plane, const GLfixed *equation), (plane, equation), 2, "GLenum", plane, "const GLfixed *", equation)
42 TRACE_GL_VOID(glClipPlanexOES, (GLenum plane, const GLfixed *equation), (plane, equation), 2, "GLenum", plane, "const GLfixed *", equation
    [all...]
  /external/chromium/webkit/glue/media/
simple_data_source.h 8 // from the equation.
  /external/skia/include/core/
SkRandom.h 26 linear equation. Unlike rand(), this class holds its own seed (initially
SkGeometry.h 38 /** Given a quadratic equation Ax^2 + Bx + C = 0, return 0, 1, 2 roots for the
39 equation.
  /external/skia/src/core/
SkQuadClipper.cpp 44 * We solve for t, using quadratic equation, hence we have to rearrange
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 30 /* equation: */
  /frameworks/base/opengl/libs/GLES_CM/
gl_api.in 10 void API_ENTRY(glClipPlanef)(GLenum plane, const GLfloat *equation) {
11 CALL_GL_API(glClipPlanef, plane, equation);
151 void API_ENTRY(glClipPlanex)(GLenum plane, const GLfixed *equation) {
152 CALL_GL_API(glClipPlanex, plane, equation);
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 39 // coefficients for calculating Equation of Center.
  /development/tools/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);
  /external/libvpx/examples/includes/geshi/geshi/
latex.php 65 'def','documentclass','edef','equation','flushleft','flushright',
128 GESHI_SEARCH => "(\\\\begin\\{(equation|displaymath|eqnarray|subeqnarray|math|multline|gather|align|alignat|flalign)\\})(.*)(\\\\end\\{\\2\\})",
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 208 * solve the quadratic equation, if it's not solvable then we
217 * If there's a solution to the equation then the point must be
  /frameworks/base/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 136 * Calculate the cosine error by a polynomial expansion using the equation:
267 * Calculate the cosine by a polynomial expansion using the equation:
  /frameworks/base/opengl/java/android/opengl/
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...]
  /external/collada/include/1.4/dom/
domLight.h 197 * this light given a distance. The equation used is A = constant_attenuation
203 * light given a distance. The equation used is A = constant_attenuation
209 * this light given a distance. The equation used is A = constant_attenuation
296 * this light given a distance. The equation used is A = constant_attenuation
302 * light given a distance. The equation used is A = constant_attenuation
308 * this light given a distance. The equation used is A = constant_attenuation
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 1190 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1194 float[] equation,
1198 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
1202 java.nio.FloatBuffer equation
1205 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1209 int[] equation,
1213 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
1217 java.nio.IntBuffer equation
    [all...]
  /frameworks/base/opengl/libagl/
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...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 122 /*Solve for focal length using the equation
143 by dividing out the root l=0 from the equation
  /bionic/libm/ia64/
fenv.h 115 * need to bring a volatile variable into the equation
  /bionic/libm/include/ia64/
fenv.h 115 * need to bring a volatile variable into the equation
  /bionic/libm/include/sparc64/
fenv.h 120 * need to bring a volatile variable into the equation

Completed in 1419 milliseconds

12 3 4 5 6 7 8 91011>>