/third_party/libsnd/src/ |
D | ogg_opus.c | 246 int buffersize ; member 641 oopus->buffersize = 20 * psf->sf.samplerate / 1000 ; in ogg_opus_setup_decoder() 642 oopus->buffer = malloc (sizeof (float) * psf->sf.channels * oopus->buffersize) ; in ogg_opus_setup_decoder() 749 oopus->buffersize = (1275 * 3 + 7) * oopus->header.nb_streams ; in ogg_opus_setup_encoder() 750 odata->opacket.packet = malloc (oopus->buffersize) ; in ogg_opus_setup_encoder() 912 len, odata->opacket.packet, oopus->buffersize) ; in ogg_opus_flush() 1004 ppkt->packet, ppkt->bytes, oopus->buffer, oopus->buffersize, 0) ; in ogg_opus_read_refill() 1009 nsamp, oopus->buffersize) ; in ogg_opus_read_refill() 1014 oopus->buffersize = nsamp ; in ogg_opus_read_refill() 1018 oopus->buffer = malloc (sizeof (float) * oopus->buffersize * psf->sf.channels) ; in ogg_opus_read_refill() [all …]
|
/third_party/curl/lib/ |
D | socks.h | 43 ssize_t buffersize,
|
D | sendf.h | 94 char *buf, size_t buffersize,
|
D | socks.c | 95 ssize_t buffersize, /* max amount to read */ in Curl_blockread_all() argument 117 nread = Curl_conn_cf_recv(cf->next, data, buf, buffersize, &err); in Curl_blockread_all() 127 if(buffersize == nread) { in Curl_blockread_all() 138 buffersize -= nread; in Curl_blockread_all()
|
D | transfer.c | 164 size_t buffersize = bytes; in Curl_fillreadbuffer() local 213 buffersize -= (8 + 2 + 2); /* 32bit hex + CRLF + CRLF */ in Curl_fillreadbuffer() 236 buffersize, extra_data); in Curl_fillreadbuffer() 265 else if(nread > buffersize) { in Curl_fillreadbuffer() 442 size_t buffersize = data->set.buffer_size; in readwrite_data() local 443 size_t bytestoread = buffersize; in readwrite_data()
|
/third_party/ltp/runtest/ |
D | dio | 10 ## Run the tests with larger buffersize
|
/third_party/gstreamer/gstplugins_base/ext/ogg/ |
D | gstogmparse.c | 95 gint32 buffersize; member 545 ogm->hdr.buffersize = GST_READ_UINT32_LE (&data[36]); in gst_ogm_parse_stream_header() 607 ogm->hdr.buffersize, ogm->hdr.bits_per_sample, caps); in gst_ogm_parse_stream_header()
|
/third_party/python/Modules/cjkcodecs/ |
D | multibytecodec.c | 1245 Py_ssize_t buffersize; in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl() local 1261 buffersize = PyBytes_Size(buffer); in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl() 1262 if (buffersize == -1) { in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl() 1266 if (buffersize > MAXDECPENDING) { in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl() 1275 self->pendingsize = buffersize; in _multibytecodec_MultibyteIncrementalDecoder_setstate_impl()
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | scheduling_ideas | 427 Of course, given the right buffersize for filesrc, N can be reduced 428 to 1. mad can also suggest a buffersize to filesrc with the
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 5680 buffersize: ::c_int, in proc_listpids() 5682 pub fn proc_listallpids(buffer: *mut ::c_void, buffersize: ::c_int) -> ::c_int; in proc_listallpids() 5686 buffersize: ::c_int, in proc_listpgrppids() 5688 pub fn proc_listchildpids(ppid: ::pid_t, buffer: *mut ::c_void, buffersize: ::c_int) in proc_listchildpids() 5695 buffersize: ::c_int, in proc_pidinfo() 5702 buffersize: ::c_int, in proc_pidfdinfo() 5709 buffersize: ::c_int, in proc_pidfileportinfo() 5711 pub fn proc_pidpath(pid: ::c_int, buffer: *mut ::c_void, buffersize: u32) -> ::c_int; in proc_pidpath() 5712 pub fn proc_name(pid: ::c_int, buffer: *mut ::c_void, buffersize: u32) -> ::c_int; in proc_name() 5717 buffersize: u32, in proc_regionfilename() [all …]
|
/third_party/curl/lib/vtls/ |
D | mbedtls.c | 976 char *buf, size_t buffersize, argument 989 buffersize);
|
D | gtls.c | 1554 size_t buffersize, in gtls_recv() argument 1565 ret = gnutls_record_recv(backend->gtls.session, buf, buffersize); in gtls_recv()
|
D | openssl.c | 4563 size_t buffersize, /* max amount to read */ in ossl_recv() argument 4580 buffsize = (buffersize > (size_t)INT_MAX) ? INT_MAX : (int)buffersize; in ossl_recv()
|
D | sectransp.c | 3394 size_t buffersize, argument 3408 err = SSLRead(backend->ssl_ctx, buf, buffersize, &processed);
|
/third_party/alsa-utils/alsaloop/ |
D | pcmjob.c | 170 snd_pcm_uframes_t buffersize; in setparams_bufsize() local 215 snd_pcm_hw_params_get_buffer_size(params, &buffersize); in setparams_bufsize() 216 if (periodsize * 2 > buffersize) in setparams_bufsize() 219 lhandle->buffer_size = buffersize; in setparams_bufsize()
|
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/linux/ |
D | videodev2.h | 2289 __u32 buffersize; member 2300 __u32 buffersize; member
|
/third_party/gstreamer/gstplugins_good/sys/v4l2/ext/ |
D | videodev2.h | 2289 __u32 buffersize; member 2300 __u32 buffersize; member
|
/third_party/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 592 attr_list_path(pathname_t * name, char *buffer, const int buffersize, int flags, in attr_list_path() argument 599 rval = attr_list(name->path, buffer, buffersize, flags, cursor); in attr_list_path() 604 rval = attr_list_path(&newname, buffer, buffersize, flags, in attr_list_path()
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V13.md | 368 …ub.com/nodejs/node/commit/e501ba2146)] - **test**: refactor test-http2-buffersize (Rich Trott) [#3… 1021 …github.com/nodejs/node/commit/07525c317e)] - **test**: make test-http2-buffersize more correct (An…
|
D | CHANGELOG_V12.md | 2417 …ub.com/nodejs/node/commit/39be571a3f)] - **test**: refactor test-http2-buffersize (Rich Trott) [#3… 2821 …github.com/nodejs/node/commit/baa14c9e39)] - **test**: make test-http2-buffersize more correct (An… 5822 …odejs/node/commit/e8d5b6226a)] - **test**: add "mustCall" for test-net-buffersize (lixin.atom) [#2…
|
D | CHANGELOG_V16.md | 1533 …hub.com/nodejs/node/commit/3622fb1e03)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#…
|
D | CHANGELOG_V14.md | 675 …hub.com/nodejs/node/commit/a61076042d)] - **test**: deflake test-http2-buffersize (Luigi Pinca) [#…
|
/third_party/libabigail/tests/data/test-annotate/ |
D | test14-pr18893.so.abi | 4360 <!-- int Pool::buffersize --> 4361 …<var-decl name='buffersize' type-id='type-id-10' visibility='default' filepath='libnurbs/internals…
|
/third_party/gstreamer/gstreamer/docs/random/old/ |
D | ChangeLog.gstreamer | 1698 than the buffersize.
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test14-pr18893.so.abi | 2814 …<var-decl name='buffersize' type-id='type-id-10' visibility='default' filepath='libnurbs/internals…
|