Home | History | Annotate | Download | only in glsl

Lines Matching refs:existing

88       symbol_table_entry *existing = get_entry(v->name);
90 /* If there's already an existing function (not a constructor!) in
91 * the current scope, just update the existing entry to include 'v'.
93 if (existing->v == NULL && existing->t == NULL) {
94 existing->v = v;
98 /* If not declared at this scope, add a new entry. But if an existing
103 if (existing != NULL)
104 entry->f = existing->f;
128 symbol_table_entry *existing = get_entry(f->name);
129 if ((existing->f == NULL) && (existing->t == NULL)) {
130 existing->f = f;