HomeSort by relevance Sort by last modified time
    Searched refs:edge (Results 26 - 50 of 69) sorted by null

12 3

  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 60 //static void GetStrength(AVCCommonObj *video, uint8 *Strength, AVCMacroblock* MbP, AVCMacroblock* MbQ, int dir, int edge);
293 int edge, QP, QPC; local
317 /* NOTE: edge=0 and edge=1~3 are separate cases because of the difference of MbP, index A and indexB calculation */
318 /* for edge = 1~3, MbP, indexA and indexB remain the same, and thus there is no need to re-calculate them for each edge */
322 /* 1.VERTICAL EDGE + MB BOUNDARY (edge = 0) */
326 //GetStrength(video, Strength, MbP, MbQ, 0, 0); // Strength for 4 blks in 1 stripe, 0 => vertical edge
372 /* 2.VERTICAL EDGE (no boundary), the edges are all inside a MB *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysevents.cc 194 BPoint edge; local
195 GetXYOffset(edge.x, edge.y);
196 edge.x += x;
197 edge.y += y;
198 ConvertToScreen(&edge);
199 set_mouse_position((int)edge.x, (int)edge.y);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 104 final String edge = parent.name + lastNode.name; local
105 scene.addEdge(edge);
106 scene.setEdgeSource(edge, parent);
107 scene.setEdgeTarget(edge, lastNode);
ViewHierarchyScene.java 120 protected Widget attachEdgeWidget(String edge) {
127 protected void attachEdgeSourceAnchor(String edge, ViewNode oldSourceNode, ViewNode sourceNode) {
128 final ConnectionWidget connection = (ConnectionWidget) findWidget(edge);
136 protected void attachEdgeTargetAnchor(String edge, ViewNode oldTargetNode, ViewNode targetNode) {
137 final ConnectionWidget connection = (ConnectionWidget) findWidget(edge);
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 212 // the bottom edge (with some tolerance). Similar for horizCheck.
218 // Check whether the position is near some edge(s).
232 // Not near any edge but inside the rectangle: move.
241 // The "edge" parameter specifies which edges the user is dragging.
242 void handleMotion(int edge, float dx, float dy) {
244 if (edge == GROW_NONE) {
246 } else if (edge == MOVE) {
251 if (((GROW_LEFT_EDGE | GROW_RIGHT_EDGE) & edge) == 0) {
255 if (((GROW_TOP_EDGE | GROW_BOTTOM_EDGE) & edge) == 0) {
262 growBy((((edge & GROW_LEFT_EDGE) != 0) ? -1 : 1) * xDelta
    [all...]
CropImage.java 631 int edge = hv.getHit(event.getX(), event.getY()); local
632 if (edge != HighlightView.GROW_NONE) {
657 int edge = hv.getHit(event.getX(), event.getY()); local
658 if (edge != HighlightView.GROW_NONE) {
659 mMotionEdge = edge;
664 (edge == HighlightView.MOVE)
709 // the edge of the screen causes scrolling but it means
  /packages/apps/Gallery3D/src/com/cooliris/media/
HighlightView.java 186 // the bottom edge (with some tolerance). Similar for horizCheck.
190 // Check whether the position is near some edge(s).
204 // Not near any edge but inside the rectangle: move.
213 // The "edge" parameter specifies which edges the user is dragging.
214 void handleMotion(int edge, float dx, float dy) {
216 if (edge == GROW_NONE) {
218 } else if (edge == MOVE) {
222 if (((GROW_LEFT_EDGE | GROW_RIGHT_EDGE) & edge) == 0) {
226 if (((GROW_TOP_EDGE | GROW_BOTTOM_EDGE) & edge) == 0) {
233 growBy((((edge & GROW_LEFT_EDGE) != 0) ? -1 : 1) * xDelta, (((edge & GROW_TOP_EDGE) != 0) ? -1 : 1) * yDelta)
    [all...]
CropImage.java 745 int edge = hv.getHit(event.getX(), event.getY()); local
746 if (edge != HighlightView.GROW_NONE) {
776 int edge = hv.getHit(event.getX(), event.getY()); local
777 if (edge != HighlightView.GROW_NONE) {
778 mMotionEdge = edge;
783 mMotionHighlightView.setMode((edge == HighlightView.MOVE) ? HighlightView.ModifyMode.Move
826 // the edge of the screen causes scrolling but it means
    [all...]
  /system/core/libpixelflinger/
trap.cpp 604 // the following routine fills a triangle via edge stepping, which
631 struct Edge
633 int32_t x; // edge position in 16.16 coordinates
640 edge_dump( Edge* edge )
643 edge->y_top, edge->y_top/float(TRI_ONE),
644 edge->y_bot, edge->y_bot/float(TRI_ONE),
645 edge->x, edge->x/float(FIXED_ONE)
672 Edge* edge = edges + *pcount; local
862 AAEdge* edge = edges + *pcount; local
    [all...]
  /external/freetype/src/autofit/
afhints.h 89 /* edge hint flags */
124 FT_Byte flags; /* edge/segment flags for this segment */
131 AF_Edge edge; /* the segment's parent edge */ member in struct:AF_SegmentRec_
132 AF_Segment edge_next; /* link to next segment in parent edge */
140 AF_Point first; /* first point in edge segment */
141 AF_Point last; /* last point in edge segment */
153 FT_Byte flags; /* edge flags */
154 FT_Char dir; /* edge direction */
156 AF_Width blue_edge; /* non-NULL if this is a blue edge */
    [all...]
  /frameworks/base/core/java/android/widget/
EdgeGlow.java 87 // How much dragging should effect the height of the edge image.
103 public EdgeGlow(Drawable edge, Drawable glow) {
104 mEdge = edge;
207 // The edge should always be at least partially visible, regardless
219 // Edge should never get larger than the size of its asset.
289 // After absorb, the glow and edge should fade to nothing.
305 // After pull, the glow and edge should fade to nothing.
312 // When receding, we want edge to decrease more slowly
HorizontalScrollView.java 491 // Don't handle edge touches immediately -- they may actually belong to one of our
669 * found (the fading edge is assumed to start at this position)
677 * The fading edge's transparent side should be considered for focus
678 * since it's mostly visible, so we divide the actual fading edge length
1393 final Drawable edge = res.getDrawable(R.drawable.overscroll_edge); local
    [all...]
ScrollView.java 486 // Don't handle edge touches immediately -- they may actually belong to one of our
664 * found (the fading edge is assumed to start at this position)
673 * The fading edge's transparent side should be considered for focus
674 * since it's mostly visible, so we divide the actual fading edge length
1393 final Drawable edge = res.getDrawable(R.drawable.overscroll_edge); local
    [all...]
  /external/libpcap/
optimize.c 108 static void propedom(struct edge *);
120 static void opt_j(struct edge *);
124 static inline void link_inedge(struct edge *, struct block *);
135 static struct block *fold_edge(struct block *, struct edge *);
149 struct edge **edges;
291 struct edge *ep;
301 * Compute edge dominators.
1192 struct edge *p;
1219 * first edge leading to this node.
1224 * If, for the predecessor along that edge, a registe
    [all...]
  /external/bison/src/
print_graph.c 131 edge e;
147 /* The edge source is the current node. */
vcg.c 132 new_edge (&g->edge);
172 /* Initialize an edge with the default values. */
174 new_edge (edge *e)
380 | Edge and nodes into a graph. |
391 add_edge (graph *g, edge *e)
436 open_edge (edge *e, FILE *fout)
501 edge *e;
576 output_edge (edge *e, FILE *fout)
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 573 int edge = mScrollView.getHorizontalFadingEdgeLength(); local
579 rect = new Rect(edge, 0, PAGE_WIDTH, 0);
583 rect = new Rect(edge + 1, 0, PAGE_WIDTH, 0);
584 assertEquals(edge, mScrollView.computeScrollDeltaToGetChildRectOnScreen(rect));
633 int edge = mScrollView.getHorizontalFadingEdgeLength();
644 assertEquals(ITEM_WIDTH - mScrollView.getWidth() + edge, mScrollView.getScrollX());
ScrollViewTest.java 600 int edge = mScrollView.getVerticalFadingEdgeLength(); local
606 rect = new Rect(0, edge, 0, mPageHeight);
610 rect = new Rect(0, edge + 1, 0, mPageHeight);
611 assertEquals(edge, mScrollView.computeScrollDeltaToGetChildRectOnScreen(rect));
661 int edge = mScrollView.getVerticalFadingEdgeLength();
675 assertEquals(edge, mScrollView.getScrollY());
  /external/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 146 ;# Vertical edge filtering requires transposes. For the simple filter,
216 ;# Normal mb vertical edge filter transpose.
474 ;# add outer taps if we have high edge variance
498 ;# only apply wider filter if not high edge variance
640 ;# edge we run into problems. For the loopfilter we require 4 bytes before the mb
1125 lvx v0, r6, r3 ;# v0 = P1 = 16 pels two rows above edge
1126 lvx v1, r5, r3 ;# v1 = P0 = 16 pels one row above edge
1127 lvx v2, 0, r3 ;# v2 = Q0 = 16 pels one row below edge
1128 lvx v3, r4, r3 ;# v3 = Q1 = 16 pels two rows below edge
    [all...]
  /external/webkit/WebKit/chromium/src/mac/
WebInputEventFactory.mm     [all...]
  /external/webkit/WebKit/android/nav/
SelectText.cpp     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /external/webkit/WebKit/android/jni/
JavaBridge.cpp 361 DEFINE_STATIC_LOCAL(AtomicString, edge, ("edge"));
370 if (subtype == edge || subtype == gprs)
  /hardware/broadcom/wlan/bcm4329/src/shared/
siutils.c 1385 uint32 edge = si_gpioevent(sih, GPIO_REGEVT, 0, 0); local
    [all...]
  /external/libvpx/vp8/common/x86/
loopfilter_sse2.asm 237 pandn xmm4, xmm5 ; high edge variance additive
327 ; calculate high edge variance
390 ; calculate high edge variance
651 ; calculate high edge variance
715 ; calculate high edge variance
    [all...]

Completed in 906 milliseconds

12 3