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:data_stack
(Results
1 - 5
of
5
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
snow_dwt.c
41
buf->
data_stack
= av_malloc_array(max_allocated_lines, sizeof(IDWTELEM *));
in ff_slice_buffer_init()
42
if (!buf->
data_stack
) {
in ff_slice_buffer_init()
48
buf->
data_stack
[i] = av_malloc_array(line_width, sizeof(IDWTELEM));
in ff_slice_buffer_init()
49
if (!buf->
data_stack
[i]) {
in ff_slice_buffer_init()
51
av_freep(&buf->
data_stack
[i]);
in ff_slice_buffer_init()
52
av_freep(&buf->
data_stack
);
in ff_slice_buffer_init()
71
buffer = buf->
data_stack
[buf->data_stack_top];
in ff_slice_buffer_load_line()
87
buf->
data_stack
[buf->data_stack_top] = buffer;
in ff_slice_buffer_release()
108
if (buf->
data_stack
)
in ff_slice_buffer_destroy()
110
av_freep(&buf->
data_stack
[
in ff_slice_buffer_destroy()
[all...]
H
A
D
snow_dwt.h
46
IDWTELEM **
data_stack
; ///< Used for internal purposes.
member
/third_party/python/Modules/_sre/
H
A
D
sre.h
81
char*
data_stack
;
member
H
A
D
sre.c
200
if (state->
data_stack
) {
in data_stack_dealloc()
201
PyMem_Free(state->
data_stack
);
in data_stack_dealloc()
202
state->
data_stack
= NULL;
in data_stack_dealloc()
217
stack = PyMem_Realloc(state->
data_stack
, cursize);
in data_stack_grow()
222
state->
data_stack
= (char *)stack;
in data_stack_grow()
H
A
D
sre_lib.h
397
ptr = (type*)(state->
data_stack
+alloc_pos); \
404
ptr = (type*)(state->
data_stack
+pos); \
417
memcpy(state->
data_stack
+state->data_stack_base, data, size); \
428
memcpy((void*) data, state->
data_stack
+state->data_stack_base-size, size); \
Completed in 8 milliseconds