/external/libaom/libaom/aom_dsp/x86/ |
D | highbd_variance_sse2.c | 286 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ argument 299 int se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 304 if (w > wf) { \ 305 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 306 src + wf, src_stride, x_offset, y_offset, dst + wf, dst_stride, h, \ 310 if (w > wf * 2) { \ 311 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 312 src + 2 * wf, src_stride, x_offset, y_offset, dst + 2 * wf, \ 316 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \ 317 src + 3 * wf, src_stride, x_offset, y_offset, dst + 3 * wf, \ [all …]
|
D | variance_avx2.c | 247 #define AOM_SUB_PIXEL_VAR_AVX2(w, h, wf, wlog2, hlog2) \ argument 255 for (int i = 0; i < (w / wf); ++i) { \ 260 const int se2 = aom_sub_pixel_variance##wf##xh_avx2( \ 268 src += wf; \ 269 dst += wf; \ 289 #define AOM_SUB_PIXEL_AVG_VAR_AVX2(w, h, wf, wlog2, hlog2) \ argument 298 for (int i = 0; i < (w / wf); ++i) { \ 304 const int se2 = aom_sub_pixel_avg_variance##wf##xh_avx2( \ 313 src += wf; \ 314 dst += wf; \ [all …]
|
D | variance_sse2.c | 358 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 366 for (int i = 0; i < (w / wf); ++i) { \ 371 const int se2 = aom_sub_pixel_variance##wf##xh_##opt( \ 379 src += wf; \ 380 dst += wf; \ 433 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument 442 for (int i = 0; i < (w / wf); ++i) { \ 448 const int se2 = aom_sub_pixel_avg_variance##wf##xh_##opt( \ 457 src += wf; \ 458 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 | 569 w_init_refs(WFILE *wf, int version) in w_init_refs() argument 572 wf->hashtable = _Py_hashtable_new(sizeof(PyObject *), sizeof(int), in w_init_refs() 575 if (wf->hashtable == NULL) { in w_init_refs() 595 w_clear_refs(WFILE *wf) in w_clear_refs() argument 597 if (wf->hashtable != NULL) { in w_clear_refs() 598 _Py_hashtable_foreach(wf->hashtable, w_decref_entry, NULL); in w_clear_refs() 599 _Py_hashtable_destroy(wf->hashtable); in w_clear_refs() 608 WFILE wf; in PyMarshal_WriteLongToFile() local 609 memset(&wf, 0, sizeof(wf)); in PyMarshal_WriteLongToFile() 610 wf.fp = fp; in PyMarshal_WriteLongToFile() [all …]
|
/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/libvpx/vpx_dsp/x86/ |
D | highbd_variance_sse2.c | 266 #define FN(w, h, wf, wlog2, hlog2, opt, cast) \ argument 273 int se = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 276 if (w > wf) { \ 278 int se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 283 if (w > wf * 2) { \ 284 se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 289 se2 = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 307 int se = vpx_highbd_sub_pixel_variance##wf##xh_##opt( \ 310 if (w > wf) { \ 312 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/webrtc/webrtc/common_audio/ |
D | wav_file.cc | 161 void rtc_WavClose(rtc_WavWriter* wf) { in rtc_WavClose() argument 162 delete reinterpret_cast<webrtc::WavWriter*>(wf); in rtc_WavClose() 165 void rtc_WavWriteSamples(rtc_WavWriter* wf, in rtc_WavWriteSamples() argument 168 reinterpret_cast<webrtc::WavWriter*>(wf)->WriteSamples(samples, num_samples); in rtc_WavWriteSamples() 171 int rtc_WavSampleRate(const rtc_WavWriter* wf) { in rtc_WavSampleRate() argument 172 return reinterpret_cast<const webrtc::WavWriter*>(wf)->sample_rate(); in rtc_WavSampleRate() 175 size_t rtc_WavNumChannels(const rtc_WavWriter* wf) { in rtc_WavNumChannels() argument 176 return reinterpret_cast<const webrtc::WavWriter*>(wf)->num_channels(); in rtc_WavNumChannels() 179 size_t rtc_WavNumSamples(const rtc_WavWriter* wf) { in rtc_WavNumSamples() argument 180 return reinterpret_cast<const webrtc::WavWriter*>(wf)->num_samples(); in rtc_WavNumSamples()
|
D | wav_file.h | 106 void rtc_WavClose(rtc_WavWriter* wf); 107 void rtc_WavWriteSamples(rtc_WavWriter* wf, 110 int rtc_WavSampleRate(const rtc_WavWriter* wf); 111 size_t rtc_WavNumChannels(const rtc_WavWriter* wf); 112 size_t rtc_WavNumSamples(const rtc_WavWriter* wf);
|
/external/expat/tests/ |
D | xmltest.sh | 121 for xmldir in ibm/not-wf/P* \ 122 ibm/not-wf/p28a \ 123 ibm/not-wf/misc \ 124 xmltest/not-wf/ext-sa \ 125 xmltest/not-wf/not-sa \ 126 xmltest/not-wf/sa \ 127 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/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/mesa3d/.gitlab-ci/bare-metal/ |
D | expect-output.sh | 24 while ! egrep -wf $STRINGS $FILE; do 28 if egrep -wf $ERRORS $FILE; then
|
/external/autotest/server/cros/tradefed/ |
D | cts_expected_failure_parser.py | 43 with open(failure_file) as wf: 44 waivers_yaml.update(yaml.load(wf.read()))
|
/external/eigen/Eigen/src/Core/ |
D | IO.h | 102 friend std::ostream & operator << (std::ostream & s, const WithFormat& wf) 104 return internal::print_matrix(s, wf.m_matrix.eval(), wf.m_format);
|
/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/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/angle/src/tests/perf_tests/ |
D | MultiviewPerf.cpp | 384 const float wf = static_cast<float>(w) / viewWidth; in renderScene() local 386 glUniform2f(glGetUniformLocation(mProgram, "uOffset"), 2.f * wf - 1.f, 2.f * wh - 1.f); in renderScene() 387 glUniform1f(glGetUniformLocation(mProgram, "uColor"), wf); in renderScene() 464 float wf = static_cast<float>(w) / viewWidth; in initializeBenchmark() local 470 v0.position = Vector4(2.f * wf - 1.f, 2.f * hf - 1.f, .0f, 1.f); in initializeBenchmark()
|
/external/python/cryptography/vectors/cryptography_vectors/x509/ |
D | utf8-dnsname.pem | 14 X5Uu+JwHyLXD7TS7Jw8TJSNs/scx2+wf+FwRbCTF5eaxBbP3Mmaa3Rbz7RLfhRBe
|
/external/python/cryptography/vectors/cryptography_vectors/x509/PKITS_data/smime/ |
D | SignedValidRFC822nameConstraintsTest25.eml | 59 yWlI0MOzEEedA0j4FLWEkNh+6wf/wQNpDKNSipLnRXqE78IhKqBG9cR8+PDIjexX
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Hashing.h | 236 uint64_t wf = a + z; in hash_33to64_bytes() local 238 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0); in hash_33to64_bytes()
|
/external/llvm/include/llvm/ADT/ |
D | Hashing.h | 236 uint64_t wf = a + z; in hash_33to64_bytes() local 238 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0); in hash_33to64_bytes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | Hashing.h | 236 uint64_t wf = a + z; in hash_33to64_bytes() local 238 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0); in hash_33to64_bytes()
|