Home
last modified time | relevance | path

Searched refs:wf (Results 1 – 25 of 183) sorted by relevance

12345678

/external/python/cpython2/Python/
Dmarshal.c466 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/
Dmarshal.c587 w_init_refs(WFILE *wf, int version) in w_init_refs() argument
590 wf->hashtable = _Py_hashtable_new(sizeof(PyObject *), sizeof(int), in w_init_refs()
593 if (wf->hashtable == NULL) { in w_init_refs()
613 w_clear_refs(WFILE *wf) in w_clear_refs() argument
615 if (wf->hashtable != NULL) { in w_clear_refs()
616 _Py_hashtable_foreach(wf->hashtable, w_decref_entry, NULL); in w_clear_refs()
617 _Py_hashtable_destroy(wf->hashtable); in w_clear_refs()
626 WFILE wf; in PyMarshal_WriteLongToFile() local
627 memset(&wf, 0, sizeof(wf)); in PyMarshal_WriteLongToFile()
628 wf.fp = fp; in PyMarshal_WriteLongToFile()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_variance_sse2.c266 #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 …]
Dvariance_sse2.c441 #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/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
Dmask.pass.cpp26 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/webrtc/webrtc/common_audio/
Dwav_file.cc161 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()
Dwav_file.h106 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/
Dxmltest.sh124 for xmldir in ibm/not-wf/P* \
125 ibm/not-wf/p28a \
126 ibm/not-wf/misc \
127 xmltest/not-wf/ext-sa \
128 xmltest/not-wf/not-sa \
129 xmltest/not-wf/sa \
130 sun/not-wf ; do
Dxmltest.log.expected3 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/libaom/libaom/aom_dsp/x86/
Dhighbd_variance_sse2.c286 #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( \
310 if (w > wf * 2) { \
311 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \
316 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \
341 int se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \
346 if (w > wf) { \
348 se2 = aom_highbd_sub_pixel_variance##wf##xh_##opt( \
[all …]
Dvariance_avx2.c243 #define AOM_SUB_PIXEL_VAR_AVX2(w, h, wf, wlog2, hlog2) \ argument
251 for (int i = 0; i < (w / wf); ++i) { \
256 const int se2 = aom_sub_pixel_variance##wf##xh_avx2( \
264 src += wf; \
265 dst += wf; \
280 #define AOM_SUB_PIXEL_AVG_VAR_AVX2(w, h, wf, wlog2, hlog2) \ argument
289 for (int i = 0; i < (w / wf); ++i) { \
295 const int se2 = aom_sub_pixel_avg_variance##wf##xh_avx2( \
304 src += wf; \
305 dst += wf; \
[all …]
Dvariance_sse2.c348 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument
356 for (int i = 0; i < (w / wf); ++i) { \
361 const int se2 = aom_sub_pixel_variance##wf##xh_##opt( \
369 src += wf; \
370 dst += wf; \
423 #define FN(w, h, wf, wlog2, hlog2, opt, cast_prod, cast) \ argument
432 for (int i = 0; i < (w / wf); ++i) { \
438 const int se2 = aom_sub_pixel_avg_variance##wf##xh_##opt( \
447 src += wf; \
448 dst += wf; \
[all …]
/external/python/cpython2/Demo/pdist/
Dserver.py54 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/lmfit/lib/
Dlmmin.c219 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/cros/
Dcts_expected_failure_parser.py43 with open(failure_file) as wf:
44 waivers_yaml.update(yaml.load(wf.read()))
/external/eigen/Eigen/src/Core/
DIO.h102 friend std::ostream & operator << (std::ostream & s, const WithFormat& wf)
104 return internal::print_matrix(s, wf.m_matrix.eval(), wf.m_format);
/external/python/cpython3/Lib/test/test_email/data/
Dmsg_26.txt39 AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA
40 sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
/external/python/cpython2/Lib/email/test/data/
Dmsg_26.txt38 AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA
39 sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DHashing.h236 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/
DHashing.h236 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-subzero/include/llvm/ADT/
DHashing.h236 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/honggfuzz/examples/apache-httpd/corpus_http1/
Db09b39593e1d75a3321b35b07d767a95.00001bed.honggfuzz.cov42 ¡�=�)�N���I�7'�c Mw�PT���t�wf��q%E�L�o�`<��j;�դ|W^m�3;�Mx�`;3�Y��o�9��r7]D:�-!t�S\�:`��b�5w…
D71751968ad970fc0e608bda5b3082877.00001bed.honggfuzz.cov42 ¡�=�)�N���I�7'�c Mw�PT���t�wf��q%E�L�o�`<��j;�դ|W^m�3;�Mx�`;3�Y��o�9��r7]D:�-!t�S\�:`��b�5w…
/external/tensorflow/tensorflow/core/util/
Dmemmapped_file_system.cc152 std::unique_ptr<WritableFile>* wf) { in NewWritableFile() argument
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Db09b39593e1d75a3321b35b07d767a95.00001bed.honggfuzz.cov42 ¡�=�)�N���I�7'�c Mw�PT���t�wf��q%E�L�o�`<��j;�դ|W^m�3;�Mx�`;3�Y��o�9��r7]D:�-!t�S\�:`��b�5w…

12345678