Home
last modified time | relevance | path

Searched refs:Lt (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/
Ddirective_elf_size.s5 .Lt: label
6 # CHECK: .size a, .Lt-a
7 .size a, .Lt-a
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/
Ddirective_elf_size.s5 .Lt: label
6 # CHECK: .size a, .Lt-a
7 .size a, .Lt-a
/external/llvm/test/MC/AsmParser/
Ddirective_elf_size.s5 .Lt: label
6 # CHECK: .size a, .Lt-a
7 .size a, .Lt-a
/external/webrtc/webrtc/modules/audio_processing/agc/
Dagc_unittest.cc26 using ::testing::Lt;
95 EXPECT_CALL(checker_, LevelChanged(Lt(500), Eq(179))).Times(1); in TEST_F()
104 EXPECT_CALL(checker_, LevelChanged(Lt(500), Eq(77))).Times(1); in TEST_F()
105 EXPECT_CALL(checker_, LevelChanged(_, Lt(77))).Times(AtLeast(1)); in TEST_F()
151 AllOf(Gt(last_level * 0.95), Lt(last_level * 1.05)))) in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/
Dwhile_loop_constant_sinking_test.cc282 EXPECT_THAT(while_condition->root_instruction(), op::Lt(_, op::Constant())); in TEST_F()
323 op::Lt(_, op::GetTupleElement(op::Constant()))); in TEST_F()
365 EXPECT_THAT(while_condition->root_instruction(), op::Lt(_, op::Constant())); in TEST_F()
416 op::And(op::Lt(_, op::Constant()), op::Lt(_, op::Constant()))); in TEST_F()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dbinary_ops.cc122 auto different_sign = xla::Ne(xla::Lt(x, zero), xla::Lt(y, zero)); in FloorDivImpl()
156 auto same_sign = xla::Eq(xla::Lt(x, zero), xla::Lt(y, zero)); in FloorModImpl()
201 XLA_MAKE_BINARY(Less, xla::Lt(lhs, rhs, extend_dimensions));
243 xla::Lt(abs, xla::ConvertElementType( in Compile()
Dmatrix_band_part_op.cc73 num_lower = xla::Select(xla::Lt(num_lower, zero_index), in Compile()
76 num_upper = xla::Select(xla::Lt(num_upper, zero_index), in Compile()
Dimage_ops.cc64 hue = xla::Select(xla::Lt(hue, zero), xla::Add(hue, one), hue); in RGBToHSV()
320 xla::Select(xla::Lt(hue, zero), xla::Rem(xla::Add(one, hue), one), hue); in Compile()
342 xla::Lt(row_idx, xla::ConstantR0<int32>(cond_builder, num_boxes)); in operator ()()
344 xla::XlaOp results_not_full = xla::Lt( in operator ()()
532 auto valid_elem = xla::Lt( in Compile()
/external/google-breakpad/src/testing/test/
Dgmock-generated-function-mockers_test.cc68 using testing::Lt;
169 EXPECT_CALL(mock_foo_, VoidReturning(Lt(100))); in TEST_F()
204 Lt(100), 5U, NULL, "hi")) in TEST_F()
231 EXPECT_CALL(mock_foo_, TakesConst(Lt(10))) in TEST_F()
295 Lt(100), 5U, NULL, "hi")) in TEST_F()
Dgmock-generated-matchers_test.cc67 using testing::Lt;
124 EXPECT_THAT(t, (Args<0, 1>(Lt()))); in TEST()
125 EXPECT_THAT(t, (Args<1, 2>(Lt()))); in TEST()
138 EXPECT_THAT(t, Not(Args<2, 1>(Lt()))); in TEST()
163 EXPECT_THAT(t, (Args<0, 1, 3>(Args<0, 2>(Lt())))); in TEST()
168 const Matcher<Tuple3> m = Args<1, 2>(Lt()); in TEST()
175 const Matcher<const Tuple3&> m = Args<0, 1>(Lt()); in TEST()
195 const Matcher<tuple<int, bool, char> > m = Args<2, 0>(Lt()); in TEST()
203 Args<0, 2, 3>(Args<2, 0>(Lt())); in TEST()
960 EXPECT_THAT(42, TwoOf(Gt(0), Lt(50), Eq(10))); in TEST()
[all …]
Dgmock-matchers_test.cc94 using testing::Lt;
848 Matcher<const string&> m1 = Lt("Hello"); in TEST()
856 Matcher<int> m = Lt(5); in TEST()
1192 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1197 Matcher<int> is_negative = Lt(0); in TEST()
1300 EXPECT_THAT(p, Not(Pair(Lt(25), "foo"))); in TEST()
1308 EXPECT_THAT(p, Not(Pair(Lt(13), HasSubstr("a")))); in TEST()
1313 Matcher<int> is_negative = Lt(0); in TEST()
1866 Matcher<const Tuple2&> m = Lt(); in TEST()
1874 Matcher<const Tuple2&> m = Lt(); in TEST()
[all …]
/external/googletest/googlemock/test/
Dgmock-generated-matchers_test.cc78 using testing::Lt;
964 EXPECT_THAT(42, TwoOf(Gt(0), Lt(50), Eq(10))); in TEST()
965 EXPECT_THAT(0, Not(TwoOf(Gt(-1), Lt(1), Eq(0)))); in TEST()
1143 std::vector<Matcher<int>> matchers{Ge(1), Lt(2)}; in TEST()
1195 std::vector<Matcher<int>> matchers{Lt(1), Ge(2)}; in TEST()
1200 EXPECT_THAT(0, AnyOfArray({Lt(0), Lt(1)})); in TEST()
1201 EXPECT_THAT(1, Not(AllOfArray({Lt(0), Lt(1)}))); in TEST()
1285 EXPECT_THAT(p, AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(5)))); in TEST()
1286 EXPECT_THAT(p, Not(AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(3))))); in TEST()
1291 EXPECT_THAT(p, AnyOf(Pointee(Eq(5)), Pointee(Lt(0)), Pointee(Lt(5)))); in TEST()
[all …]
Dgmock-function-mocker_test.cc58 using testing::Lt;
191 EXPECT_CALL(mock_foo_, VoidReturning(Lt(100))); in TEST_F()
226 Lt(100), 5U, NULL, "hi")) in TEST_F()
253 EXPECT_CALL(mock_foo_, TakesConst(Lt(10))) in TEST_F()
333 Lt(100), 5U, NULL, "hi")) in TEST_F()
Dgmock-generated-function-mockers_test.cc59 using testing::Lt;
194 EXPECT_CALL(mock_foo_, VoidReturning(Lt(100))); in TEST_F()
228 EXPECT_CALL(mock_foo_, Decimal(true, 'a', 0, 0, 1L, A<float>(), Lt(100), 5U, in TEST_F()
255 EXPECT_CALL(mock_foo_, TakesConst(Lt(10))) in TEST_F()
333 EXPECT_CALL(mock_foo_, CTDecimal(true, 'a', 0, 0, 1L, A<float>(), Lt(100), 5U, in TEST_F()
Dgmock-matchers_test.cc1088 Matcher<const std::string&> m1 = Lt("Hello"); in TEST()
1096 Matcher<int> m = Lt(5); in TEST()
1147 EXPECT_CALL(helper, Call(Lt(ByRef(m)))); in TEST()
1505 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1534 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1542 Matcher<int> is_negative = Lt(0); in TEST()
1645 EXPECT_THAT(p, Not(Pair(Lt(25), "foo"))); in TEST()
1653 EXPECT_THAT(p, Not(Pair(Lt(13), HasSubstr("a")))); in TEST()
1664 Matcher<int> is_negative = Lt(0); in TEST()
1693 EXPECT_THAT(pair, Not(Pair(Lt(7), "ABC"))); in TEST()
[all …]
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc179 XlaOp p = Select(Lt(abs_x, ScalarLike(x, 2.0)), in ErfcImpl()
183 return Select(Lt(x, ScalarLike(x, 0)), ScalarLike(x, 2.0) - y, y); in ErfcImpl()
234 return Select(Lt(Abs(x), ScalarLike(x, 1)), ErfImpl(x), in Erf()
266 auto lt = Lt(w, ScalarLike(x, 5.0)); in ErfInv()
331 XlaOp need_to_reflect = Lt(input, one_half); in Lgamma()
442 XlaOp need_to_reflect = Lt(input, one_half); in Digamma()
Dsvd.cc156 BroadcastInDim(Lt(sigma, eps), x_shape.dimensions(), broadcast_dims), v, in HouseRow()
160 beta = Select(Lt(Add(sigma, ZerosLike(beta), broadcast_dims), eps), in HouseRow()
223 BroadcastInDim(Lt(sigma, eps), x_shape.dimensions(), broadcast_dims), v, in HouseCol()
227 beta = Select(Lt(Add(sigma, ZerosLike(beta), broadcast_dims), eps), in HouseCol()
278 return Lt(i, ScalarLike(i, n - 2)); in HouseHolderBidiagonalization()
442 rot.s = Select(Lt(Abs(d), eps), zeros, -tmp); in GetOneSidedJacobiRotation()
443 rot.c = Select(Lt(Abs(d), eps), ones, Mul(u, tmp)); in GetOneSidedJacobiRotation()
612 auto tol_cond = ReduceAll(Lt(tol, norms.off_diagonal_norm), in WhileLoopFn()
626 return Lt(p, ScalarLike(p, matrix_dimension - 1)); in WhileLoopFn()
636 return Lt(q, ScalarLike(q, matrix_dimension)); in WhileLoopFn()
Dcomparators.cc88 auto is_negative = Lt(signed_value, Zero(value.builder(), signed_type)); in BitcastConvertFloatingPointToIntegral()
149 builder, Lt); in CreateScalarLtComputation()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dscalar_computations_test.cc611 TestCompare<int32>(9, 7, false, &Lt); in XLA_TEST_F()
613 std::numeric_limits<int32>::max(), true, &Lt); in XLA_TEST_F()
644 TestCompare<uint32>(9, 7, false, &Lt); in XLA_TEST_F()
645 TestCompare<uint32>(0, std::numeric_limits<uint32>::max(), true, &Lt); in XLA_TEST_F()
673 TestCompare<float>(9.0, 7.2, false, &Lt); in XLA_TEST_F()
679 TestCompare<float>(-INFINITY, -0.0, true, &Lt); in XLA_TEST_F()
683 TestCompare<float>(-0.0, 0.0, false, &Lt); in XLA_TEST_F()
686 TestCompare<float>(0.0, INFINITY, true, &Lt); in XLA_TEST_F()
Dwhile_test.cc635 Lt(iteration, ConstantR0<int32>(&builder, c1)); in XLA_TEST_F()
645 Lt(iteration, ConstantR0<int32>(&builder, c2)); in XLA_TEST_F()
714 Lt(iteration, ConstantR0<int32>(&builder, c1)); in XLA_TEST_F()
724 Lt(iteration, ConstantR0<int32>(&builder, c2)); in XLA_TEST_F()
779 Lt(iteration, ConstantR0<int32>(&builder, c1)); in XLA_TEST_F()
789 Lt(iteration, ConstantR0<int32>(&builder, c2)); in XLA_TEST_F()
1053 Lt(cond_t, ConstantR0<int32>(&cond, 30)); in XLA_TEST_F()
1096 Lt(i, ConstantR0<int32>(&builder, 7)); in XLA_TEST_F()
1106 Lt(prev, ConstantR0<int32>(&builder, 30)); in XLA_TEST_F()
1284 Lt(iteration, ConstantR0<int32>(&builder, loop_limit)); in BM_WhileLoop()
/external/icu/icu4c/source/data/brkitr/
Den.txt49 "Lt.",
114 "Lt.Cdr.",
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DLt.java29 public class Lt extends Operation class
/external/libunwind/doc/
Dcommon.tex.in5 \newcommand{\Lt}{\symbol{"3C}}
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
Drtp_rtcp_before_streaming_test.cc25 EXPECT_THAT(channel_ = voe_base_->CreateChannel(), Not(Lt(0))); in SetUp()
/external/icu/icu4c/source/data/brkitr/rules/
Dtitle.txt13 $Cased = [[:Upper_Case:][:Lower_Case:][:Lt:] - $CaseIgnorable];

12345678910>>...13