HomeSort by relevance Sort by last modified time
    Searched refs:htable (Results 1 - 18 of 18) sorted by null

  /external/libsepol/src/
sidtab.c 30 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[hvalue] = cur->next
    [all...]
hashtab.c 55 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[hvalue]
    [all...]
avtab.c 73 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[hvalue]; cur; cur = cur->next)
    [all...]
write.c 235 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) {
    [all...]
  /external/libselinux/src/
avc_sidtab.c 35 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...]
avc_sidtab.h 23 struct sidtab_node **htable; member in struct:sidtab
  /system/core/toolbox/
du.c 246 } *htable; local
270 if (!htable)
278 ohtable = htable;
279 htable = calloc(htmask+1, sizeof(*htable));
280 if (!htable)
302 while (htable[h].ino || htable[h].dev) {
303 if ((htable[h].ino == ino) && (htable[h].dev == dev)
    [all...]
  /external/libsepol/include/sepol/policydb/
sidtab.h 31 sidtab_ptr_t *htable; member in struct:__anon22868
avtab.h 81 avtab_ptr_t *htable; member in struct:avtab
hashtab.h 34 hashtab_ptr_t *htable; /* hash table */ member in struct:hashtab_val
  /external/chromium_org/third_party/icu/source/i18n/unicode/
tmutfmt.h 249 void deleteHash(Hashtable* htable);
  /external/icu4c/i18n/unicode/
tmutfmt.h 248 void deleteHash(Hashtable* htable);
  /external/chromium_org/third_party/icu/source/common/
udata.cpp 284 UHashtable *htable; local
290 htable = udata_getHashTable();
292 el = (DataCacheElement *)uhash_get(htable, baseName);
308 UHashtable *htable; local
344 htable = udata_getHashTable();
346 oldValue = (DataCacheElement *)uhash_get(htable, path);
352 htable,
    [all...]
  /external/icu4c/common/
udata.cpp 308 UHashtable *htable; local
314 htable = udata_getHashTable();
316 el = (DataCacheElement *)uhash_get(htable, baseName);
332 UHashtable *htable; local
368 htable = udata_getHashTable();
370 oldValue = (DataCacheElement *)uhash_get(htable, path);
376 htable,
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
tmutfmt.cpp 765 TimeUnitFormat::deleteHash(Hashtable* htable) {
768 if ( htable ) {
769 while ( (element = htable->nextElement(pos)) != NULL ) {
778 delete htable;
    [all...]
  /external/icu4c/i18n/
tmutfmt.cpp 791 TimeUnitFormat::deleteHash(Hashtable* htable) {
794 if ( htable ) {
795 while ( (element = htable->nextElement(pos)) != NULL ) {
804 delete htable;
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1689 const uchar* htable = i == 0 ? jpegTableK3 : i == 1 ? jpegTableK5 : local
1799 const ulong* htable = huff_ac_tab[is_chroma]; local
    [all...]
  /external/checkpolicy/test/
dispol.c 173 for (cur = expa.htable[i]; cur; cur = cur->next) {

Completed in 199 milliseconds