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

12

/external/mesa3d/src/glsl/
H A Dir_set_program_inouts.cpp50 this->ht = hash_table_ctor(0,
56 hash_table_dtor(this->ht);
65 struct hash_table *ht; member in class:ir_set_program_inouts_visitor
91 if (hash_table_find(this->ht, ir->var) == NULL)
116 var = (ir_variable *)hash_table_find(this->ht, deref_var->var);
138 hash_table_insert(this->ht, ir, ir);
H A Dir_validate.cpp46 this->ht = hash_table_ctor(0, hash_table_pointer_hash,
52 this->data = ht;
57 hash_table_dtor(this->ht);
78 struct hash_table *ht; member in class:ir_validate
91 if (hash_table_find(ht, ir->var) == NULL) {
455 hash_table_insert(ht, ir, ir);
494 struct hash_table *ht = (struct hash_table *) data; local
496 if (hash_table_find(ht, ir)) {
502 hash_table_insert(ht, ir, ir);
H A Dlink_functions.cpp135 struct hash_table *ht = hash_table_ctor(0, hash_table_pointer_hash, local
142 ir_instruction *copy = original->clone(linked, ht);
151 ir_instruction *copy = original->clone(linked, ht);
156 hash_table_dtor(ht);
H A Dir_clone.cpp40 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const
60 var->constant_value = this->constant_value->clone(mem_ctx, ht);
62 if (ht) {
63 hash_table_insert(ht, var, (void *)const_cast<ir_variable *>(this));
70 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const
72 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
76 ir_return::clone(void *mem_ctx, struct hash_table *ht) const
81 new_value = this->value->clone(mem_ctx, ht);
87 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const
92 new_condition = this->condition->clone(mem_ctx, ht);
365 fixup_ir_call_visitor(struct hash_table *ht) argument
387 struct hash_table *ht; member in class:fixup_ir_call_visitor
392 fixup_function_calls(struct hash_table *ht, exec_list *instructions) argument
402 struct hash_table *ht = local
[all...]
H A Dloop_analysis.h223 hash_table *ht; member in class:loop_state
H A Dopt_function_inlining.cpp118 struct hash_table *ht; local
120 ht = hash_table_ctor(0, hash_table_pointer_hash, hash_table_pointer_compare);
154 parameters[i] = sig_param->clone(ctx, ht);
185 ir_instruction *new_ir = ir->clone(ctx, ht);
243 hash_table_dtor(ht);
H A Dlinker.cpp991 add_uniform(void *mem_ctx, exec_list *uniforms, struct hash_table *ht, argument
1002 int firstIndex = add_uniform(mem_ctx, uniforms, ht, field_name, field_type,
1008 uniform_node *n = (uniform_node *) hash_table_find(ht, name);
1018 int firstIndex = add_uniform(mem_ctx, uniforms, ht, elem_name, array_elem_type,
1057 hash_table_insert(ht, n, name);
1075 hash_table *ht = hash_table_ctor(32, hash_table_string_hash, local
1100 var->location = add_uniform(mem_ctx, &uniforms, ht, var->name, var->type,
1127 hash_table_dtor(ht);
/external/mesa3d/src/mesa/program/
H A Dhash_table.c60 struct hash_table *ht; local
68 ht = malloc(sizeof(*ht) + ((num_buckets - 1)
69 * sizeof(ht->buckets[0])));
70 if (ht != NULL) {
71 ht->hash = hash;
72 ht->compare = compare;
73 ht->num_buckets = num_buckets;
76 make_empty_list(& ht->buckets[i]);
80 return ht;
85 hash_table_dtor(struct hash_table *ht) argument
93 hash_table_clear(struct hash_table *ht) argument
112 hash_table_find(struct hash_table *ht, const void *key) argument
131 hash_table_insert(struct hash_table *ht, void *data, const void *key) argument
146 hash_table_remove(struct hash_table *ht, const void *key) argument
[all...]
H A Dsymbol_table.c102 struct hash_table *ht; member in struct:_mesa_symbol_table
200 return (struct symbol_header *) hash_table_find(table->ht, name);
342 hash_table_insert(table->ht, hdr, hdr->name);
399 hash_table_insert(table->ht, hdr, hdr->name);
460 table->ht = hash_table_ctor(32, hash_table_string_hash,
486 hash_table_dtor(table->ht);
/external/llvm/include/llvm/ADT/
H A DScopedHashTable.h222 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { argument
/external/openfst/src/include/fst/
H A Dbi-table.h134 HashFunc(const CompactHashBiTable &ht) : ht_(&ht) {} argument
144 HashEqual(const CompactHashBiTable &ht) : ht_(&ht) {} argument
296 HashFunc(const VectorHashBiTable &ht) : ht_(&ht) {} argument
305 HashEqual(const VectorHashBiTable &ht) : ht_(&ht) {} argument
/external/wpa_supplicant_8/hostapd/src/ap/
H A Ddrv_callbacks.c360 void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht, argument
368 "freq=%d, ht=%d, offset=%d", freq, ht, offset);
381 hapd->iconf->ieee80211n = ht;
/external/wpa_supplicant_8/src/ap/
H A Ddrv_callbacks.c360 void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht, argument
368 "freq=%d, ht=%d, offset=%d", freq, ht, offset);
381 hapd->iconf->ieee80211n = ht;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Ddrv_callbacks.c360 void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht, argument
368 "freq=%d, ht=%d, offset=%d", freq, ht, offset);
381 hapd->iconf->ieee80211n = ht;
/external/qemu/target-i386/
H A Dhax-all.c472 struct hax_tunnel *ht = vcpu->tunnel; local
478 if (ht->ready_for_interrupt_injection &&
497 ht->request_interrupt_window = 1;
499 ht->request_interrupt_window = 0;
527 struct hax_tunnel *ht = vcpu->tunnel; local
558 switch (ht->_exit_status)
562 ret = hax_handle_io(env, ht->pio._df, ht->pio._port,
563 ht->pio._direction,
564 ht
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dap.c980 void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht, argument
987 hostapd_event_ch_switch(wpa_s->ap_iface->bss[0], freq, ht, offset);
/external/openssl/crypto/bn/asm/
H A Dpa-risc2W.s157 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
158 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R)
187 LDD -24(%sp),ht_0 ; ht[0]
188 LDD -56(%sp),ht_1 ; ht[1]
195 ADD,L ht_0,top_overflow,ht_0 ; ht[0] += (1<<32)
198 ADD,L ht_1,top_overflow,ht_1 ; ht[1] += (1<<32)
204 ADD,L ht_0,m_0,ht_0 ; ht[0]+= (m[0]>>32)
205 ADD,L ht_1,m_1,ht_1 ; ht[1]+= (m[1]>>32)
208 ADD,DC ht_0,%r0,ht_0 ; ht[0]++
210 ADD,DC ht_1,%r0,ht_1 ; ht[
1002 ht .reg %r6 label
[all...]
H A Dpa-risc2.s165 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
166 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R)
195 LDD -24(%sp),ht_0 ; ht[0]
196 LDD -56(%sp),ht_1 ; ht[1]
203 ADD,L ht_0,top_overflow,ht_0 ; ht[0] += (1<<32)
206 ADD,L ht_1,top_overflow,ht_1 ; ht[1] += (1<<32)
212 ADD,L ht_0,m_0,ht_0 ; ht[0]+= (m[0]>>32)
213 ADD,L ht_1,m_1,ht_1 ; ht[1]+= (m[1]>>32)
216 ADD,DC ht_0,%r0,ht_0 ; ht[0]++
218 ADD,DC ht_1,%r0,ht_1 ; ht[
1015 ht .reg %r6 label
[all...]
/external/webkit/Tools/EWebLauncher/
H A Dmain.c530 Ewk_Hit_Test *ht; local
533 ht = ewk_frame_hit_test_new(frame, x, y);
534 if (!ht)
554 ht->x, ht->y,
555 ht->bounding_box.x, ht->bounding_box.y, ht->bounding_box.w, ht->bounding_box.h,
556 ht
[all...]
/external/v8/benchmarks/
H A Dearley-boyer.js107 var ht = sc_properties[sym];
108 if (!ht) {
109 ht = new Object();
110 sc_properties[sym] = ht;
112 ht[key] = val;
117 var ht = sc_properties[sym];
118 if (ht) {
119 if (key in ht)
120 return ht[key];
129 var ht
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-earley-boyer.js101 var ht = sc_properties[sym];
102 if (!ht) {
103 ht = new Object();
104 sc_properties[sym] = ht;
106 ht[key] = val;
111 var ht = sc_properties[sym];
112 if (ht) {
113 if (key in ht)
114 return ht[key];
123 var ht
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-earley-boyer.js101 var ht = sc_properties[sym];
102 if (!ht) {
103 ht = new Object();
104 sc_properties[sym] = ht;
106 ht[key] = val;
111 var ht = sc_properties[sym];
112 if (ht) {
113 if (key in ht)
114 return ht[key];
123 var ht
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-earley-boyer.js101 var ht = sc_properties[sym];
102 if (!ht) {
103 ht = new Object();
104 sc_properties[sym] = ht;
106 ht[key] = val;
111 var ht = sc_properties[sym];
112 if (ht) {
113 if (key in ht)
114 return ht[key];
123 var ht
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/sqlite/dist/orig/
H A Dsqlite3.c7591 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
7593 ** Hash.ht table is never allocated because if there are few elements
7604 } *ht; member in struct:Hash
13466 nByte += sqlite3MallocSize(pSchema->tblHash.ht);
13467 nByte += sqlite3MallocSize(pSchema->trigHash.ht);
13468 nByte += sqlite3MallocSize(pSchema->idxHash.ht);
13469 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht);
22260 pNew->ht = 0;
22273 sqlite3_free(pH->ht);
22274 pH->ht
116361 } *ht; member in struct:Fts3Hash
[all...]

Completed in 514 milliseconds

12