Home
last modified time | relevance | path

Searched refs:ys (Results 1 - 25 of 63) sorted by relevance

123

/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_cse.cpp121 fs_reg *ys = b->src; in operands_match() local
124 return xs[0].equals(ys[0]) && in operands_match()
125 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || in operands_match()
126 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); in operands_match()
131 bool ys0_negate = ys[0].negate; in operands_match()
132 bool ys1_negate = ys[1].file == IMM ? ys[1].f < 0.0f in operands_match()
133 : ys[ in operands_match()
[all...]
H A Dbrw_vec4_cse.cpp101 const src_reg *ys = b->src; in operands_match() local
104 return xs[0].equals(ys[0]) && in operands_match()
105 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || in operands_match()
106 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); in operands_match()
111 src_reg tmp_y = ys[0]; in operands_match()
127 return xs[0].equals(ys[0]) && xs[1].equals(ys[1]) && xs[2].equals(ys[ in operands_match()
[all...]
/third_party/skia/src/gpu/geometry/
H A DGrQuad.cpp19 V4f* xs, V4f* ys) { in map_rect_translate_scale()
34 *ys = skvx::shuffle<1, 3, 1, 3>(r); in map_rect_translate_scale()
38 V4f* xs, V4f* ys, V4f* ws) { in map_quad_general()
40 *ys = m.getSkewY() * qx + (m.getScaleY() * qy + m.getTranslateY()); in map_quad_general()
50 *ys *= iw; in map_quad_general()
58 V4f* xs, V4f* ys, V4f* ws) { in map_rect_general()
61 map_quad_general(rx, ry, matrix, xs, ys, ws); in map_rect_general()
64 // Rearranges (top-left, top-right, bottom-right, bottom-left) ordered skQuadPts into xs and ys
66 static void rearrange_sk_to_gr_points(const SkPoint skQuadPts[4], V4f* xs, V4f* ys) { in rearrange_sk_to_gr_points() argument
68 *ys in rearrange_sk_to_gr_points()
18 map_rect_translate_scale(const SkRect& rect, const SkMatrix& m, V4f* xs, V4f* ys) map_rect_translate_scale() argument
37 map_quad_general(const V4f& qx, const V4f& qy, const SkMatrix& m, V4f* xs, V4f* ys, V4f* ws) map_quad_general() argument
57 map_rect_general(const SkRect& rect, const SkMatrix& matrix, V4f* xs, V4f* ys, V4f* ws) map_rect_general() argument
117 V4f xs, ys; MakeFromSkQuad() local
[all...]
H A DGrQuad.h126 const float* ys() const { return fY; } in ys() function in GrQuad::Type
127 float* ys() { return fY; } in ys() function in GrQuad::Type
146 GrQuad(const skvx::Vec<4, float>& xs, const skvx::Vec<4, float>& ys, Type type) in GrQuad() argument
150 ys.store(fY); in GrQuad()
153 GrQuad(const skvx::Vec<4, float>& xs, const skvx::Vec<4, float>& ys, in GrQuad() argument
158 ys.store(fY); in fType()
H A DGrQuadUtils.cpp70 // interpolating, and calculates new ws in addition to new xs, ys.
320 V4f ys = this->y4f(); in projectedBounds() local
325 V4f y2d = ys / ws; in projectedBounds()
337 y2d = (t * next_ccw(ys) + (1.f - t) * ys) / SkPathPriv::kW0PlaneDistance; in projectedBounds()
350 V4f y2d = ys * ws; in projectedBounds()
550 clippedEdges = crop_simple_rect(cropRect, quad->fDevice.xs(), quad->fDevice.ys(), in CropToRect()
551 quad->fLocal.xs(), quad->fLocal.ys()); in CropToRect()
553 clippedEdges = crop_rect(cropRect, quad->fDevice.xs(), quad->fDevice.ys(), in CropToRect()
554 quad->fLocal.xs(), quad->fLocal.ys(), qua in CropToRect()
659 reset(const skvx::Vec<4, float>& xs, const skvx::Vec<4, float>& ys, const skvx::Vec<4, float>& ws, GrQuad::Type quadType) reset() argument
[all...]
/third_party/optimized-routines/math/tools/
H A Dplot.py22 ys = []
35 ys.append(y)
40 return xs, gs, ys, es
42 def plot(xs, gs, ys, es):
54 ax1.plot(xs,ys,'r.',label='want')
60 xs, gs, ys, es = parse(sys.stdin)
61 plot(xs, gs, ys, es)
/third_party/typescript/tests/baselines/reference/
H A DmismatchedExplicitTypeParameterAndArgumentType.js3 var ys: U[] = [];
4 xs.forEach(x => ys.push(f(x)));
5 return ys;
17 var ys = [];
18 xs.forEach(function (x) { return ys.push(f(x)); });
19 return ys;
H A DbooleanFilterAnyArray.js18 var ys: any[]; variable
19 var ys = realanys.filter(Boolean)
31 var ys; variable
32 var ys = realanys.filter(Boolean); variable
H A DtaggedTemplateStringsWithTagNamedDeclare.js2 function declare(x: any, ...ys: any[]) {
13 var ys = [];
15 ys[_i - 1] = arguments[_i];
H A DtaggedTemplateStringsWithTagNamedDeclareES6.js2 function declare(x: any, ...ys: any[]) {
8 function declare(x, ...ys) {
H A DfunctionTypeArgumentArrayAssignment.js9 var ys: U[] = [];
18 var ys = [];
H A DgenericArray0.js9 var ys: U[] = [];
17 var ys = [];
H A DarrayLiteralsWithRecursiveGenerics.js22 var ys = [list, list2]; // {}[] variable
65 var ys = [list, list2]; // {}[] variable
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
H A Dequal_benchmark.cc42 std::vector<T> ys = xs; in BM_absl_equal_benchmark() local
44 const bool same = absl::equal(xs.begin(), xs.end(), ys.begin(), ys.end()); in BM_absl_equal_benchmark()
52 std::vector<T> ys = xs; in BM_std_equal_benchmark() local
54 const bool same = std::equal(xs.begin(), xs.end(), ys.begin()); in BM_std_equal_benchmark()
62 std::vector<T> ys = xs; in BM_memcmp_benchmark() local
65 std::memcmp(xs.data(), ys.data(), xs.size() * sizeof(T)) == 0; in BM_memcmp_benchmark()
/third_party/lzma/CPP/Windows/Control/
H A DDialog.cpp291 int ys = RECT_SIZE_Y(rect); in NormalizeSize() local
302 if (xs <= xsW && ys <= ysW) in NormalizeSize()
312 if (ys < ysW) y += (ysW - ys) / 2; else ys = ysW; in NormalizeSize()
313 Move(x, y, xs, ys, true); in NormalizeSize()
369 const int ys = RECT_SIZE_Y(rect); in NormalizePosition() local
373 if (xs <= xs2 && ys <= ys2) in NormalizePosition()
376 const int y = rect2.top + (ys2 - ys) / 2; in NormalizePosition()
379 Move(x, y, xs, ys, tru in NormalizePosition()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dlibwebpenc_common.c211 int ys = y >> !!p; in ff_libwebp_get_frame() local
212 for (y2 = ys; y2 < FFMIN(ys + bs2, h); y2++) { in ff_libwebp_get_frame()
227 int ys = y >> !!p; in ff_libwebp_get_frame() local
228 for (y2 = ys; y2 < FFMIN(ys + bs2, h); y2++) { in ff_libwebp_get_frame()
/third_party/mksh/
H A Dsyn.c1127 struct yyrecursive_state *ys; in yyrecursive() local
1138 ys = alloc(sizeof(struct yyrecursive_state), ATEMP); in yyrecursive()
1141 ys->old_nesting_type = subshell_nesting_type; in yyrecursive()
1145 ys->old_reject = reject; in yyrecursive()
1146 ys->old_symbol = symbol; in yyrecursive()
1148 memcpy(ys->old_heres, heres, sizeof(heres)); in yyrecursive()
1149 ys->old_herep = herep; in yyrecursive()
1151 ys->next = e->yyrecursive_statep; in yyrecursive()
1152 e->yyrecursive_statep = ys; in yyrecursive()
1167 struct yyrecursive_state *ys; in yyrecursive_pop() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DHebrewCalendar.java806 long ys = startOfYear(year); // 1st day of year in handleComputeFields()
807 int dayOfYear = (int)(d - ys); in handleComputeFields()
812 ys = startOfYear(year); in handleComputeFields()
813 dayOfYear = (int)(d - ys); in handleComputeFields()
H A DIslamicCalendar.java588 long ys = 0; in yearStart()
592 ys = (year-1)*354 + (long)Math.floor((3+11*year)/30.0); in yearStart()
594 ys = trueMonthStart(12*(year-1)); in yearStart()
600 ys = yrStartLinearEstimate + UMALQURA_YEAR_START_ESTIMATE_FIX[year]; in yearStart()
602 return ys; in yearStart()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DHebrewCalendar.java772 long ys = startOfYear(year); // 1st day of year in handleComputeFields()
773 int dayOfYear = (int)(d - ys); in handleComputeFields()
778 ys = startOfYear(year); in handleComputeFields()
779 dayOfYear = (int)(d - ys); in handleComputeFields()
/third_party/icu/icu4c/source/i18n/
H A Dhebrwcal.cpp572 int32_t ys = startOfYear(year, status); // 1st day of year in handleComputeFields() local
573 int32_t dayOfYear = (d - ys); in handleComputeFields()
578 ys = startOfYear(year, status); in handleComputeFields()
579 dayOfYear = (d - ys); in handleComputeFields()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dhebrwcal.cpp572 int32_t ys = startOfYear(year, status); // 1st day of year in handleComputeFields() local
573 int32_t dayOfYear = (d - ys); in handleComputeFields()
578 ys = startOfYear(year, status); in handleComputeFields()
579 dayOfYear = (d - ys); in handleComputeFields()
/third_party/musl/src/math/
H A Dfmal.c168 long double xs, ys, zs, adj; in fmal() local
189 ys = frexpl(y, &ey); in fmal()
248 xy = dd_mul(xs, ys); in fmal()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dfmal.c168 long double xs, ys, zs, adj; in fmal() local
189 ys = frexpl(y, &ey); in fmal()
248 xy = dd_mul(xs, ys); in fmal()
/third_party/backends/backend/
H A Dgt68xx_generic.c230 SANE_Fixed x0, y0, xs, ys; in gt68xx_generic_setup_scan() local
277 ys = SANE_FIX (1.0 * MM_PER_INCH / ydpi); /* one line */ in gt68xx_generic_setup_scan()
306 ys = SANE_FIX (CALIBRATION_HEIGHT); in gt68xx_generic_setup_scan()
357 ys = request->ys; in gt68xx_generic_setup_scan()
370 pixel_ys = SANE_UNFIX (ys) * ydpi / MM_PER_INCH + 0.5; in gt68xx_generic_setup_scan()

Completed in 16 milliseconds

123