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:bzstream
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/freetype/src/bzip2/
H
A
D
ftbzip2.c
101
bz_stream
bzstream
; /* bzlib input stream */
member
145
bz_stream*
bzstream
= &zip->
bzstream
;
in ft_bzip2_file_init()
local
170
bzstream
->bzalloc = (alloc_func)ft_bzip2_alloc;
in ft_bzip2_file_init()
171
bzstream
->bzfree = (free_func) ft_bzip2_free;
in ft_bzip2_file_init()
172
bzstream
->opaque = zip->memory;
in ft_bzip2_file_init()
174
bzstream
->avail_in = 0;
in ft_bzip2_file_init()
175
bzstream
->next_in = (char*)zip->buffer;
in ft_bzip2_file_init()
177
if ( BZ2_bzDecompressInit(
bzstream
, 0, 0 ) != BZ_OK ||
in ft_bzip2_file_init()
178
!
bzstream
in ft_bzip2_file_init()
189
bz_stream*
bzstream
= &zip->
bzstream
;
ft_bzip2_file_done()
local
218
bz_stream*
bzstream
= &zip->
bzstream
;
ft_bzip2_file_reset()
local
242
bz_stream*
bzstream
= &zip->
bzstream
;
ft_bzip2_file_fill_input()
local
283
bz_stream*
bzstream
= &zip->
bzstream
;
ft_bzip2_file_fill_output()
local
[all...]
/third_party/ffmpeg/libavformat/
H
A
D
matroskadec.c
1747
bz_stream
bzstream
= { 0 };
in matroska_decode_buffer()
local
1748
if (!pkt_size || BZ2_bzDecompressInit(&
bzstream
, 0, 0) != BZ_OK)
in matroska_decode_buffer()
1750
bzstream
.next_in = data;
in matroska_decode_buffer()
1751
bzstream
.avail_in = isize;
in matroska_decode_buffer()
1756
BZ2_bzDecompressEnd(&
bzstream
);
in matroska_decode_buffer()
1761
bzstream
.avail_out = pkt_size -
bzstream
.total_out_lo32;
in matroska_decode_buffer()
1762
bzstream
.next_out = pkt_data +
bzstream
.total_out_lo32;
in matroska_decode_buffer()
1763
result = BZ2_bzDecompress(&
bzstream
);
in matroska_decode_buffer()
[all...]
Completed in 6 milliseconds