HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 1 - 25 of 1278) 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/mesa3d/src/gallium/auxiliary/util/
u_rect.h 41 int y0, y1; member in struct:u_rect
53 a->y1 < b->y0 ||
54 b->y1 < a->y0 ||
56 a->y1 < a->y0 ||
58 b->y1 < b->y0));
72 if (b->y1 > a->y1) b->y1 = a->y1;
79 return (r->x1 - r->x0) * (r->y1 - r->y0)
    [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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
equ-reloc.s 6 .set x1, y1
13 y1: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
scomm-directive-4.s 8 .scomm y1,1,4
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLinearGradient.java 14 private float y1; field in class:ShadowLinearGradient
21 float x0, float y0, float x1, float y1, int color0, int color1, Shader.TileMode tile) {
25 this.y1 = y1;
44 return y1;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
HeadsUpAppearInterpolator.java 38 float y1 = 90f; local
40 path.cubicTo(X1 * 0.8f / XTOT, y1 / y2,
41 X1 * 0.8f / XTOT, y1 / y2,
42 X1 / XTOT, y1 / y2);
43 path.cubicTo((X1 + X2 * 0.4f) / XTOT, y1 / y2,
  /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/libxcam/cl_kernel/
kernel_bi_filter.cl 15 #define CALC_SUM(y1,y2,y3,dark1,dark2,dark3) \
16 cur_y = (float8)(y1, y2, y3); \
40 float8 y1, y2, dark1, dark2;
47 y1 = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x - 1, pos_y - PATCH_RADIUS + i)))));
51 CALC_SUM (y1.s1234, y1.s567, y2.s0, dark1.s1234, dark1.s567, dark2.s0);
52 CALC_SUM (y1.s2345, y1.s67, y2.s01, dark1.s2345, dark1.s67, dark2.s01);
53 CALC_SUM (y1.s3456, y1.s7, y2.s012, dark1.s3456, dark1.s7, dark2.s012)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse4.c 34 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1, dqcoeff0, local
82 y1 = _mm_mulhi_epi16(x1, quant1);
85 y1 = _mm_add_epi16(y1, x1);
90 y1 = _mm_mulhi_epi16(y1, quant_shift1);
94 y1 = _mm_xor_si128(y1, sz1);
96 y1 = _mm_sub_epi16(y1, sz1)
    [all...]
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
integral_image.h 110 inline uint32_t GetRegionSum(const int x1, const int y1, const int x2,
112 SCHECK(x1 >= 0 && y1 >= 0 &&
113 x2 >= x1 && y2 >= y1 && x2 < GetWidth() && y2 < GetHeight(),
115 x1, x2, GetWidth(), y1, y2, GetHeight());
120 if (x1 > 0 && y1 > 0) {
123 const uint32_t top = (*this)[y1 - 1][x2];
124 const uint32_t top_left = (*this)[y1 - 1][x1 - 1];
128 everything, left, top, top_left, sum, x1, y1, x2, y2);
135 } else if (y1 > 0) {
138 const uint32_t left = (*this)[y1 - 1][x2]
    [all...]
  /external/pdfium/third_party/agg23/
agg_math.h 25 AGG_INLINE float calc_point_location(float x1, float y1,
29 return ((x - x2) * (y2 - y1)) - ((y - y2) * (x2 - x1));
31 AGG_INLINE float calc_distance(float x1, float y1, float x2, float y2)
34 float dy = y2 - y1;
37 AGG_INLINE float calc_line_point_distance(float x1, float y1,
42 float dy = y2 - y1;
45 return calc_distance(x1, y1, x, y);
agg_clip_liang_barsky.h 32 ((y < clip_box.y1) << 3);
35 inline unsigned clip_liang_barsky(T x1, T y1, T x2, T y2,
46 height -= y1;
66 deltay = (y1 > clip_box.y1) ? -nearzero : nearzero;
70 yin = (float)clip_box.y1;
74 yout = (float)clip_box.y1;
76 float tiny = (yin - y1) / deltay;
93 float touty = (yout - y1) / deltay;
100 *y++ = (T)(y1 + (deltay * tinx))
    [all...]
agg_curves.cpp 29 void curve4_div::init(float x1, float y1,
37 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
40 void curve4_div::recursive_bezier(float x1, float y1,
50 float y12 = (y1 + y2) / 2;
62 float dy = y4 - y1;
68 if (fabs(x1 + x3 - x2 - x2) + fabs(y1 + y3 - y2 - y2) +
97 recursive_bezier(x1, y1, x12, y12, x123, y123, x1234, y1234, level + 1);
100 void curve4_div::bezier(float x1, float y1,
105 m_points.add(point_type(x1, y1));
106 recursive_bezier(x1, y1, x2, y2, x3, y3, x4, y4, 0)
    [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/ltp/testcases/misc/math/float/
float_bessel.c 35 {FUNC_NORMAL, 30, y1, "y1", "y1_inp.ref", "y1_out.ref2",
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.h 105 Word16 y1[], /* i : Filtered adaptive codebook. */
  /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/core/
SkCubicMap.h 16 void setPts(float x1, float y1, float x2, float y2) {
17 this->setPts({x1, y1}, {x2, y2});
  /external/skqp/src/core/
SkCubicMap.h 16 void setPts(float x1, float y1, float x2, float y2) {
17 this->setPts({x1, y1}, {x2, y2});
  /external/adhd/cras/src/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/media/libaudioprocessing/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon45002
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);

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 91011>>