Home
last modified time | relevance | path

Searched refs:ofs (Results 1 – 1 of 1) sorted by relevance

/security/selinux/ss/
Debitmap.h49 unsigned int ofs; in ebitmap_start_positive() local
52 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_start_positive()
53 if (ofs < EBITMAP_SIZE) in ebitmap_start_positive()
54 return (*n)->startbit + ofs; in ebitmap_start_positive()
68 unsigned int ofs; in ebitmap_next_positive() local
70 ofs = find_next_bit((*n)->maps, EBITMAP_SIZE, bit - (*n)->startbit + 1); in ebitmap_next_positive()
71 if (ofs < EBITMAP_SIZE) in ebitmap_next_positive()
72 return ofs + (*n)->startbit; in ebitmap_next_positive()
75 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_next_positive()
76 if (ofs < EBITMAP_SIZE) in ebitmap_next_positive()
[all …]