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:extra_shift
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
simple_idct_template.c
114
static inline void FUNC(idctRowCondDC_extrashift)(int16_t *row, int
extra_shift
)
argument
116
static inline void FUNC6(idctRowCondDC)(idctin *row, int
extra_shift
)
127
if (DC_SHIFT -
extra_shift
>= 0) {
128
temp = (row[0] * (1 << (DC_SHIFT -
extra_shift
))) & 0xffff;
130
temp = ((row[0] + (1<<(
extra_shift
- DC_SHIFT-1))) >> (
extra_shift
- DC_SHIFT)) & 0xffff;
144
if (DC_SHIFT -
extra_shift
>= 0) {
145
temp = (row[0] * (1 << (DC_SHIFT -
extra_shift
))) & 0xffff;
147
temp = ((row[0] + (1<<(
extra_shift
- DC_SHIFT-1))) >> (
extra_shift
[all...]
/third_party/mesa3d/src/util/
H
A
D
fast_idiv_by_const.c
79
const unsigned
extra_shift
= UINT_BITS - num_bits;
in util_compute_fast_udiv_info()
local
127
if ((exponent +
extra_shift
>= ceil_log_2_D) ||
in util_compute_fast_udiv_info()
128
(D - remainder) <= ((uint64_t)1 << (exponent +
extra_shift
)))
in util_compute_fast_udiv_info()
135
remainder <= ((uint64_t)1 << (exponent +
extra_shift
))) {
in util_compute_fast_udiv_info()
/third_party/mesa3d/src/broadcom/cle/
H
A
D
gen_pack_header.py
292
extra_shift
= 0
302
extra_shift
= (31 - (end - start)) // 8 * 8
339
shift = byte_start - field_byte_start +
extra_shift
Completed in 4 milliseconds