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:BIT_PER_BYTE
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/netmanager_base/services/netmanagernative/bpf/src/
H
A
D
bitmap_manager.cpp
34
const uint32_t BITMAP_BIT_COUNT = (BITMAP_LEN * sizeof(uint32_t) *
BIT_PER_BYTE
);
546
for (int32_t j = static_cast<int32_t>(
BIT_PER_BYTE
- 1); j >= 0; --j) {
in GetIp6Prefixlen()
551
prefixlen = i *
BIT_PER_BYTE
+
BIT_PER_BYTE
- static_cast<uint32_t>(j) - 1;
in GetIp6Prefixlen()
564
uint32_t startBits = startBit %
BIT_PER_BYTE
;
in RfindIp6()
565
uint32_t startBytes = startBit /
BIT_PER_BYTE
;
in RfindIp6()
566
uint32_t endBits = endBit %
BIT_PER_BYTE
;
in RfindIp6()
567
uint32_t endBytes = endBit /
BIT_PER_BYTE
;
in RfindIp6()
569
uint32_t j = (i == endBytes) ? (
BIT_PER_BYTE
- endBits - 1) : 0;
in RfindIp6()
570
uint32_t k = (i == startBytes) ? (
BIT_PER_BYTE
in RfindIp6()
[all...]
/foundation/filemanagement/dfs_service/utils/dentry/include/
H
A
D
meta_file.h
187
static const uint8_t
BIT_PER_BYTE
= 8;
member
190
return 1 & (addr[nr /
BIT_PER_BYTE
] >> (nr & (
BIT_PER_BYTE
- 1)));
in TestBit()
195
addr[nr /
BIT_PER_BYTE
] &= ~(1UL << ((nr) %
BIT_PER_BYTE
));
in ClearBit()
200
addr[nr /
BIT_PER_BYTE
] |= (1UL << ((nr) %
BIT_PER_BYTE
));
in SetBit()
/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/
H
A
D
bitmap_manager.h
164
const uint32_t
BIT_PER_BYTE
= 8;
member
Completed in 3 milliseconds