Searched defs:ht (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid_hash.c110 did_hash_destroy(did_hash_t *ht) argument
115 if (ht == NULL)
117 for (idx = 0; idx < ht->dph_hashlen; idx++) {
118 for (e = ht->dph_hash[idx]; e != NULL; ) {
124 topo_mod_free(ht->dph_mod,
125 ht->dph_hash, ht->dph_hashlen * sizeof (did_t *));
126 topo_mod_free(ht->dph_mod, ht, sizeof (did_hash_t));
/osnet-11/usr/src/lib/libsqlite/src/
H A Dhash.h44 } *ht; member in struct:Hash
/osnet-11/usr/src/lib/libsmbns/common/
H A Dsmbns_hash.c87 HT_HANDLE *ht; local
99 if ((ht = (HT_HANDLE *)malloc(msize)) == 0)
103 ht->ht_table = (HT_TABLE_ENTRY *)((char *)ht + sizeof (HT_HANDLE));
104 ht->ht_table_size = table_size;
105 ht->ht_table_mask = table_size - 1;
106 ht->ht_key_size = key_size;
107 ht->ht_total_items = 0;
108 ht->ht_flags = flags;
109 ht
[all...]
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java132 private Hashtable ht = new Hashtable(); // for collecting attributes. field in class:ServiceStoreInMemory.AttributeBVCollector
149 findMatchingAttributes(rec, attrTags, ht, ret);
922 InMemoryEvaluator(Hashtable ht, argument
925 attrLevel = ht;
1782 Hashtable ht = new Hashtable();
1811 if (ht.get(rec) != null) {
1816 ht.put(rec, rec);
2051 Hashtable ht = new Hashtable();
2055 ht.put(ServiceStore.FS_SERVICES, services);
2060 ht
2904 findMatchingAttributes(ServiceRecordInMemory rec, Vector attrTags, Hashtable ht, Vector ret) argument
2949 saveValueIfMatch(ServerAttribute attr, AttributePattern attrTag, Hashtable ht, Vector ret) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/readers/
H A Djpeg.c567 int id, ht; local
573 ht = grub_jpeg_get_byte (data);
574 data->comp_index[id][1] = (ht >> 4);
575 data->comp_index[id][2] = (ht & 0xF) + 2;
H A Dpng.c327 grub_png_init_huff_table (struct huff_table *ht, int cur_maxlen, argument
330 ht->values = cur_values;
331 ht->maxval = cur_maxval;
332 ht->offset = cur_offset;
333 ht->num_values = 0;
334 ht->max_length = cur_maxlen;
339 grub_png_insert_huff_item (struct huff_table *ht, int code, int len) argument
346 if (len > ht->max_length)
353 for (i = len; i < ht->max_length; i++)
354 n += ht
365 grub_png_build_huff_table(struct huff_table *ht) argument
384 grub_png_get_huff_code(struct grub_png_data *data, struct huff_table *ht) argument
476 struct huff_table *ht; local
[all...]
/osnet-11/usr/src/lib/nsswitch/files/common/
H A Dfiles_common.c998 int ht; local
1093 for (ht = 0; ht < fhp->fh_nhtab; ht++) {
1094 hp = &fhp->fh_table[ht * fhp->fh_size + line];
1096 (fhp->fh_hash_arr_func[ht] != NULL)) {
1097 hp->h_arr_hash = fhp->fh_hash_arr_func[ht](
1101 hp->h_hash = fhp->fh_hash_func[ht](NULL, 0,
1132 for (ht = 0; ht < fh
[all...]
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dlemon.c3752 struct s_x1node **ht; /* Hash table for lookups */ member in struct:s_x1
3781 x1a->ht = (x1node**)&(x1a->tbl[1024]);
3782 for(i=0; i<1024; i++) x1a->ht[i] = 0;
3798 np = x1a->ht[h];
3816 array.ht = (x1node**)&(array.tbl[size]);
3817 for(i=0; i<size; i++) array.ht[i] = 0;
3823 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
3824 newnp->next = array.ht[h];
3826 newnp->from = &(array.ht[
3913 struct s_x2node **ht; /* Hash table for lookups */ member in struct:s_x2
4119 struct s_x3node **ht; /* Hash table for lookups */ member in struct:s_x3
4266 struct s_x4node **ht; /* Hash table for lookups */ member in struct:s_x4
[all...]

Completed in 36 milliseconds