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:NBITS
(Results
1 - 9
of
9
) sorted by relevance
/third_party/ffmpeg/libavfilter/
H
A
D
vf_palettegen.c
61
#define
NBITS
5
macro
62
#define HIST_SIZE (1<<(4*
NBITS
))
427
* It keeps the
NBITS
least significant bit of each component to make it
432
const uint8_t r = color >> 16 & ((1<<
NBITS
)-1);
in color_hash()
433
const uint8_t g = color >> 8 & ((1<<
NBITS
)-1);
in color_hash()
434
const uint8_t b = color & ((1<<
NBITS
)-1);
in color_hash()
437
const uint8_t a = color >> 24 & ((1 <<
NBITS
) - 1);
in color_hash()
438
return a << (
NBITS
* 3) | r << (
NBITS
* 2) | g <<
NBITS
|
in color_hash()
[all...]
H
A
D
vf_paletteuse.c
64
#define
NBITS
5
macro
65
#define CACHE_SIZE (1<<(4*
NBITS
))
347
const uint8_t rhash = r & ((1<<
NBITS
)-1);
in color_get()
348
const uint8_t ghash = g & ((1<<
NBITS
)-1);
in color_get()
349
const uint8_t bhash = b & ((1<<
NBITS
)-1);
in color_get()
350
const unsigned hash = rhash<<(
NBITS
*2) | ghash<<
NBITS
| bhash;
in color_get()
/third_party/eudev/src/udev/
H
A
D
udev-builtin-input_id.c
39
#define
NBITS
(x) ((((x)-1)/BITS_PER_LONG)+1)
macro
317
unsigned long bitmask_ev[
NBITS
(EV_MAX)];
in builtin_input_id()
318
unsigned long bitmask_abs[
NBITS
(ABS_MAX)];
in builtin_input_id()
319
unsigned long bitmask_key[
NBITS
(KEY_MAX)];
in builtin_input_id()
320
unsigned long bitmask_rel[
NBITS
(REL_MAX)];
in builtin_input_id()
321
unsigned long bitmask_props[
NBITS
(INPUT_PROP_MAX)];
in builtin_input_id()
/third_party/python/Modules/
H
A
D
testcapi_long.h
13
const int
NBITS
= sizeof(TYPENAME) * 8;
in error()
local
27
i <
NBITS
+ 1; /* on last, base overflows to 0 */
in error()
106
/* Unsigned complains about 2**
NBITS
? */
in error()
107
y = PyLong_FromLong((long)
NBITS
);
in error()
112
x = PyNumber_Lshift(one, y); /* 1L <<
NBITS
, == 2**
NBITS
*/
in error()
121
"PyLong_AsUnsignedXXX(2**
NBITS
) didn't "
in error()
125
"PyLong_AsUnsignedXXX(2**
NBITS
) raised "
in error()
129
/* Signed complains about 2**(
NBITS
-1)?
in error()
130
x still has 2**
NBITS
in error()
[all...]
/third_party/libinput/src/
H
A
D
util-bits.h
35
#define
NBITS
(b) (b * 8)
macro
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
H
A
D
jchuff-sse2.asm
89
%define
NBITS
(x) nbits_base + x
90
%define MASK_BITS(x)
NBITS
((x) * 4) + (jpeg_mask_bits - jpeg_nbits_table)
382
movzx nbitsq, byte [
NBITS
(codeq)] ;Z: nbits = JPEG_NBITS(code);
520
movzx nbits, byte [
NBITS
(codeq)] ; nbits = JPEG_NBITS(code);
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/
H
A
D
jchuff-sse2.asm
89
%define
NBITS
(x) nbits_base + x
91
%define
NBITS
(x) jpeg_nbits_table + x
93
%define MASK_BITS(x)
NBITS
((x) * 8) + (jpeg_mask_bits - jpeg_nbits_table)
517
movzx nbits, byte [
NBITS
(code_temp)] ;Z: nbits = JPEG_NBITS(code_temp);
591
movzx nbits, byte [
NBITS
(nbits)] ; nbits = JPEG_NBITS(nbits);
663
movzx nbits, byte [
NBITS
(nbits)] ; nbits = JPEG_NBITS(nbits);
/third_party/ffmpeg/libavcodec/
H
A
D
exr.c
498
#define
NBITS
16
macro
499
#define A_OFFSET (1 << (
NBITS
- 1))
500
#define MOD_MASK ((1 <<
NBITS
) - 1)
/third_party/astc-encoder/Source/
H
A
D
tinyexr.h
8008
const int
NBITS
= 16;
member
8009
const int A_OFFSET = 1 << (
NBITS
- 1);
8010
const int M_OFFSET = 1 << (
NBITS
- 1);
8011
const int MOD_MASK = (1 <<
NBITS
) - 1;
Completed in 29 milliseconds