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:ME_MAP_SIZE
(Results
1 - 6
of
6
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
motion_est_template.c
86
const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)]
in hpel_motion_search()
88
const int l= score_map[(index- 1 )&(
ME_MAP_SIZE
-1)]
in hpel_motion_search()
90
const int r= score_map[(index+ 1 )&(
ME_MAP_SIZE
-1)]
in hpel_motion_search()
92
const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)]
in hpel_motion_search()
99
av_assert2(c->map[(index-(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)] == key);
in hpel_motion_search()
101
av_assert2(c->map[(index+(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)] == key);
in hpel_motion_search()
103
av_assert2(c->map[(index+1)&(
ME_MAP_SIZE
-1)] == key);
in hpel_motion_search()
105
av_assert2(c->map[(index-1)&(
ME_MAP_SIZE
-1)] == key);
in hpel_motion_search()
250
const int t= score_map[(index-(1<<ME_MAP_SHIFT) )&(
ME_MAP_SIZE
-1)];
in qpel_motion_search()
251
const int l= score_map[(index- 1 )&(
ME_MAP_SIZE
in qpel_motion_search()
[all...]
H
A
D
motion_est.h
38
#define
ME_MAP_SIZE
64
macro
H
A
D
motion_est.c
59
memset(c->map, 0, sizeof(uint32_t)*
ME_MAP_SIZE
);
in update_map_generation()
307
int cache_size= FFMIN(
ME_MAP_SIZE
>>ME_MAP_SHIFT, 1<<ME_MAP_SHIFT);
in ff_init_me()
311
if(FFMIN(s->avctx->dia_size, s->avctx->pre_dia_size) < -FFMIN(
ME_MAP_SIZE
, MAX_SAB_SIZE)){
in ff_init_me()
427
const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)];
in sad_hpel_motion_search()
428
const int l= score_map[(index- 1 )&(
ME_MAP_SIZE
-1)];
in sad_hpel_motion_search()
429
const int r= score_map[(index+ 1 )&(
ME_MAP_SIZE
-1)];
in sad_hpel_motion_search()
430
const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(
ME_MAP_SIZE
-1)];
in sad_hpel_motion_search()
H
A
D
svq1enc.c
558
s->m.me.map = av_mallocz(
ME_MAP_SIZE
* sizeof(uint32_t));
in svq1_encode_init()
559
s->m.me.score_map = av_mallocz(
ME_MAP_SIZE
* sizeof(uint32_t));
in svq1_encode_init()
H
A
D
mpegvideo.c
362
if (!FF_ALLOCZ_TYPED_ARRAY(s->me.map,
ME_MAP_SIZE
) ||
in init_duplicate_context()
363
!FF_ALLOCZ_TYPED_ARRAY(s->me.score_map,
ME_MAP_SIZE
))
in init_duplicate_context()
H
A
D
snowenc.c
83
s->m.me.map = av_mallocz(
ME_MAP_SIZE
*sizeof(uint32_t));
in encode_init()
84
s->m.me.score_map = av_mallocz(
ME_MAP_SIZE
*sizeof(uint32_t));
in encode_init()
Completed in 12 milliseconds