Home
last modified time | relevance | path

Searched refs:kLessThan (Results 1 – 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/tint/src/ast/
Dbinary_expression.h33 kLessThan, enumerator
79 bool IsLessThan() const { return op == BinaryOp::kLessThan; } in IsLessThan()
140 case ast::BinaryOp::kLessThan: in IsComparison()
191 case BinaryOp::kLessThan: in FriendlyName()
Dfor_loop_statement_test.cc28 create<BinaryExpression>(BinaryOp::kLessThan, Expr("i"), Expr(5u)); in TEST_F()
/third_party/skia/src/gpu/geometry/
DGrAATriangulator.h39 enum class Op { kLessThan, kGreaterThan }; enumerator
42 return fOp == Op::kLessThan ? e1->fAlpha < e2->fAlpha in operator()
DGrAATriangulator.cpp634 EventComparator eventLT(EventComparator::Op::kLessThan); in tessellate()
/third_party/mindspore/mindspore/core/utils/
Dcheck_convert_utils.h42 kLessThan = 3, // < enumerator
130 {kLessThan, [](T num1, T num2) -> bool { return num1 < num2; }},
144 {kLessThan, "be less than "}, {kLessEqual, "be less than or equal to "},
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
Dgenerator_impl_binary_test.cc68 BinaryData{"(left < right)", ast::BinaryOp::kLessThan},
Dgenerator_impl.cc719 case ast::BinaryOp::kLessThan: in EmitBinary()
/third_party/mindspore/mindspore/core/ops/
Dgather_d.cc40 CheckAndConvertUtils::Check("dim value", dim_v, kLessThan, "index_rank", x_rank, prim_name); in GatherDInferShape()
Dtranspose.cc57 …(void)CheckAndConvertUtils::CheckInteger("perm element", i, kLessThan, SizeToLong(p_value.size()),… in InferShape()
/third_party/skia/third_party/externals/tint/src/transform/
Dzero_init_workgroup_memory.cc217 ast::BinaryOp::kLessThan, b.Expr(idx), b.Expr(num_iterations)); in Run()
237 ast::BinaryOp::kLessThan, local_index(), b.Expr(num_iterations)); in Run()
Ddecompose_memory_access.cc493 ast::BinaryOp::kLessThan, b.Expr(i), b.Expr(arr_ty->Count())); in LoadFunc()
595 ast::BinaryOp::kLessThan, b.Expr(i), b.Expr(arr_ty->Count())); in StoreFunc()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dtoken.h84 kLessThan, enumerator
Dparser_impl_relational_expression_test.cc32 EXPECT_EQ(ast::BinaryOp::kLessThan, rel->op); in TEST_F()
Dtoken.cc75 case Token::Type::kLessThan: in TypeToName()
Dparser_impl.cc945 if (!peek_is(Token::Type::kLessThan)) { in variable_qualifier()
2523 if (peek_is(Token::Type::kLessThan)) in expect_relational_expr()
2524 op = ast::BinaryOp::kLessThan; in expect_relational_expr()
2870 peek_is(Token::Type::kLessThan, 1)) { in expect_const_expr()
3339 return expect_block(Token::Type::kLessThan, Token::Type::kGreaterThan, use, in expect_lt_gt_block()
Dlexer_test.cc572 TokenData{"<", Token::Type::kLessThan},
Dlexer.cc854 type = Token::Type::kLessThan; in try_punctuation()
/third_party/skia/third_party/externals/tint/src/writer/msl/
Dgenerator_impl_binary_test.cc65 BinaryData{"(left < right)", ast::BinaryOp::kLessThan},
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder_binary_expression_test.cc367 BinaryData{ast::BinaryOp::kLessThan, "OpULessThan"},
428 BinaryData{ast::BinaryOp::kLessThan, "OpSLessThan"},
489 BinaryData{ast::BinaryOp::kLessThan, "OpFOrdLessThan"},
/third_party/skia/third_party/externals/tint/src/resolver/
Dresolver_test.cc1260 ast::BinaryOp::kLessThan,
1422 ParamsFor<i32, i32, bool>(Op::kLessThan),
1429 ParamsFor<u32, u32, bool>(Op::kLessThan),
1436 ParamsFor<f32, f32, bool>(Op::kLessThan),
1447 ParamsFor<vec3<i32>, vec3<i32>, vec3<bool>>(Op::kLessThan),
1454 ParamsFor<vec3<u32>, vec3<u32>, vec3<bool>>(Op::kLessThan),
1461 ParamsFor<vec3<f32>, vec3<f32>, vec3<bool>>(Op::kLessThan),
Dvalidation_test.cc586 auto* compare = create<ast::BinaryExpression>(ast::BinaryOp::kLessThan, in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
Dgenerator_impl_binary_test.cc116 BinaryData{"(left < right)", ast::BinaryOp::kLessThan},
/third_party/skia/third_party/externals/tint/src/writer/glsl/
Dgenerator_impl_binary_test.cc116 BinaryData{"(left < right)", ast::BinaryOp::kLessThan},
Dgenerator_impl.cc60 op == tint::ast::BinaryOp::kLessThan || in IsRelational()
237 case ast::BinaryOp::kLessThan: in EmitVectorRelational()
332 case ast::BinaryOp::kLessThan: in EmitBinary()
/third_party/flutter/skia/src/gpu/
DGrTessellator.cpp500 enum class Op { kLessThan, kGreaterThan }; enumerator
503 return fOp == Op::kLessThan ? e1->fAlpha < e2->fAlpha in operator ()()
2221 EventComparator eventLT(EventComparator::Op::kLessThan); in contours_to_polys()

12