Lines Matching defs:entry
189 foreach_in_list(acp_entry, entry, this->acp) {
190 if (entry->var == deref->var && entry->write_mask & (1 << channel)) {
191 found = entry;
258 /* Treat entry into a function signature as a completely separate
459 foreach_in_list_safe(acp_entry, entry, this->acp) {
460 if (entry->var == var) {
461 entry->write_mask &= ~write_mask;
462 if (entry->write_mask == 0)
463 entry->remove();
476 /* Not already in the hash table. Make new entry. */
481 * Adds an entry to the available constant list if it's a plain assignment
487 acp_entry *entry;
513 entry = new(this->lin_ctx) acp_entry(deref->var, ir->write_mask, constant);
514 this->acp->push_tail(entry);