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:BITS_PER_BYTE
(Results
1 - 6
of
6
) sorted by relevance
/third_party/backends/backend/
H
A
D
niash.c
216
#define
BITS_PER_BYTE
8
macro
217
#define BITS_PADDING (
BITS_PER_BYTE
-1)
242
BITS_PADDING) /
BITS_PER_BYTE
;
in _bytesPerLineLineart()
248
return (pixelsPerLine * BITS_PER_PIXEL_GRAY + BITS_PADDING) /
BITS_PER_BYTE
;
in _bytesPerLineGray()
255
BITS_PADDING) /
BITS_PER_BYTE
;
in _bytesPerLineColor()
301
static const int aMask[
BITS_PER_BYTE
] = { 128, 64, 32, 16, 8, 4, 2, 1 };
in _rgb2lineart()
307
nx = ((pixels + BITS_PADDING) /
BITS_PER_BYTE
) *
BITS_PER_BYTE
;
in _rgb2lineart()
313
acc |= aMask[x %
BITS_PER_BYTE
];
in _rgb2lineart()
315
if ((x + 1) %
BITS_PER_BYTE
in _rgb2lineart()
[all...]
/third_party/mesa3d/src/amd/addrlib/src/core/
H
A
D
addrcommon.h
231
#define
BITS_PER_BYTE
8
macro
232
#define BITS_TO_BYTES(x) ( ((x) + (
BITS_PER_BYTE
-1)) /
BITS_PER_BYTE
)
233
#define BYTES_TO_BITS(x) ( (x) *
BITS_PER_BYTE
)
/third_party/f2fs-tools/include/
H
A
D
f2fs_fs.h
352
#define
BITS_PER_BYTE
8
macro
1359
#define SIZE_OF_DENTRY_BITMAP ((NR_DENTRY_IN_BLOCK +
BITS_PER_BYTE
- 1) / \
1360
BITS_PER_BYTE
)
1391
#define NR_INLINE_DENTRY(node) (MAX_INLINE_DATA(node) *
BITS_PER_BYTE
/ \
1393
BITS_PER_BYTE
+ 1))
1395
BITS_PER_BYTE
- 1) /
BITS_PER_BYTE
)
/third_party/f2fs-tools/lib/
H
A
D
libf2fs.c
346
#define BITMAP_FIRST_BYTE_MASK(start) (0xff << ((start) & (
BITS_PER_BYTE
- 1)))
355
tmp = addr[start /
BITS_PER_BYTE
] ^ invert;
in _find_next_bit_le()
359
start = round_down(start,
BITS_PER_BYTE
);
in _find_next_bit_le()
362
start +=
BITS_PER_BYTE
;
in _find_next_bit_le()
366
tmp = addr[start /
BITS_PER_BYTE
] ^ invert;
in _find_next_bit_le()
/third_party/exfatprogs/dump/
H
A
D
dump.c
20
#define
BITS_PER_BYTE
8
macro
/third_party/f2fs-tools/fsck/
H
A
D
mount.c
1511
int nid_bitmap_size = (nm_i->max_nid +
BITS_PER_BYTE
- 1) /
BITS_PER_BYTE
;
in f2fs_early_init_nid_bitmap()
Completed in 15 milliseconds