Searched refs:htable (Results 1 - 20 of 20) sorted by relevance

/external/libsepol/src/
H A Dsidtab.c30 s->htable = malloc(sizeof(sidtab_ptr_t) * SIDTAB_SIZE);
31 if (!s->htable)
34 s->htable[i] = (sidtab_ptr_t) NULL;
48 if (!s || !s->htable)
53 cur = s->htable[hvalue];
77 newnode->next = s->htable[hvalue];
78 s->htable[hvalue] = newnode;
92 if (!s || !s->htable)
97 cur = s->htable[hvalue];
107 s->htable[hvalu
[all...]
H A Dhashtab.c55 p->htable = (hashtab_ptr_t *) malloc(sizeof(hashtab_ptr_t) * size);
56 if (p->htable == NULL) {
61 p->htable[i] = (hashtab_ptr_t) NULL;
76 cur = h->htable[hvalue];
95 newnode->next = h->htable[hvalue];
96 h->htable[hvalue] = newnode;
115 cur = h->htable[hvalue];
125 h->htable[hvalue] = cur->next;
148 cur = h->htable[hvalue];
170 newnode->next = h->htable[hvalu
[all...]
H A Davtab.c73 newnode->next = h->htable[hvalue];
74 h->htable[hvalue] = newnode;
88 if (!h || !h->htable)
92 for (prev = NULL, cur = h->htable[hvalue];
129 if (!h || !h->htable)
132 for (prev = NULL, cur = h->htable[hvalue];
161 if (!h || !h->htable)
165 for (cur = h->htable[hvalue]; cur; cur = cur->next) {
196 if (!h || !h->htable)
200 for (cur = h->htable[hvalu
[all...]
H A Dwrite.c235 for (cur = a->htable[i]; cur; cur = cur->next)
274 for (cur = a->htable[i]; cur; cur = cur->next) {
295 for (cur = a->htable[i]; cur; cur = cur->next) {
/external/libselinux/src/
H A Davc_sidtab.c35 s->htable = (struct sidtab_node **)avc_malloc
38 if (!s->htable) {
43 s->htable[i] = NULL;
68 newnode->next = s->htable[hvalue];
71 s->htable[hvalue] = newnode;
88 cur = s->htable[hvalue];
112 cur = h->htable[i];
141 cur = s->htable[i];
148 s->htable[i] = NULL;
150 avc_free(s->htable);
[all...]
H A Davc_sidtab.h23 struct sidtab_node **htable; member in struct:sidtab
/external/qemu/distrib/libselinux/src/
H A Davc_sidtab.c35 s->htable = (struct sidtab_node **)avc_malloc
38 if (!s->htable) {
43 s->htable[i] = NULL;
68 newnode->next = s->htable[hvalue];
71 s->htable[hvalue] = newnode;
88 cur = s->htable[hvalue];
112 cur = h->htable[i];
141 cur = s->htable[i];
148 s->htable[i] = NULL;
150 avc_free(s->htable);
[all...]
H A Davc_sidtab.h23 struct sidtab_node **htable; member in struct:sidtab
/external/libsepol/include/sepol/policydb/
H A Dsidtab.h31 sidtab_ptr_t *htable; member in struct:__anon24644
H A Davtab.h81 avtab_ptr_t *htable; member in struct:avtab
H A Dhashtab.h34 hashtab_ptr_t *htable; /* hash table */ member in struct:hashtab_val
/external/icu/icu4c/source/i18n/unicode/
H A Dtmutfmt.h226 void deleteHash(Hashtable* htable);
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtmutfmt.h248 void deleteHash(Hashtable* htable);
/external/chromium_org/third_party/icu/source/common/
H A Dudata.cpp295 UHashtable *htable; local
301 htable = udata_getHashTable();
303 el = (DataCacheElement *)uhash_get(htable, baseName);
319 UHashtable *htable; local
355 htable = udata_getHashTable();
357 oldValue = (DataCacheElement *)uhash_get(htable, path);
363 htable,
/external/icu/icu4c/source/common/
H A Dudata.cpp295 UHashtable *htable; local
301 htable = udata_getHashTable();
303 el = (DataCacheElement *)uhash_get(htable, baseName);
319 UHashtable *htable; local
355 htable = udata_getHashTable();
357 oldValue = (DataCacheElement *)uhash_get(htable, path);
363 htable,
/external/chromium_org/third_party/icu/source/i18n/
H A Dtmutfmt.cpp787 TimeUnitFormat::deleteHash(Hashtable* htable) { argument
790 if ( htable ) {
791 while ( (element = htable->nextElement(pos)) != NULL ) {
800 delete htable;
/external/icu/icu4c/source/i18n/
H A Dtmutfmt.cpp687 TimeUnitFormat::deleteHash(Hashtable* htable) { argument
690 if ( htable ) {
691 while ( (element = htable->nextElement(pos)) != NULL ) {
700 delete htable;
/external/sepolicy/tools/
H A Dsepolicy-check.c84 for (cur = exp_avtab.htable[i]; cur; cur = cur->next) {
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp1689 const uchar* htable = i == 0 ? jpegTableK3 : i == 1 ? jpegTableK5 : local
1698 lowstrm.PutBytes( htable, tableSize ); // put table
1701 htable, buffer, 16, 9 ), is_ac_tab ? huff_ac_tab[idx] :
1799 const ulong* htable = huff_ac_tab[is_chroma]; local
1828 m_strm.PutHuff( 0xF0, htable ); // encode 16 zeros
1837 m_strm.PutHuff( cat + run*16, htable );
1847 m_strm.PutHuff( 0x00, htable ); // encode EOB
/external/checkpolicy/test/
H A Ddispol.c173 for (cur = expa.htable[i]; cur; cur = cur->next) {

Completed in 9198 milliseconds