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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/odr/
a.h 4 } y1;
18 return y1.n + e1 + y1.f + x1.n;
  /external/valgrind/memcheck/tests/
badrw.c 12 char y1; local
25 y1 = *x1;
26 *x1 = y1;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
g_pitch.c 31 Word16 y1[], /* (i) : filtered adaptive codebook. */
38 /* Compute scalar product <y1[],y1[]> */
40 /* Compute scalar product <xn[],y1[]> */
41 xy = extract_h(Dot_product12_asm(xn, y1, L_subfr, &exp_xy));
42 yy = extract_h(Dot_product12_asm(y1, y1, L_subfr, &exp_yy));
45 /* Compute scalar product <xn[],y1[]> */
46 xy = extract_h(Dot_product12(xn, y1, L_subfr, &exp_xy));
47 yy = extract_h(Dot_product12(y1, y1, L_subfr, &exp_yy))
    [all...]
  /external/libvncserver/libvncserver/
draw.c 3 void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col)
11 for(j=y1;j<y2;j++)
14 rfbMarkRectAsModified(s,x1,y1,x2,y2);
31 void rfbDrawLine(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,rfbPixel col)
40 #define SWAPPOINTS { i=x1; x1=x2; x2=i; i=y1; y1=y2; y2=i; }
41 if(abs(x1-x2)<abs(y1-y2)) {
42 if(y1>y2)
44 for(i=y1;i<=y2;i++)
45 SETPIXEL(x1+(i-y1)*(x2-x1)/(y2-y1),i)
    [all...]
  /external/skia/src/animator/
SkDrawLine.cpp 20 SK_MEMBER(y1, Float),
28 SkLine::SkLine() : x1(0), x2(0), y1(0), y2(0) {
33 maker.fCanvas->drawLine(x1, y1, x2, y2, *maker.fPaint);
SkDrawLine.h 23 SkScalar y1; member in class:SkLine
  /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));
62 if (b->y1 > a->y1) b->y1 = a->y1;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
equ-reloc.s 6 .set x1, y1
13 y1: label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
scomm-directive-4.s 8 .scomm y1,1,4
  /packages/apps/Camera2/src/com/android/camera/util/
DebugBoundsRenderer.java 48 public static void drawBounds(Canvas canvas, Paint paint, float size, float x1, float y1,
52 canvas.drawLine(x1, y1, x1 + size, y1, paint);
54 canvas.drawLine(x1, y1, x1, y1 + size, paint);
58 canvas.drawLine(x2 - size, y1, x2, y1, paint);
60 canvas.drawLine(x2, y1, x2, y1 + size, paint);
76 float cY = (y1 + y2) / 2
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse4.c 36 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1, local
84 y1 = _mm_mulhi_epi16(x1, quant1);
87 y1 = _mm_add_epi16(y1, x1);
92 y1 = _mm_mulhi_epi16(y1, quant_shift1);
96 y1 = _mm_xor_si128(y1, sz1);
98 y1 = _mm_sub_epi16(y1, sz1)
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 11 Y<(1 >> 2)> *y1; variable
  /external/clang/test/SemaCXX/
cast-lvalue-to-rvalue-reference.cpp 6 S&& y1 = (S&&)x; variable
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.h 105 Word16 y1[], /* i : Filtered adaptive codebook. */
  /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,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
geometry_utils.h 33 static AK_FORCE_INLINE float getAngle(const int x1, const int y1, const int x2, const int y2) {
35 const int dy = y1 - y2;
52 static AK_FORCE_INLINE int getDistanceInt(const int x1, const int y1, const int x2,
54 return static_cast<int>(hypotf(static_cast<float>(x1 - x2), static_cast<float>(y1 - y2)));
  /external/skia/src/svg/parser/
SkSVGLine.cpp 16 SVG_ATTRIBUTE(y1),
26 SVG_ADD_ATTRIBUTE(y1);
  /frameworks/base/graphics/java/android/graphics/
LinearGradient.java 45 @param y1 The y-coordinate for the end of the gradient line
52 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[],
64 mY1 = y1;
68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
75 @param y1 The y-coordinate for the end of the gradient line
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1,
86 mY1 = y1;
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...]
  /device/google/dragon/audio/hal/dsp/
eq.c 50 float y1 = q->y1; local
61 - a1*y1 - a2*y2;
65 y2 = y1;
66 y1 = y;
70 q->y1 = y1;
85 float y1 = q->y1; local
96 - a1*y1 - a2*y2
112 float y1 = q->y1; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon29343
51 return (((((p->a * x >> 14) + p->b) * x >> 14) + p->c) * x >> 14) + p->y1;
54 p->y0 = p->y1;
55 p->y1 = p->y2;
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);
  /external/pdfium/third_party/agg23/
agg_math.h 25 AGG_INLINE FX_FLOAT calc_point_location(FX_FLOAT x1, FX_FLOAT y1,
29 return FXSYS_Mul(x - x2, y2 - y1) - FXSYS_Mul(y - y2, x2 - x1);
31 AGG_INLINE FX_FLOAT calc_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2)
34 FX_FLOAT dy = y2 - y1;
37 AGG_INLINE FX_FLOAT calc_line_point_distance(FX_FLOAT x1, FX_FLOAT y1,
42 FX_FLOAT dy = y2 - y1;
45 return calc_distance(x1, y1, x, y);
  /external/libvncserver/examples/
zippy.c 13 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2);
15 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2);
16 void draw_primary_colours_generic(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2);
17 void draw_primary_colours_generic_fast(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2);
49 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2)
55 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2)
58 for (i=y1; i < y2; i++){
81 void draw_primary_colours_generic(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2)
85 for(j=y1;j<y2;j++)
87 if(j<y1*2/3+y2/3
    [all...]
  /external/tremolo/Tremolo/
asm_arm.h 73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
84 *y = y1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
103 *y = y1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
122 *y = y1 << 1;
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.image.js 6 The data syntax is [ [ image, x1, y1, x2, y2 ], ... ] where (x1, y1) and
129 x1 = points[i + 1], y1 = points[i + 2],
145 if (y1 > y2) {
147 y2 = y1;
148 y1 = tmp;
157 tmp = 0.5 * (y2-y1) / (img.height - 1);
158 y1 -= tmp;
163 if (x1 == x2 || y1 == y2 ||
165 y1 >= yaxis.max || y2 <= yaxis.min
    [all...]

Completed in 462 milliseconds

1 2 3 4 5 6 7 8 91011>>