/third_party/ltp/testcases/realtime/func/pi-tests/ |
D | parse-testpi1.py | 37 exp1= re.compile("pthread pol 0 pri 0") 42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
|
D | parse-testpi2.py | 38 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/ |
D | nir_lower_flrp.c | 274 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/ |
D | test_nested_calling_ms_function.py | 111 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/ |
D | test_hyperexponential_dist.cpp | 349 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/ |
D | mono-zip-test.cpp | 45 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()
|
D | mono-grid-test.cpp | 55 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/ |
D | test_rl_buffer_net.py | 67 exp1 = [s_, a, r, s] variable 80 buffer.append(exp1)
|
D | test_rl_buffer_op.py | 78 exp1 = [s_, a, r, s] variable 127 buffer_append(b, exp1) 136 buffer_append(b, exp1)
|
/third_party/mindspore/tests/st/ops/gpu/ |
D | test_rl_buffer_net.py | 67 exp1 = [s_, a, r, s] variable 80 buffer.append(exp1)
|
D | test_rl_buffer_op.py | 79 exp1 = [s_, a, r, s] variable 128 buffer_append(b, exp1) 137 buffer_append(b, exp1)
|
/third_party/boost/libs/program_options/test/ |
D | variable_map_test.cpp | 154 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/ |
D | activation.cl | 83 FLT4 exp1 = exp(-in_c4); 84 in_c4 = (exp0 - exp1) / (exp0 + exp1);
|
D | conv2d.cl | 43 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 …]
|
D | winograd.cl | 257 FLT4 exp1 = exp(-acc); \ 258 acc = (exp0 - exp1) / (exp0 + exp1); \
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/kernel/ |
D | fusion_eltwise.cc | 453 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/ |
D | ac3dsp.c | 38 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()
|
D | ac3enc.c | 543 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/ |
D | test_pprint.py | 564 exp1 = "['with space']" 565 self.assertEqual(dotted_printer.pformat(o1), exp1)
|
/third_party/openssl/doc/man3/ |
D | ASN1_generate_nconf.pod | 224 exp1=INTEGER:0x9E7D4326C924AFC1DEA40B45650134966D6F9DFA3A7F9D698CD4ABEA\
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | TestMessageFormat.java | 1432 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/ |
D | TestMessageFormat.java | 1429 String exp1[] = { in testSelectFormat() local 1436 exp1[i] , msgFmt.format(testArgs1[i]) ); in testSelectFormat()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_shader_implicit_conversions.txt | 144 (exp1 ? exp2 : exp3). This operator evaluates the first expression,
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_shader_implicit_conversions.txt | 144 (exp1 ? exp2 : exp3). This operator evaluates the first expression,
|
/third_party/json/ |
D | README.md | 1234 | 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 …
|