Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:block_size_max
(Results
1 - 2
of
2
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/
H
A
D
resampler.c
608
size_t
block_size_max
;
in pa_resampler_max_block_size()
local
615
block_size_max
= pa_mempool_block_size_max(r->mempool);
in pa_resampler_max_block_size()
628
frames =
block_size_max
/ max_fs - EXTRA_FRAMES;
in pa_resampler_max_block_size()
634
block_size_max
= ((uint64_t) frames * r->i_ss.rate / max_ss.rate) * r->i_fz;
in pa_resampler_max_block_size()
636
if (
block_size_max
> 0)
in pa_resampler_max_block_size()
637
return
block_size_max
;
in pa_resampler_max_block_size()
H
A
D
sink.c
1243
size_t
block_size_max
;
in pa_sink_render()
local
1266
block_size_max
= pa_mempool_block_size_max(s->core->mempool);
in pa_sink_render()
1267
if (length >
block_size_max
)
in pa_sink_render()
1268
length = pa_frame_align(
block_size_max
, &s->sample_spec);
in pa_sink_render()
1328
size_t length,
block_size_max
;
in pa_sink_render_into()
local
1349
block_size_max
= pa_mempool_block_size_max(s->core->mempool);
in pa_sink_render_into()
1350
if (length >
block_size_max
)
in pa_sink_render_into()
1351
length = pa_frame_align(
block_size_max
, &s->sample_spec);
in pa_sink_render_into()
Completed in 8 milliseconds