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

12 3 4 5 6 7 8 91011>>

  /external/skqp/src/pathops/
SkDCubicToQuads.cpp 13 Let's call the control points of the cubic Q0..Q3 and the control points of the quadratic P0..P2.
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_MutableDenseHashTable.pbtxt 65 It uses "open addressing" with quadratic reprobing to resolve
api_def_MutableDenseHashTableV2.pbtxt 67 It uses "open addressing" with quadratic reprobing to resolve
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_imgfile.py 68 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
92 if verbose: print 'Filtering with "quadratic"'
93 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /external/python/cpython2/Lib/test/
test_imgfile.py 66 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
90 if verbose: print 'Filtering with "quadratic"'
91 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_imgfile.py 68 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
92 if verbose: print 'Filtering with "quadratic"'
93 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_imgfile.py 68 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
92 if verbose: print 'Filtering with "quadratic"'
93 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /prebuilts/ndk/r16/sources/android/ndk_helper/
interpolator.cpp 118 // quadratic (t^2) easing in - accelerating from zero velocity
123 // quadratic (t^2) easing out - decelerating to zero velocity
128 // quadratic easing in/out - acceleration until halfway, then deceleration
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 68 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
92 if verbose: print 'Filtering with "quadratic"'
93 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 68 # 'triangle', 'quadratic' and 'gaussian'. If a filter is
92 if verbose: print 'Filtering with "quadratic"'
93 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'quadratic')
  /external/fonttools/Lib/fontTools/pens/
basePen.py 68 bezier is drawn. If n==1, we fall back to a quadratic segment and
80 """Draw a whole string of quadratic curve segments.
176 """This method implements the basic quadratic curve type. The
272 # Split the string of points into discrete quadratic curve
319 """Split the quadratic curve segment described by 'points' into a list
320 of "atomic" quadratic segments. The 'points' argument must be a sequence
326 plain quadratic bezier segment.
  /external/python/cpython2/Doc/library/
xml.rst 63 quadratic blowup **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable** **Vulnerable**
83 quadratic blowup entity expansion
84 A quadratic blowup attack is similar to a `Billion Laughs`_ attack; it abuses
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 69 * Create an interpolator for a quadratic Bezier curve. The end points
72 * @param controlX The x coordinate of the quadratic Bezier control point.
73 * @param controlY The y coordinate of the quadratic Bezier control point.
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
AnimatorPath.java 53 * Create a quadratic B?zier curve from the current path point to the new one
  /external/llvm/test/Transforms/LoopStrengthReduce/
2011-12-19-PostincQuadratic.ll 4 ; recursive expansion of a quadratic recurrence within for.body7. LSR
lsr-expand-quadratic.ll 8 ; SCEV expander cannot expand quadratic recurrences outside of the
  /external/replicaisland/src/com/replica/replicaisland/
QuickSorter.java 36 * even randomized ones, go quadratic (e.g., all keys are the same).
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPathTest.java 24 assertEquals(shadowPath.getQuadDescription(), "Add a quadratic bezier from last point, approaching (0.0,5.0), ending at (10.0,15.0)");
  /external/skia/include/c/
sk_path.h 37 Add a quadratic bezier from the last point, approaching control
  /external/skia/src/gpu/effects/
GrBezierEffect.h 17 * Shader is based off of Loop-Blinn Quadratic GPU Rendering
34 * In both versions we solve the quadratic for ||q-p||.
132 * Quadratic specified by 0=u^2-v canonical coords. u and v are the first
134 * the Quadratic, u, v have the values {0,0}, {1/2, 0}, and {1, 1} respectively.
  /external/skqp/include/c/
sk_path.h 37 Add a quadratic bezier from the last point, approaching control
  /external/skqp/src/gpu/effects/
GrBezierEffect.h 17 * Shader is based off of Loop-Blinn Quadratic GPU Rendering
34 * In both versions we solve the quadratic for ||q-p||.
132 * Quadratic specified by 0=u^2-v canonical coords. u and v are the first
134 * the Quadratic, u, v have the values {0,0}, {1/2, 0}, and {1, 1} respectively.
  /external/tensorflow/tensorflow/core/lib/gtl/
flatrep.h 128 uint32 num_probes = 1; // Needed for quadratic probing
153 uint32 num_probes = 1; // Needed for quadratic probing
305 uint32 num_probes = 1; // Needed for quadratic probing
322 // Quadratic probing.
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 706 * Add a quadratic bezier from the last point, approaching control point
710 * @param x1 The x-coordinate of the control point on a quadratic curve
711 * @param y1 The y-coordinate of the control point on a quadratic curve
712 * @param x2 The x-coordinate of the end point on a quadratic curve
713 * @param y2 The y-coordinate of the end point on a quadratic curve
725 * this contour, for the control point of a quadratic curve
727 * this contour, for the control point of a quadratic curve
729 * this contour, for the end point of a quadratic curve
731 * this contour, for the end point of a quadratic curve
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
TODO 38 - Make liveness analysis non-quadratic

Completed in 1176 milliseconds

12 3 4 5 6 7 8 91011>>