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:startbit
(Results
1 - 3
of
3
) sorted by relevance
/third_party/selinux/libsepol/src/
H
A
D
ebitmap.c
34
if (n1 && n2 && n1->
startbit
== n2->
startbit
) {
in ebitmap_or()
35
new->
startbit
= n1->
startbit
;
in ebitmap_or()
39
} else if (!n2 || (n1 && n1->
startbit
< n2->
startbit
)) {
in ebitmap_or()
40
new->
startbit
= n1->
startbit
;
in ebitmap_or()
44
new->
startbit
= n2->
startbit
;
in ebitmap_or()
121
uint32_t
startbit
;
ebitmap_xor()
local
171
uint32_t
startbit
, cur_
startbit
;
ebitmap_not()
local
380
uint32_t
startbit
= bit & ~(MAPSIZE - 1);
ebitmap_set_bit()
local
458
uint32_t
startbit
;
ebitmap_init_range()
local
[all...]
H
A
D
write.c
81
bit = cpu_to_le32(n->
startbit
);
in ebitmap_write()
/third_party/selinux/libsepol/include/sepol/policydb/
H
A
D
ebitmap.h
32
uint32_t
startbit
; /* starting position in the total bitmap */
member
44
#define ebitmap_startbit(e) ((e)->node ? (e)->node->
startbit
: 0)
62
if ((bit == ((*n)->
startbit
+ MAPSIZE - 1)) && (*n)->next) {
in ebitmap_next()
64
return (*n)->
startbit
;
in ebitmap_next()
72
if (n->map & (MAPBIT << (bit - n->
startbit
)))
in ebitmap_node_get_bit()
Completed in 4 milliseconds