/external/libaom/aom_dsp/x86/ |
D | highbd_variance_sse2.c | 282 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ argument 295 int se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 300 if (w > wf) { \ 301 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 302 src + wf, src_stride, x_offset, y_offset, dst + wf, dst_stride, h, \ 306 if (w > wf * 2) { \ 307 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 308 src + 2 * wf, src_stride, x_offset, y_offset, dst + 2 * wf, \ 312 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 313 src + 3 * wf, src_stride, x_offset, y_offset, dst + 3 * wf, \ [all …]
|
D | variance_impl_avx2.c | 370 #define AOM_SUB_PIXEL_VAR_AVX2(w, h, wf, hf, wlog2, hlog2) \ argument 376 for (int i = 0; i < (w / wf); ++i) { \ 381 const int se2 = aom_sub_pixel_variance##wf##x##hf##_imp_avx2( \ 389 src += wf; \ 390 dst += wf; \ 889 #define AOM_SUB_PIXEL_AVG_VAR_AVX2(w, h, wf, hf, wlog2, hlog2) \ argument 896 for (int i = 0; i < (w / wf); ++i) { \ 902 const int se2 = aom_sub_pixel_avg_variance##wf##x##hf##_imp_avx2( \ 911 src += wf; \ 912 dst += wf; \ [all …]
|
D | variance_sse2.c | 389 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 397 for (int i = 0; i < (w / wf); ++i) { \ 402 const int se2 = aom_sub_pixel_variance##wf##xh_##opt( \ 410 src += wf; \ 411 dst += wf; \ 484 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 493 for (int i = 0; i < (w / wf); ++i) { \ 499 const int se2 = aom_sub_pixel_avg_variance##wf##xh_##opt( \ 508 src += wf; \ 509 dst += wf; \ [all …]
|
/external/python/cpython2/Python/ |
D | marshal.c | 466 WFILE wf; in PyMarshal_WriteLongToFile() local 467 wf.fp = fp; in PyMarshal_WriteLongToFile() 468 wf.str = NULL; in PyMarshal_WriteLongToFile() 469 wf.ptr = NULL; in PyMarshal_WriteLongToFile() 470 wf.end = NULL; in PyMarshal_WriteLongToFile() 471 wf.error = WFERR_OK; in PyMarshal_WriteLongToFile() 472 wf.depth = 0; in PyMarshal_WriteLongToFile() 473 wf.strings = NULL; in PyMarshal_WriteLongToFile() 474 wf.version = version; in PyMarshal_WriteLongToFile() 475 w_long(x, &wf); in PyMarshal_WriteLongToFile() [all …]
|
/external/python/cpython3/Python/ |
D | marshal.c | 556 w_init_refs(WFILE *wf, int version) in w_init_refs() argument 559 wf->hashtable = _Py_hashtable_new_full(_Py_hashtable_hash_ptr, in w_init_refs() 562 if (wf->hashtable == NULL) { in w_init_refs() 571 w_clear_refs(WFILE *wf) in w_clear_refs() argument 573 if (wf->hashtable != NULL) { in w_clear_refs() 574 _Py_hashtable_destroy(wf->hashtable); in w_clear_refs() 583 WFILE wf; in PyMarshal_WriteLongToFile() local 584 memset(&wf, 0, sizeof(wf)); in PyMarshal_WriteLongToFile() 585 wf.fp = fp; in PyMarshal_WriteLongToFile() 586 wf.ptr = wf.buf = buf; in PyMarshal_WriteLongToFile() [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | mask.pass.cpp | 48 const WF& wf = std::use_facet<WF>(l); in main() local 50 assert( wf.is(WF::upper, L'A')); in main() 51 assert(!wf.is(WF::lower, L'A')); in main() 52 assert( wf.is(WF::alpha, L'A')); in main() 54 assert(!wf.is(WF::upper, L'a')); in main() 55 assert( wf.is(WF::lower, L'a')); in main() 56 assert( wf.is(WF::alpha, L'a')); in main()
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | mask.pass.cpp | 26 const WF& wf = std::use_facet<WF>(l); in main() local 38 assert( wf.is(WF::upper, L'A')); in main() 40 assert(!wf.is(WF::lower, L'A')); in main() 42 assert( wf.is(WF::alpha, L'A')); in main() 45 assert(!wf.is(WF::upper, L'a')); in main() 47 assert( wf.is(WF::lower, L'a')); in main() 49 assert( wf.is(WF::alpha, L'a')); in main()
|
/external/libvpx/vpx_dsp/x86/ |
D | highbd_variance_sse2.c | 267 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ argument 274 int se = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 277 if (w > wf) { \ 279 int se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 284 if (w > wf * 2) { \ 285 se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 290 se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 308 int se = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 311 if (w > wf) { \ 313 int se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ [all …]
|
D | variance_sse2.c | 441 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 446 int se = vpx_sub_pixel_variance##wf##xh_##opt( \ 449 if (w > wf) { \ 451 int se2 = vpx_sub_pixel_variance##wf##xh_##opt( \ 456 if (w > wf * 2) { \ 457 se2 = vpx_sub_pixel_variance##wf##xh_##opt( \ 462 se2 = vpx_sub_pixel_variance##wf##xh_##opt( \ 512 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 518 int se = vpx_sub_pixel_avg_variance##wf##xh_##opt( \ 521 if (w > wf) { \ [all …]
|
/external/expat/expat/tests/ |
D | xmltest.sh | 152 for xmldir in ibm/not-wf/P* \ 153 ibm/not-wf/p28a \ 154 ibm/not-wf/misc \ 155 xmltest/not-wf/ext-sa \ 156 xmltest/not-wf/not-sa \ 157 xmltest/not-wf/sa \ 158 sun/not-wf ; do
|
D | xmltest.log.expected | 3 Expected not well-formed: ibm/not-wf/misc/432gewf.xml 4 Expected not well-formed: xmltest/not-wf/not-sa/005.xml 5 Expected not well-formed: sun/not-wf/uri01.xml
|
/external/libxaac/decoder/ |
D | ixheaacd_mps_initfuncs.c | 992 WORD32 const **wf = pstr_mps_state->wf_tab.wf; in ixheaacd_wf_table_init() local 995 wf[0] = NULL; in ixheaacd_wf_table_init() 996 wf[1] = ixheaacd_mps_dec_wf_tables.wf_02; in ixheaacd_wf_table_init() 997 wf[2] = ixheaacd_mps_dec_wf_tables.wf_03; in ixheaacd_wf_table_init() 998 wf[3] = ixheaacd_mps_dec_wf_tables.wf_04; in ixheaacd_wf_table_init() 999 wf[4] = NULL; in ixheaacd_wf_table_init() 1000 wf[5] = NULL; in ixheaacd_wf_table_init() 1001 wf[6] = NULL; in ixheaacd_wf_table_init() 1002 wf[7] = NULL; in ixheaacd_wf_table_init() 1003 wf[8] = NULL; in ixheaacd_wf_table_init() [all …]
|
/external/python/cpython2/Demo/pdist/ |
D | server.py | 54 wf = conn.makefile('w') 57 wf.flush() 59 ok = self._dorequest(rf, wf) 69 def _dorequest(self, rf, wf): argument 91 wp = pickle.Pickler(wf)
|
/external/autotest/utils/ |
D | generate_metadata_unittest.py | 110 with open(self.path1, 'w') as wf: 111 wf.write(CONTROL_DATA1) 112 with open(self.path2, 'w') as wf: 113 wf.write(CONTROL_DATA2)
|
D | generate_metadata.py | 138 with open(args.output_file, 'wb') as wf: 139 wf.write(serialized.SerializeToString())
|
/external/angle/src/tests/gl_tests/gles1/ |
D | FogTest.cpp | 215 GLfloat wf = static_cast<GLfloat>(w); in TEST_P() local 219 wf + shadowOffset, 0, wf + shadowOffset, hf}; in TEST_P() 233 0, 0, 0, hf, wf, 0, wf, hf, in TEST_P()
|
/external/mesa3d/.gitlab-ci/bare-metal/ |
D | expect-output.sh | 24 while ! egrep -wf $STRINGS $FILE; do 28 if egrep -wf $ERRORS $FILE; then
|
/external/lmfit/lib/ |
D | lmmin.c | 219 double* wf = (double*)pws; in lmmin() local 263 (*evaluate)(x, m, data, wf, &(S->userbreak)); in lmmin() 268 fjac[j*m+i] = (wf[i] - fvec[i]) / step; in lmmin() 309 wf[i] = fvec[i]; in lmmin() 316 sum += fjac[j*m+i] * wf[i]; in lmmin() 319 wf[i] += fjac[j*m+i] * temp; in lmmin() 322 qtf[j] = wf[j]; in lmmin() 390 wa1, wa2, wf, wa3); in lmmin() 420 (*evaluate)(wa2, m, data, wf, &(S->userbreak)); in lmmin() 424 fnorm1 = lm_enorm(m, wf); in lmmin() [all …]
|
/external/autotest/server/hosts/tls_client/ |
D | buildprotos.py | 72 with open(DEST_PROTO_NAME, 'w') as wf: 73 wf.write(new)
|
/external/autotest/server/cros/tradefed/ |
D | cts_expected_failure_parser.py | 79 with open(failure_file) as wf: 80 waivers_yaml.update(yaml.safe_load(wf.read()))
|
/external/eigen/Eigen/src/Core/ |
D | IO.h | 104 friend std::ostream & operator << (std::ostream & s, const WithFormat& wf) 106 return internal::print_matrix(s, wf.m_matrix.eval(), wf.m_format);
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_26.txt | 39 AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA 40 sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
|
/external/python/cpython2/Lib/email/test/data/ |
D | msg_26.txt | 38 AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA 39 sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
|
/external/curl/scripts/ |
D | cijobs.pl | 332 my $wf = 0; 374 $wf = 1; 377 elsif($wf) {
|
/external/angle/src/tests/perf_tests/ |
D | MultiviewPerf.cpp | 382 const float wf = static_cast<float>(w) / viewWidth; in renderScene() local 384 glUniform2f(glGetUniformLocation(mProgram, "uOffset"), 2.f * wf - 1.f, 2.f * wh - 1.f); in renderScene() 385 glUniform1f(glGetUniformLocation(mProgram, "uColor"), wf); in renderScene() 462 float wf = static_cast<float>(w) / viewWidth; in initializeBenchmark() local 468 v0.position = Vector4(2.f * wf - 1.f, 2.f * hf - 1.f, .0f, 1.f); in initializeBenchmark()
|