Home
last modified time | relevance | path

Searched refs:exp3 (Results 1 – 15 of 15) sorted by relevance

/external/ltp/testcases/realtime/func/pi-tests/
Dparse-testpi1.py39 exp3=re.compile("[1-9]\d{2,3}")
42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
Dparse-testpi2.py40 exp3=re.compile("[1-9]\d{2,3}")
45 if exp1.search(line) and exp2.search(prev_line) and exp3.search(prev_line):
/external/epid-sdk/epid/member/tiny/math/
Dfq12.h105 VeryLargeInt const* exp3);
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cse_test.cc231 auto exp3 = builder.AddInstruction(HloInstruction::CreateUnary( in TEST_F() local
234 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2, exp3})); in TEST_F()
240 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3)); in TEST_F()
247 EXPECT_THAT(first_operand, ::testing::AnyOf(exp1, exp2, exp3)); in TEST_F()
Dhlo_instruction_test.cc670 auto exp3 = builder.AddInstruction( in TEST_F() local
676 {exp3, exp2, exp1}, HloInstruction::FusionKind::kLoop); in TEST_F()
Dbuffer_assignment_test.cc817 auto exp3 = builder.AddInstruction( in TEST_F() local
823 const std::vector<const HloInstruction*> instrs = GetInstructions(exp3); in TEST_F()
/external/epid-sdk/epid/member/tiny/math/src/
Dfq12.c134 VeryLargeInt const* exp3) { in Fq12MultiExp() argument
141 Fq12Exp(&tmp, base3, exp3); in Fq12MultiExp()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DListsTest.java350 List<Object> exp3 = list((Object) 2, "3"); in testCartesianProduct_unrelatedTypes() local
354 .has().exactly(exp1, exp2, exp3, exp4).inOrder(); in testCartesianProduct_unrelatedTypes()
DSetsTest.java437 List<Object> exp3 = list((Object) 2, "3"); in testCartesianProduct_unrelatedTypes() local
441 .has().exactly(exp1, exp2, exp3, exp4).inOrder(); in testCartesianProduct_unrelatedTypes()
/external/guava/guava-tests/test/com/google/common/collect/
DListsTest.java574 List<Object> exp3 = list((Object) 2, "3"); in testCartesianProduct_unrelatedTypes() local
578 .has().exactly(exp1, exp2, exp3, exp4).inOrder(); in testCartesianProduct_unrelatedTypes()
DSetsTest.java724 List<Object> exp3 = list((Object) 2, "3");
728 .has().exactly(exp1, exp2, exp3, exp4).inOrder();
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTestMessageFormat.java1452 String exp3[] = { in testSelectFormat() local
1460 exp3[i] , msgFmt.format(testArgs3[i]) ); in testSelectFormat()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1449 String exp3[] = { in testSelectFormat() local
1457 exp3[i] , msgFmt.format(testArgs3[i]) ); in testSelectFormat()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java3245 int exp3 = exponent / 3; in cbrt() local
3249 (long)(((exp3 + 1023) & 0x7ff)) << 52); in cbrt()
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp174 const char* exp3[] = {"{l", "r}", NOT, "xy", NULL}; in TestToPattern() local
175 expectToPattern(*s, UNICODE_STRING_SIMPLE("[a-z{r\\}}{\\{l}]"), exp3); in TestToPattern()