HomeSort by relevance Sort by last modified time
    Searched refs:y0 (Results 1 - 25 of 575) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libhevc/decoder/
ihevcd_intra_pred_mode_prediction.h 43 WORD32 y0);
ihevcd_parse_residual.h 40 WORD32 x0, WORD32 y0,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_rect.h 36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
61 if (b->y0 < a->y0) b->y0 = a->y0;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
  /external/clang/test/PCH/
functions.c 8 int f0(int x0, int y0, ...) { return x0 + y0; }
pr4489.c 25 struct y0 { int i; } y0[1] = {}; variable in typeref:struct:y0
  /external/mesa3d/src/gallium/auxiliary/util/
u_rect.h 36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
61 if (b->y0 < a->y0) b->y0 = a->y0;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
vp9_textblit.c 60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
vp9_textblit.c 60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
vp9_textblit.c 60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
  /frameworks/base/graphics/java/android/graphics/
LinearGradient.java 43 @param y0 The y-coordinate for the start of the gradient line
52 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[],
62 mY0 = y0;
68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
73 @param y0 The y-coordinate for the start of the gradient line
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1,
84 mY0 = y0;
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
115 private native long nativeCreate1(float x0, float y0, float x1, float y1,
117 private native long nativeCreate2(float x0, float y0, float x1, float y1
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)
  /external/chromium_org/third_party/skia/src/core/
SkEdge.h 17 // This correctly favors the lower-pixel when y0 is on a 1/2 pixel boundary
18 #define SkEdge_Compute_DY(top, y0) ((top << 6) + 32 - (y0))
89 SkFDot6 x0, y0, x1, y1;
94 y0 = int(p0.fY * scale);
101 if (y0 > y1) {
103 SkTSwap(y0, y1);
107 int top = SkFDot6Round(y0);
115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
116 const int dy = SkEdge_Compute_DY(top, y0);
    [all...]
SkEdge.cpp 36 SkFDot6 x0, y0, x1, y1; local
41 y0 = int(p0.fY * scale);
48 if (y0 > y1) {
50 SkTSwap(y0, y1);
54 int top = SkFDot6Round(y0);
66 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
67 const int dy = SkEdge_Compute_DY(top, y0);
84 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1)
90 y0 >>= 10;
93 SkASSERT(y0 <= y1)
171 SkFDot6 x0, y0, x1, y1, x2, y2; local
321 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)
  /external/skia/src/core/
SkEdge.h 17 // This correctly favors the lower-pixel when y0 is on a 1/2 pixel boundary
18 #define SkEdge_Compute_DY(top, y0) ((top << 6) + 32 - (y0))
89 SkFDot6 x0, y0, x1, y1;
94 y0 = int(p0.fY * scale);
101 if (y0 > y1) {
103 SkTSwap(y0, y1);
107 int top = SkFDot6Round(y0);
115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
116 const int dy = SkEdge_Compute_DY(top, y0);
    [all...]
SkEdge.cpp 36 SkFDot6 x0, y0, x1, y1; local
41 y0 = int(p0.fY * scale);
48 if (y0 > y1) {
50 SkTSwap(y0, y1);
54 int top = SkFDot6Round(y0);
66 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
67 const int dy = SkEdge_Compute_DY(top, y0);
84 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1)
90 y0 >>= 10;
93 SkASSERT(y0 <= y1)
171 SkFDot6 x0, y0, x1, y1, x2, y2; local
321 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon38287
54 p->y0 = p->y1;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
60 p->c = (p->y2 - p->y0) >> 1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.h 75 i32 y0,
86 i32 y0,
97 i32 y0,
108 i32 y0,
120 i32 y0,
130 i32 y0,
141 i32 y0,
151 i32 y0,
162 i32 y0,
173 i32 y0,
    [all...]

Completed in 287 milliseconds

1 2 3 4 5 6 7 8 91011>>