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:prebuffer
(Results
1 - 3
of
3
) sorted by relevance
/third_party/cJSON/
H
A
D
cJSON.h
172
/* Render a cJSON entity to text using a buffered strategy.
prebuffer
is a guess at the final size. guessing well reduces reallocation. fmt=0 gives unformatted, =1 gives formatted */
173
CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int
prebuffer
, cJSON_bool fmt);
H
A
D
cJSON.c
1505
CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int
prebuffer
, cJSON_bool fmt)
in cJSON_PrintBuffered()
argument
1509
if (
prebuffer
< 0)
in cJSON_PrintBuffered()
1514
p.buffer = (unsigned char*)global_hooks.allocate((size_t)
prebuffer
);
in cJSON_PrintBuffered()
1520
p.length = (size_t)
prebuffer
;
in cJSON_PrintBuffered()
/third_party/ffmpeg/libavformat/
H
A
D
matroskadec.c
4199
double pre_sec,
prebuffer
, bits_per_second;
in webm_dash_manifest_compute_bandwidth()
local
4208
// Figure out how much data we have downloaded for the
prebuffer
. This will
in webm_dash_manifest_compute_bandwidth()
4217
// The
prebuffer
is larger than the duration.
in webm_dash_manifest_compute_bandwidth()
4222
// The
prebuffer
ends in the last Cue. Estimate how much data was
in webm_dash_manifest_compute_bandwidth()
4232
prebuffer
= prebuffer_ns / nano_seconds_per_second;
in webm_dash_manifest_compute_bandwidth()
4234
// Set this to 0.0 in case our
prebuffer
buffers the entire video.
in webm_dash_manifest_compute_bandwidth()
4250
if (
prebuffer
< desc_sec) {
in webm_dash_manifest_compute_bandwidth()
4258
double buffer =
prebuffer
;
in webm_dash_manifest_compute_bandwidth()
Completed in 11 milliseconds