Home
last modified time | relevance | path

Searched refs:ys (Results 1 – 25 of 118) sorted by relevance

12345

/third_party/mesa3d/src/intel/compiler/
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[1].negate; in operands_match()
135 float ys1_imm = ys[1].f; in operands_match()
139 ys[0].negate = false; in operands_match()
140 ys[1].negate = false; in operands_match()
[all …]
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[2]); in operands_match()
129 return (xs[0].equals(ys[0]) && xs[1].equals(ys[1])) || in operands_match()
130 (xs[1].equals(ys[0]) && xs[0].equals(ys[1])); in operands_match()
/third_party/node/deps/npm/node_modules/concat-map/test/
Dmap.js7 var ys = concatMap(xs, function (x, ix) {
11 t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]);
18 var ys = concatMap(xs, function (x) {
21 t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
27 var ys = concatMap(xs, function (x) {
30 t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
36 var ys = concatMap(xs, function () {});
37 t.same(ys, [ undefined, undefined, undefined, undefined ]);
/third_party/skia/src/gpu/geometry/
DGrQuad.cpp19 V4f* xs, V4f* ys) { in map_rect_translate_scale() argument
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() argument
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() argument
61 map_quad_general(rx, ry, matrix, xs, ys, ws); in map_rect_general()
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 = V4f{skQuadPts[0].fY, skQuadPts[3].fY, skQuadPts[1].fY, skQuadPts[2].fY}; in rearrange_sk_to_gr_points()
117 V4f xs, ys; in MakeFromSkQuad() local
[all …]
DGrQuad.h126 const float* ys() const { return fY; } in ys() function
127 float* ys() { return fY; } in ys() function
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);
/third_party/optimized-routines/math/tools/
Dplot.py22 ys = []
35 ys.append(y)
40 return xs, gs, ys, es
42 def plot(xs, gs, ys, es): argument
54 ax1.plot(xs,ys,'r.',label='want')
60 xs, gs, ys, es = parse(sys.stdin) variable
61 plot(xs, gs, ys, es)
/third_party/typescript/tests/baselines/reference/
DiteratorsAndStrictNullChecks.types23 const ys = [4, 5];
24 >ys : number[]
29 xs.push(...ys);
30 >xs.push(...ys) : number
34 >...ys : number
35 >ys : number[]
DmismatchedExplicitTypeParameterAndArgumentType.js3 var ys: U[] = []; variable
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;
DiteratorsAndStrictNullChecks.symbols16 const ys = [4, 5];
17 >ys : Symbol(ys, Decl(iteratorsAndStrictNullChecks.ts, 7, 5))
19 xs.push(...ys);
23 >ys : Symbol(ys, Decl(iteratorsAndStrictNullChecks.ts, 7, 5))
DmismatchedExplicitTypeParameterAndArgumentType.types8 var ys: U[] = [];
9 >ys : U[]
12 xs.forEach(x => ys.push(f(x)));
13 >xs.forEach(x => ys.push(f(x))) : void
17 >x => ys.push(f(x)) : (x: T) => number
19 >ys.push(f(x)) : number
20 >ys.push : (...items: U[]) => number
21 >ys : U[]
27 return ys;
28 >ys : U[]
DmismatchedExplicitTypeParameterAndArgumentType.symbols13 var ys: U[] = [];
14 >ys : Symbol(ys, Decl(mismatchedExplicitTypeParameterAndArgumentType.ts, 1, 7))
17 xs.forEach(x => ys.push(f(x)));
22 >ys.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --))
23 >ys : Symbol(ys, Decl(mismatchedExplicitTypeParameterAndArgumentType.ts, 1, 7))
28 return ys;
29 >ys : Symbol(ys, Decl(mismatchedExplicitTypeParameterAndArgumentType.ts, 1, 7))
DiteratorsAndStrictNullChecks.js9 const ys = [4, 5]; variable
10 xs.push(...ys);
20 const ys = [4, 5]; variable
21 xs.push(...ys);
DtaggedTemplateStringsWithTagNamedDeclare.types2 function declare(x: any, ...ys: any[]) {
3 >declare : (x: any, ...ys: any[]) => void
5 >ys : any[]
10 >declare : (x: any, ...ys: any[]) => void
DtaggedTemplateStringsWithTagNamedDeclareES6.types2 function declare(x: any, ...ys: any[]) {
3 >declare : (x: any, ...ys: any[]) => void
5 >ys : any[]
10 >declare : (x: any, ...ys: any[]) => void
DbooleanFilterAnyArray.js18 var ys: any[]; variable
19 var ys = realanys.filter(Boolean)
31 var ys; variable
32 var ys = realanys.filter(Boolean);
DtaggedTemplateStringsWithTagNamedDeclare.js2 function declare(x: any, ...ys: any[]) {
13 var ys = [];
15 ys[_i - 1] = arguments[_i];
DtaggedTemplateStringsWithTagNamedDeclare.symbols2 function declare(x: any, ...ys: any[]) {
5 >ys : Symbol(ys, Decl(taggedTemplateStringsWithTagNamedDeclare.ts, 0, 24))
DtaggedTemplateStringsWithTagNamedDeclareES6.symbols2 function declare(x: any, ...ys: any[]) {
5 >ys : Symbol(ys, Decl(taggedTemplateStringsWithTagNamedDeclareES6.ts, 0, 24))
DgenericArray0.symbols15 var ys: U[] = [];
16 >ys : Symbol(ys, Decl(genericArray0.ts, 7, 7))
DfunctionTypeArgumentArrayAssignment.symbols21 var ys: U[] = [];
22 >ys : Symbol(ys, Decl(functionTypeArgumentArrayAssignment.ts, 7, 11))
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
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/7zip/
DGuiCommon.rc20 #undef ys
44 #define ys (yc + m + m)
51 #define by1 (ys - m - bys)
66 // #define MY_DIALOG DIALOG 0, 0, xs, ys MY_MODAL_DIALOG_STYLE MY_FONT
67 // #define MY_RESIZE_DIALOG DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT
68 #define MY_PAGE DIALOG 0, 0, xs, ys MY_PAGE_STYLE MY_FONT
/third_party/lzma/CPP/Windows/Control/
DDialog.cpp260 int ys = RECT_SIZE_Y(rect); in NormalizeSize() local
271 if (xs <= xsW && ys <= ysW) in NormalizeSize()
281 if (ys < ysW) y += (ysW - ys) / 2; else ys = ysW; in NormalizeSize()
282 Move(x, y, xs, ys, true); in NormalizeSize()
338 const int ys = RECT_SIZE_Y(rect); in NormalizePosition() local
342 if (xs <= xs2 && ys <= ys2) in NormalizePosition()
345 const int y = rect2.top + (ys2 - ys) / 2; in NormalizePosition()
348 Move(x, y, xs, ys, true); in NormalizePosition()
/third_party/typescript/tests/cases/compiler/
DmismatchedExplicitTypeParameterAndArgumentType.ts2 var ys: U[] = [];
3 xs.forEach(x => ys.push(f(x)));
4 return ys;
/third_party/mksh/
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 …]

12345