Searched defs:edge (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/gesture/
H A DGesture.java142 public Path toPath(int width, int height, int edge, int numSample) { argument
143 return toPath(null, width, height, edge, numSample);
146 public Path toPath(Path path, int width, int height, int edge, int numSample) { argument
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
180 * @param edge the edge
185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) { argument
189 canvas.translate(edge, edge);
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp60 //static void GetStrength(AVCCommonObj *video, uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir, int edge);
293 int edge, QP, QPC; local
318 /* NOTE: edge=0 and edge=1~3 are separate cases because of the difference of MbP, index A and indexB calculation */
319 /* for edge = 1~3, MbP, indexA and indexB remain the same, and thus there is no need to re-calculate them for each edge */
323 /* 1.VERTICAL EDGE + MB BOUNDARY (edge = 0) */
327 //GetStrength(video, Strength, MbP, MbQ, 0, 0); // Strength for 4 blks in 1 stripe, 0 => vertical edge
401 GetStrength_VerticalEdges(Strength + 4, MbQ); // Strength for 4 blks in 1 stripe, 0 => vertical edge
403 for (edge
[all...]
/frameworks/rs/driver/runtime/
H A Drs_cl.c825 extern float __attribute__((overloadable)) step(float edge, float v) { argument
826 return (v < edge) ? 0.f : 1.f;
828 extern float2 __attribute__((overloadable)) step(float2 edge, float2 v) { argument
830 r.x = (v.x < edge.x) ? 0.f : 1.f;
831 r.y = (v.y < edge.y) ? 0.f : 1.f;
834 extern float3 __attribute__((overloadable)) step(float3 edge, float3 v) { argument
836 r.x = (v.x < edge.x) ? 0.f : 1.f;
837 r.y = (v.y < edge.y) ? 0.f : 1.f;
838 r.z = (v.z < edge.z) ? 0.f : 1.f;
841 extern float4 __attribute__((overloadable)) step(float4 edge, float argument
849 step(float2 edge, float v) argument
855 step(float3 edge, float v) argument
862 step(float4 edge, float v) argument
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java64 * Edge flag indicating that the left edge should be affected.
69 * Edge flag indicating that the right edge should be affected.
74 * Edge flag indicating that the top edge should be affected.
79 * Edge flag indicating that the bottom edge should be affected.
165 * @param left New X coordinate of the left edge of the view
166 * @param top New Y coordinate of the top edge of the view
207 * @param edgeFlags A combination of edge flags describing the edge(s) currently touched
208 * @param pointerId ID of the pointer touching the described edge(s)
217 * Called when the given edge ma
1217 checkNewEdgeDrag(float delta, float odelta, int pointerId, int edge) argument
[all...]

Completed in 157 milliseconds