OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:startbit
(Results
1 - 2
of
2
) sorted by null
/external/libsepol/include/sepol/policydb/
ebitmap.h
29
uint32_t
startbit
; /* starting position in the total bitmap */
member in struct:ebitmap_node
40
#define ebitmap_startbit(e) ((e)->node ? (e)->node->
startbit
: 0)
58
if ((bit == ((*n)->
startbit
+ MAPSIZE - 1)) && (*n)->next) {
60
return (*n)->
startbit
;
68
if (n->map & (MAPBIT << (bit - n->
startbit
)))
/external/libsepol/src/
ebitmap.c
34
if (n1 && n2 && n1->
startbit
== n2->
startbit
) {
35
new->
startbit
= n1->
startbit
;
39
} else if (!n2 || (n1 && n1->
startbit
< n2->
startbit
)) {
40
new->
startbit
= n1->
startbit
;
44
new->
startbit
= n2->
startbit
;
251
uint32_t
startbit
= bit & ~(MAPSIZE - 1);
local
[
all
...]
Completed in 191 milliseconds