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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/time/time.cal/time.cal.year/time.cal.year.nonmembers/
literals.pass.cpp 31 year y1 = 2018y; local
32 assert (y1 == year(2018));
41 std::chrono::year y1 = 2020y; local
42 assert (y1 == std::chrono::year(2020));
  /external/clang/test/Modules/Inputs/odr/
a.h 4 } y1;
18 return y1.n + e1 + y1.f + x1.n;
  /external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
BoundingBox.java 21 public float y1; field in class:BoundingBox
36 public BoundingBox(float x1, float y1, float x2, float y2, int category, float score) {
38 this.y1 = y1;
50 * Math.max(0, Math.min(y2, bbx.y2) - Math.max(y1, bbx.y1));
60 area = (x2 - x1) * (y2 - 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/epid-sdk/epid/member/tiny/math/src/
fq6.c 26 Fq2Add(&result->y1, &left->y1, &right->y1);
32 Fq2Sub(&result->y1, &left->y1, &right->y1);
48 Fq2Mul(temp_b, &left->y1, &right->y1); // temp_b = t1
50 Fq2Add(temp_d, &left->y1, &left->y2); // temp_d = t3
51 Fq2Add(temp_e, &right->y1, &right->y2); // temp_e = t
    [all...]
  /external/virglrenderer/src/gallium/auxiliary/util/
u_rect.h 41 int y0, y1; member in struct:u_rect
52 a->y1 < b->y0 ||
53 b->y1 < a->y0));
67 if (b->y1 > a->y1) b->y1 = a->y1;
74 return (r->x1 - r->x0) * (r->y1 - r->y0);
85 b->x0 = b->x1 = b->y0 = b->y1 = 0;
97 d->y1 = MAX2(a->y1, b->y1)
    [all...]
  /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;
  /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/libcxx/test/std/utilities/time/time.cal/time.cal.year/time.cal.year.members/
plus_minus_equal.pass.cpp 26 Y y1{1};
27 if (static_cast<int>(y1 += Ys{ 1}) != 2) return false;
28 if (static_cast<int>(y1 += Ys{ 2}) != 4) return false;
29 if (static_cast<int>(y1 += Ys{ 8}) != 12) return false;
30 if (static_cast<int>(y1 -= Ys{ 1}) != 11) return false;
31 if (static_cast<int>(y1 -= Ys{ 2}) != 9) return false;
32 if (static_cast<int>(y1 -= Ys{ 8}) != 1) return false;
plus_minus.pass.cpp 26 Y y1{1};
27 if (static_cast<int>(+y1) != 1) return false;
28 if (static_cast<int>(-y1) != -1) return false;
decrement.pass.cpp 27 Y y1{10};
28 if (static_cast<int>(--y1) != 9) return false;
29 if (static_cast<int>(y1--) != 9) return false;
30 if (static_cast<int>(y1) != 8) return false;
increment.pass.cpp 27 Y y1{10};
28 if (static_cast<int>(++y1) != 11) return false;
29 if (static_cast<int>(y1++) != 11) return false;
30 if (static_cast<int>(y1) != 12) return false;
ctor.pass.cpp 38 constexpr year y1{1};
39 static_assert(static_cast<int>(y1) == 1, "");
  /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. */
  /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::__anon50838
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 570 milliseconds

1 2 3 4 5 6 7 8 91011>>