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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
chain-external-defs2.h 5 int y2; variable
  /external/clang/test/PCH/
chain-external-defs.c 28 // YB: @y2 = global i32 18
29 // YB-NOT: @y2 = global i32 18
30 int y2 = 18; variable
  /external/clang/test/Modules/Inputs/odr/
b.h 4 } y2; variable in typeref:struct:Y
14 return y2.m + e2 + y2.f + (F<int>{0} == F<int>{1});
  /external/valgrind/memcheck/tests/
badrw.c 11 short y2; local
22 y2 = *x2;
23 *x2 = y2;
  /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...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.h 104 Word16 y2[], /* i : filtered innovation vector */
  /external/pdfium/third_party/agg23/
agg_math.h 26 float x2, float y2,
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;
38 float x2, float y2,
42 float dy = y2 - y1;
47 return ((x - x2) * dy / d) - ((y - y2) * dx / d);
agg_curves.cpp 30 float x2, float y2,
37 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
41 float x2, float y2,
50 float y12 = (y1 + y2) / 2;
52 float y23 = (y2 + y3) / 2;
63 float d2 = fabs(((x2 - x4) * dy) - ((y2 - y4) * dx));
68 if (fabs(x1 + x3 - x2 - x2) + fabs(y1 + y3 - y2 - y2) +
69 fabs(x2 + x4 - x3 - x3) + fabs(y2 + y4 - y3 - y3) <=
101 float x2, float y2,
    [all...]
agg_curves.h 26 float x2, float y2,
33 cp[3] = y2;
40 float x2, float y2,
47 cp[3] = y2;
69 float x2, float y2,
74 init(x1, y1, x2, y2, x3, y3, x4, y4);
87 float x2, float y2,
125 float x2, float y2,
129 float x2, float y2,
143 float x2, float y2,
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
equ-reloc.s 7 .set x2, y2
15 y2: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
scomm-directive-4.s 6 .scomm y2,2,4
  /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;
48 y2 = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x, 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);
54 CALC_SUM (y1.s4567, y2.s01, y2.s23, dark1.s4567, dark2.s01, dark2.s23);
55 CALC_SUM (y1.s567, y2.s0123, y2.s4, dark1.s567, dark2.s0123, dark2.s4)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
HeadsUpAppearInterpolator.java 39 float y2 = 80f; 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 49 float x2, float y2) {
64 canvas.drawLine(x2 - size, y2, x2, y2, paint);
66 canvas.drawLine(x2, y2- size, x2, y2, paint);
70 canvas.drawLine(x1, y2, x1 + size, y2, paint);
72 canvas.drawLine(x1, y2 - size, x1, y2, paint);
76 float cY = (y1 + y2) / 2
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}} variable
  /external/clang/test/SemaCXX/
cast-lvalue-to-rvalue-reference.cpp 7 S&& y2 = reinterpret_cast<S&&>(x); variable
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
integral_image.h 111 const int y2) const {
113 x2 >= x1 && y2 >= y1 && x2 < GetWidth() && y2 < GetHeight(),
115 x1, x2, GetWidth(), y1, y2, GetHeight());
117 const uint32_t everything = (*this)[y2][x2];
122 const uint32_t left = (*this)[y2][x1 - 1];
128 everything, left, top, top_left, sum, x1, y1, x2, y2);
132 const uint32_t top = (*this)[y2][x1 - 1];
156 const int x2, const int y2) const {
157 SCHECK(x1 < x2 && y1 < y2, "Bounds out of order!! TL:%d,%d BR:%d,%d"
    [all...]
  /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;
53 const int y2) {
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});
  /frameworks/av/media/libaudioprocessing/
AudioResamplerCubic.h 43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon45002
55 p->y1 = p->y2;
56 p->y2 = p->y3;
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;
  /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++){
61 if (i < y2 ) {
66 if (i < y2/3*2) {
71 if (i < y2/3)
    [all...]
  /external/libldac/src/
sigana_ldac.c 37 SCALAR y0, y1, y2; local
41 y2 = p_spec[1];
42 tmp = y1 * y1 + y2 * y2;
49 y1 = y2;
50 y2 = p_spec[isp+1];
51 tmp = y1 * y1 + (y0-y2) * (y0-y2);
58 y1 = y2;
59 y2 = p_spec[isp+1]
    [all...]
  /external/adhd/cras/src/dsp/
eq.c 51 float y2 = q->y2; local
61 - a1*y1 - a2*y2;
65 y2 = y1;
71 q->y2 = y2;
86 float y2 = q->y2; local
96 - a1*y1 - a2*y2;
100 y2 = y1
113 float y2 = q->y2; local
    [all...]
  /frameworks/base/libs/hwui/
Patch.cpp 103 float y2 = 0.0f; local
113 y2 = y1 + floorf(segment * stretchY + 0.5f);
115 y2 = y1 + segment * rescaleY;
118 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
123 generateRow(xDivs, xCount, vertex, y1, y2, v1, v2, stretchX, rescaleX, width,
127 y1 = y2;
134 y2 = height;
135 generateRow(xDivs, xCount, vertex, y1, y2, v1, 1.0f, stretchX, rescaleX, width, bitmapWidth,
147 float y2, float v1, float v2, float stretchX, float rescaleX, float width
    [all...]

Completed in 1572 milliseconds

1 2 3 4 5 6 7 8 91011>>