Home
last modified time | relevance | path

Searched refs:exp1 (Results 1 – 25 of 32) sorted by relevance

12

/third_party/ltp/testcases/realtime/func/pi-tests/
Dparse-testpi1.py37 exp1= re.compile("pthread pol 0 pri 0")
42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
Dparse-testpi2.py38 exp1= re.compile("pthread pol 2 pri 10")
45 if exp1.search(line) and exp2.search(prev_line) and exp3.search(prev_line):
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_flrp.c274 int exp1; in sources_are_constants_with_similar_magnitudes() local
277 frexpf(val1[swizzle1[i]].f32, &exp1); in sources_are_constants_with_similar_magnitudes()
285 if (abs(exp0 - exp1) > (23 / 2)) in sources_are_constants_with_similar_magnitudes()
291 int exp1; in sources_are_constants_with_similar_magnitudes() local
294 frexp(val1[swizzle1[i]].f64, &exp1); in sources_are_constants_with_similar_magnitudes()
302 if (abs(exp0 - exp1) > (52 / 2)) in sources_are_constants_with_similar_magnitudes()
/third_party/mindspore/tests/st/pynative/ms_function/
Dtest_nested_calling_ms_function.py111 exp1 = Tensor([75], dtype=mstype.float32)
118 assert np.allclose(out[0].asnumpy(), exp1[0].asnumpy(), 0.0001, 0.0001)
120 assert np.allclose(out[0].asnumpy(), exp1[0].asnumpy(), 0.0001, 0.0001)
/third_party/boost/libs/math/test/
Dtest_hyperexponential_dist.cpp349 boost::math::exponential_distribution<RealT> exp1(rates1[0]); in BOOST_AUTO_TEST_CASE_TEMPLATE() local
350 …BOOST_CHECK_CLOSE(boost::math::pdf(hexp1, static_cast<RealT>(1L)), boost::math::pdf(exp1, static_c… in BOOST_AUTO_TEST_CASE_TEMPLATE()
351 …BOOST_CHECK_CLOSE(boost::math::cdf(hexp1, static_cast<RealT>(1L)), boost::math::cdf(exp1, static_c… in BOOST_AUTO_TEST_CASE_TEMPLATE()
352 BOOST_CHECK_CLOSE(boost::math::mean(hexp1), boost::math::mean(exp1), tol); in BOOST_AUTO_TEST_CASE_TEMPLATE()
353 BOOST_CHECK_CLOSE(boost::math::variance(hexp1), boost::math::variance(exp1), tol); in BOOST_AUTO_TEST_CASE_TEMPLATE()
354 …::math::quantile(hexp1, static_cast<RealT>(0.25L)), boost::math::quantile(exp1, static_cast<RealT>… in BOOST_AUTO_TEST_CASE_TEMPLATE()
355 BOOST_CHECK_CLOSE(boost::math::median(hexp1), boost::math::median(exp1), tol); in BOOST_AUTO_TEST_CASE_TEMPLATE()
356 …::math::quantile(hexp1, static_cast<RealT>(0.75L)), boost::math::quantile(exp1, static_cast<RealT>… in BOOST_AUTO_TEST_CASE_TEMPLATE()
357 BOOST_CHECK_CLOSE(boost::math::mode(hexp1), boost::math::mode(exp1), tol); in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/libs/test/test/test-organization-ts/datasets-test/
Dmono-zip-test.cpp45 int* exp1 = arr1; in BOOST_AUTO_TEST_CASE() local
61 data::for_each_sample( samples1, [&c,exp1,exp2](int i,char const* s) { in BOOST_AUTO_TEST_CASE()
62 BOOST_TEST( i == exp1[c] ); in BOOST_AUTO_TEST_CASE()
Dmono-grid-test.cpp55 int* exp1 = arr1; in BOOST_AUTO_TEST_CASE() local
70 data::for_each_sample( samples1, [&c,exp1,exp2](int i,char const* s) { in BOOST_AUTO_TEST_CASE()
71 BOOST_TEST( i == exp1[c/2] ); in BOOST_AUTO_TEST_CASE()
/third_party/mindspore/tests/st/ops/cpu/
Dtest_rl_buffer_net.py67 exp1 = [s_, a, r, s] variable
80 buffer.append(exp1)
Dtest_rl_buffer_op.py78 exp1 = [s_, a, r, s] variable
127 buffer_append(b, exp1)
136 buffer_append(b, exp1)
/third_party/mindspore/tests/st/ops/gpu/
Dtest_rl_buffer_net.py67 exp1 = [s_, a, r, s] variable
80 buffer.append(exp1)
Dtest_rl_buffer_op.py79 exp1 = [s_, a, r, s] variable
128 buffer_append(b, exp1)
137 buffer_append(b, exp1)
/third_party/boost/libs/program_options/test/
Dvariable_map_test.cpp154 string exp1[] = { "a", "b x" }; in test_semantic_values() local
155 BOOST_CHECK(av == vector<string>(exp1, exp1 + 2)); in test_semantic_values()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/
Dactivation.cl83 FLT4 exp1 = exp(-in_c4);
84 in_c4 = (exp0 - exp1) / (exp0 + exp1);
Dconv2d.cl43 exp1 = exp(-data); \
44 data = (exp0 - exp1) / (exp0 + exp1);
98 FLT4 exp0, exp1;
174 FLT4 exp0, exp1;
277 FLT4 exp0, exp1;
404 FLT4 exp0, exp1;
557 FLT4 exp0, exp1;
743 FLT4 exp0, exp1;
847 FLT4 exp0, exp1;
919 FLT4 exp0, exp1;
[all …]
Dwinograd.cl257 FLT4 exp1 = exp(-acc); \
258 acc = (exp0 - exp1) / (exp0 + exp1); \
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/kernel/
Dfusion_eltwise.cc453 std::string exp1 = GetFormatVarName(); in CodegenCore() local
455 code << cl_prefix << "FLT4 " << exp1 << " = exp(-" + var0 + ");\n"; in CodegenCore()
456 …efix << "FLT4 " << out_name << " = (" << exp0 << " - " << exp1 << ") / (" << exp0 << " + " << exp1 in CodegenCore()
/third_party/ffmpeg/libavcodec/
Dac3dsp.c38 uint8_t *exp1 = exp + 256; in ac3_exponent_min_c() local
40 uint8_t next_exp = *exp1; in ac3_exponent_min_c()
43 exp1 += 256; in ac3_exponent_min_c()
Dac3enc.c543 uint8_t exp1 = exp[i-cpl]; in encode_exponents_blk_ch() local
544 exp[k--] = exp1; in encode_exponents_blk_ch()
545 exp[k--] = exp1; in encode_exponents_blk_ch()
652 int exp0, exp1; in ac3_group_exponents() local
666 exp1 = *p++; in ac3_group_exponents()
667 block->grouped_exp[ch][0] = exp1; in ac3_group_exponents()
672 exp0 = exp1; in ac3_group_exponents()
673 exp1 = p[0]; in ac3_group_exponents()
675 delta0 = exp1 - exp0 + 2; in ac3_group_exponents()
678 exp0 = exp1; in ac3_group_exponents()
[all …]
/third_party/python/Lib/test/
Dtest_pprint.py564 exp1 = "['with space']"
565 self.assertEqual(dotted_printer.pformat(o1), exp1)
/third_party/openssl/doc/man3/
DASN1_generate_nconf.pod224 exp1=INTEGER:0x9E7D4326C924AFC1DEA40B45650134966D6F9DFA3A7F9D698CD4ABEA\
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DTestMessageFormat.java1432 String exp1[] = { in testSelectFormat() local
1439 exp1[i] , msgFmt.format(testArgs1[i]) ); in testSelectFormat()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1429 String exp1[] = { in testSelectFormat() local
1436 exp1[i] , msgFmt.format(testArgs1[i]) ); in testSelectFormat()
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_shader_implicit_conversions.txt144 (exp1 ? exp2 : exp3). This operator evaluates the first expression,
/third_party/openGLES/extensions/EXT/
DEXT_shader_implicit_conversions.txt144 (exp1 ? exp2 : exp3). This operator evaluates the first expression,
/third_party/json/
DREADME.md1234 | Clang 3.6.2 (3.6.2-svn240577-1~exp1) | Ubuntu 14.04.5 LTS | Travis …
1235 | Clang 3.7.1 (3.7.1-svn253571-1~exp1) | Ubuntu 14.04.5 LTS | Travis …
1238 | Clang 4.0.1 (4.0.1-svn305264-1~exp1) | Ubuntu 14.04.5 LTS | Travis …
1239 | Clang 5.0.2 (version 5.0.2-svn328729-1~exp1~20180509123505.100) | Ubuntu 14.04.5 LTS | Travis …
1240 | Clang 6.0.1 (6.0.1-svn334776-1~exp1~20190309042707.121) | Ubuntu 14.04.5 LTS | Travis …
1241 | Clang 7.1.0 (7.1.0-svn353565-1~exp1~20190419134007.64) | Ubuntu 14.04.5 LTS | Travis …

12