HomeSort by relevance Sort by last modified time
    Searched full:equation (Results 51 - 75 of 736) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_lower_texture_gradients.cpp 116 * gradients are s'(x,y), t'(x,y), and r'(x,y) from equation 3.19 in the
127 /* Calculate rho from equation 3.20 of the GL 3.0 specification. */
  /external/skia/src/gpu/vk/
GrVkPipeline.cpp 303 static VkBlendOp blend_equation_to_vk_blend_op(GrBlendEquation equation) {
314 SkASSERT((unsigned)equation < kGrBlendCoeffCnt);
315 return gTable[equation];
353 GrBlendEquation equation = blendInfo.fEquation; local
356 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
364 attachmentState->colorBlendOp = blend_equation_to_vk_blend_op(equation);
367 attachmentState->alphaBlendOp = blend_equation_to_vk_blend_op(equation);
  /frameworks/native/opengl/libs/GLES_CM/
glext_api.in 49 void API_ENTRY(glClipPlanexOES)(GLenum plane, const GLfixed *equation) {
50 CALL_GL_API(glClipPlanexOES, plane, equation);
67 void API_ENTRY(glGetClipPlanexOES)(GLenum plane, GLfixed *equation) {
68 CALL_GL_API(glGetClipPlanexOES, plane, equation);
241 void API_ENTRY(glClipPlanefOES)(GLenum plane, const GLfloat *equation) {
242 CALL_GL_API(glClipPlanefOES, plane, equation);
250 void API_ENTRY(glGetClipPlanefOES)(GLenum plane, GLfloat *equation) {
251 CALL_GL_API(glGetClipPlanefOES, plane, equation);
gl_api.in 28 void API_ENTRY(glGetClipPlanef)(GLenum plane, GLfloat *equation) {
29 CALL_GL_API(glGetClipPlanef, plane, equation);
151 void API_ENTRY(glClipPlanex)(GLenum plane, const GLfixed *equation) {
152 CALL_GL_API(glClipPlanex, plane, equation);
238 void API_ENTRY(glGetClipPlanex)(GLenum plane, GLfixed *equation) {
239 CALL_GL_API(glGetClipPlanex, plane, equation);
  /external/libopus/silk/fixed/
solve_LS_FIX.c 56 opus_int M, /* I Dim of Matrix equation */
64 const opus_int M, /* I Dim of Matrix equation */
210 opus_int M, /* I Dim of Matrix equation */
232 const opus_int M, /* I Dim of Matrix equation */
  /external/opencv3/doc/py_tutorials/py_feature2d/py_features_harris/
py_features_harris.markdown 27 second term. Applying Taylor Expansion to above equation and using some mathematical steps (please
28 refer any standard text books you like for full derivation), we get the final equation as:
40 Then comes the main part. After this, they created a score, basically an equation, which will
73 - **k** - Harris detector free parameter in the equation.
  /external/skia/include/gpu/
GrCaps.h 168 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not
184 bool canUseAdvancedBlendEquation(GrBlendEquation equation) const {
185 SkASSERT(GrBlendEquationIsAdvanced(equation));
186 return SkToBool(fAdvBlendEqBlacklist & (1 << equation));
  /external/skia/include/utils/
SkTextBox.h 22 Spacing is a linear equation used to compute the distance between lines
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenUtils.java 28 * @return The parsed equation, or null if there is no match.
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/equations/
Back.java 6 * Easing equation based on Robert Penner's work:
  /hardware/bsp/intel/peripheral/libupm/src/mpu9150/
mpu9250.cxx 45 // this equation is taken from the datasheet. The 333.87 value was
  /external/ceres-solver/internal/ceres/
corrector.cc 95 // Calculate the smaller of the two solutions to the equation
114 // Equation 11 in BANS.
131 // Equation 11 in BANS.
  /external/opencv3/modules/calib3d/src/
polynom_solver.cpp 28 /// Reference : Eric W. Weisstein. "Cubic Equation." From MathWorld--A Wolfram Web Resource.
55 // Solve the cubic equation
94 /// Reference : Eric W. Weisstein. "Quartic Equation." From MathWorld--A Wolfram Web Resource.
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Tables.c 169 * Coefficients for calculating the cosine with the equation:
186 * Coefficients for calculating the cosine error with the equation:
195 * the equation:
  /external/opencv3/doc/py_tutorials/py_video/py_lucas_kanade/
py_lucas_kanade.markdown 43 get the following equation:
51 Above equation is called Optical Flow equation. In it, we can find \f$f_x\f$ and \f$f_y\f$, they are image
53 one equation with two unknown variables. So several methods are provided to solve this problem and
62 method. Below is the final solution which is two equation-two unknown problem and solve to get the
  /external/fonttools/Lib/fontTools/misc/
bezierTools.py 250 # Equation solvers.
258 """Solve a quadratic equation where a, b and c are real.
265 # We have a non-equation; therefore, we have no valid solution
268 # We have a linear equation with 1 root.
271 # We have a true quadratic equation. Apply the quadratic formula to find two roots.
283 """Solve a cubic equation where a, b, c and d are real.
  /external/skia/src/gpu/effects/
GrCustomXfermode.cpp 56 static bool can_use_hw_blend_equation(GrBlendEquation equation,
66 return false; // LCD coverage must be applied after the blend equation.
68 if (caps.canUseAdvancedBlendEquation(equation)) {
210 The general SVG blend equation is defined in the spec as follows:
220 modes, X=Y=Z=1 and this equation reduces to the PDF blend equation.
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 535 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
544 GLfloat *equation = (GLfloat *) 0; local
549 _exceptionMessage = "equation == null";
561 equation = equation_base + offset;
565 (GLfloat *)equation
578 /* void glClipPlanef ( GLenum plane, const GLfloat *equation ) */
588 GLfloat *equation = (GLfloat *) 0; local
590 equation = (GLfloat *)getPointer(_env, equation_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
591 if (equation == NULL) {
593 equation = (GLfloat *) (_equationBase + _bufferOffset)
616 GLfixed *equation = (GLfixed *) 0; local
660 GLfixed *equation = (GLfixed *) 0; local
    [all...]
  /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);
  /external/opencv3/3rdparty/openexr/Imath/
ImathRoots.h 52 // Find the real solutions of a linear, quadratic or cubic equation:
54 // function equation solved
71 // * It is possible that an equation has real solutions, but that the
  /external/opencv3/doc/tutorials/features2d/trackingmotion/harris_detector/
harris_detector.markdown 57 in intensity. Hence, we have to maximize the equation above, specifically the term:
65 - Expanding the equation and cancelling properly:
96 - So, our equation now is:
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
FirstOrderDifferentialEquations.java 25 * differential equation problems before they can be handled by the
  /external/deqp/framework/opengl/simplereference/
sglrReferenceUtils.cpp 251 rr::BlendEquation mapGLBlendEquation (deUint32 equation)
253 switch (equation)
266 rr::BlendEquationAdvanced mapGLBlendEquationAdvanced (deUint32 equation)
268 switch (equation)
  /external/deqp/modules/gles31/functional/
es31fNegativeAdvancedBlendEquationTests.hpp 23 * \brief Negative Advanced Blend Equation Tests
  /external/deqp/modules/glshared/
glsInteractionTestUtil.cpp 194 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2));
198 state.blendAState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2));
204 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations));
208 state.blendAState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations));

Completed in 2923 milliseconds

1 23 4 5 6 7 8 91011>>