OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nslot
(Results
1 - 2
of
2
) sorted by null
/external/selinux/libsepol/include/sepol/policydb/
avtab.h
102
uint32_t
nslot
; /* number of hash slots */
member in struct:avtab
/external/selinux/libsepol/src/
avtab.c
314
for (i = 0; i < h->
nslot
; i++) {
328
h->
nslot
= 0;
343
for (i = 0; i < h->
nslot
; i++) {
367
uint32_t
nslot
= 0;
local
378
nslot
= 1 << shift;
379
if (
nslot
> MAX_AVTAB_HASH_BUCKETS)
380
nslot
= MAX_AVTAB_HASH_BUCKETS;
381
mask =
nslot
- 1;
383
h->htable = calloc(
nslot
, sizeof(avtab_ptr_t));
388
h->
nslot
= nslot
[
all
...]
Completed in 434 milliseconds