Searched refs:acp (Results 1 - 14 of 14) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dopt_constant_propagation.cpp88 this->acp = new(mem_ctx) exec_list;
112 exec_list *acp; member in class:__anonb352fc770110::ir_constant_propagation_visitor
189 foreach_in_list(acp_entry, entry, this->acp) {
262 exec_list *orig_acp = this->acp;
266 this->acp = new(mem_ctx) exec_list;
273 this->acp = orig_acp;
342 acp->make_empty();
351 exec_list *orig_acp = this->acp;
355 this->acp = new(mem_ctx) exec_list;
359 /* Populate the initial acp wit
[all...]
H A Dopt_copy_propagation_elements.cpp91 _mesa_hash_table_clear(acp, NULL);
130 hash_entry *ht_entry = _mesa_hash_table_search(s->acp, var);
206 acp = _mesa_pointer_hash_table_create(this);
212 hash_entry *ht_entry = _mesa_hash_table_search(acp, var);
218 _mesa_hash_table_insert(acp, var, entry);
222 hash_entry *fallback_ht_entry = _mesa_hash_table_search(s->acp, var);
249 hash_table *acp; member in class:__anon3d49c3040110::copy_propagation_state
550 /* Populate the initial acp with a copy of the original */
602 /* Populate the initial acp with a copy of the original */
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dopt_constant_propagation.cpp88 this->acp = new(mem_ctx) exec_list;
112 exec_list *acp; member in class:__anon6f50ba640110::ir_constant_propagation_visitor
189 foreach_in_list(acp_entry, entry, this->acp) {
253 exec_list *orig_acp = this->acp;
257 this->acp = new(mem_ctx) exec_list;
264 this->acp = orig_acp;
333 acp->make_empty();
342 exec_list *orig_acp = this->acp;
346 this->acp = new(mem_ctx) exec_list;
350 /* Populate the initial acp wit
[all...]
H A Dopt_copy_propagation_elements.cpp91 _mesa_hash_table_clear(acp, NULL);
130 hash_entry *ht_entry = _mesa_hash_table_search(s->acp, var);
206 acp = _mesa_pointer_hash_table_create(this);
212 hash_entry *ht_entry = _mesa_hash_table_search(acp, var);
218 _mesa_hash_table_insert(acp, var, entry);
222 hash_entry *fallback_ht_entry = _mesa_hash_table_search(s->acp, var);
249 hash_table *acp; member in class:__anon073c3d110110::copy_propagation_state
550 /* Populate the initial acp with a copy of the original */
602 /* Populate the initial acp with a copy of the original */
/xsrc/external/mit/xfs/dist/difs/
H A Ddispatch.c572 AuthPtr acp; local in function:ProcCreateAC
592 acp = NULL;
595 acp = (AuthPtr) ALLOCATE_LOCAL(stuff->num_auths * sizeof(AuthRec));
596 if (!acp) {
609 DEALLOCATE_LOCAL(acp);
613 acp[i].namelen = (((unsigned char *)ad)[0] << 8) +
616 acp[i].datalen = (((unsigned char *)ad)[0] << 8) +
619 acp[i].name = (char *) ad;
620 ad += acp[i].namelen;
621 acp[
729 AuthContextPtr acp; local in function:ProcSetAuthorization
[all...]
H A Ddifsutils.c526 AuthContextPtr acp = client->auth; local in function:set_font_authorizations
529 if (acp != NULL && acp->authname != NULL && acp->authdata != NULL &&
530 (!strcmp(AUTH1_NAME, acp->authname) ||
531 !strcmp(AUTH2_NAME, acp->authname)) &&
532 (len1 = strlen(acp->authname) + 1) +
533 (len2 = strlen(acp->authdata) + 1) + 2 * sizeof(short) <= 1024)
540 memmove( p, acp->authname, len1);
542 memmove( p, acp
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_fs_copy_propagation.cpp57 * Which entries in the fs_copy_prop_dataflow acp table are live at the
65 * Which entries in the fs_copy_prop_dataflow acp table are live at the end
72 * Which entries in the fs_copy_prop_dataflow acp table are generated by
79 * Which entries in the fs_copy_prop_dataflow acp table are killed over the
85 * Which entries in the fs_copy_prop_dataflow acp table are guaranteed to
107 acp_entry **acp; member in class:__anonfbd2534f0110::fs_copy_prop_dataflow
129 acp = rzalloc_array(mem_ctx, struct acp_entry *, num_acp);
143 acp[next_acp] = entry;
178 acp[i]->dst, acp[
788 opt_copy_propagation_local(void * copy_prop_ctx,bblock_t * block,exec_list * acp) argument
[all...]
H A Dbrw_fs.h142 exec_list *acp);
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_fs_copy_propagation.cpp60 * Which entries in the fs_copy_prop_dataflow acp table are live at the
68 * Which entries in the fs_copy_prop_dataflow acp table are live at the end
75 * Which entries in the fs_copy_prop_dataflow acp table are generated by
82 * Which entries in the fs_copy_prop_dataflow acp table are killed over the
88 * Which entries in the fs_copy_prop_dataflow acp table are guaranteed to
110 acp_entry **acp; member in class:__anon3fd495620110::fs_copy_prop_dataflow
132 acp = rzalloc_array(mem_ctx, struct acp_entry *, num_acp);
146 acp[next_acp] = entry;
198 unsigned idx = reg_space(acp[i]->dst) & (acp_table_size - 1);
199 acp_table[idx].push_tail(acp[
968 opt_copy_propagation_local(void * copy_prop_ctx,bblock_t * block,exec_list * acp) argument
[all...]
H A Dbrw_fs.h168 exec_list *acp);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
H A Dir_to_mesa.cpp2683 ir_to_mesa_instruction **acp = rzalloc_array(mem_ctx, local in function:ir_to_mesa_visitor::copy_propagate
2709 ir_to_mesa_instruction *copy_chan = acp[acp_base + src_chan];
2739 ir_to_mesa_instruction *copy_inst = acp[acp_base + src_chan];
2751 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2765 if (!acp[4 * r + c])
2769 acp[4 * r + c] = NULL;
2784 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2792 if (!acp[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/program/
H A Dir_to_mesa.cpp2661 ir_to_mesa_instruction **acp = rzalloc_array(mem_ctx, local in function:ir_to_mesa_visitor::copy_propagate
2687 ir_to_mesa_instruction *copy_chan = acp[acp_base + src_chan];
2717 ir_to_mesa_instruction *copy_inst = acp[acp_base + src_chan];
2729 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2743 if (!acp[4 * r + c])
2747 acp[4 * r + c] = NULL;
2762 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
2770 if (!acp[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp5077 glsl_to_tgsi_instruction **acp = rzalloc_array(mem_ctx, local in function:glsl_to_tgsi_visitor::copy_propagate
5104 glsl_to_tgsi_instruction *copy_chan = acp[acp_base + src_chan];
5140 glsl_to_tgsi_instruction *copy_inst = acp[acp_base + src_chan];
5151 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
5166 if (!acp[4 * r + c])
5170 acp[4 * r + c] = NULL;
5186 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
5194 if (!acp[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp5218 glsl_to_tgsi_instruction **acp = rzalloc_array(mem_ctx, local in function:glsl_to_tgsi_visitor::copy_propagate
5245 glsl_to_tgsi_instruction *copy_chan = acp[acp_base + src_chan];
5281 glsl_to_tgsi_instruction *copy_inst = acp[acp_base + src_chan];
5292 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
5307 if (!acp[4 * r + c])
5311 acp[4 * r + c] = NULL;
5327 memset(acp, 0, sizeof(*acp) * this->next_temp * 4);
5335 if (!acp[
[all...]

Completed in 29 milliseconds