Home | History | Annotate | Download | only in glsl

Lines Matching refs:signature

2639 	     * a function signature outval
2647 * a function signature inval
3184 * used below to compare this function's signature with previously seen
3224 /* Verify that this function's signature either doesn't match a previously
3225 * seen signature for a function with the same name, or, if a match is found,
3226 * that the previously seen signature does not have an associated definition.
3282 /* Finish storing the information about this new function in its signature.
3290 signature = sig;
3305 ir_function_signature *signature = prototype->signature;
3306 if (signature == NULL)
3310 state->current_function = signature;
3317 foreach_iter(exec_list_iterator, iter, signature->parameters) {
3335 this->body->hir(&signature->body, state);
3336 signature->is_defined = true;
3340 assert(state->current_function == signature);
3343 if (!signature->return_type->is_void() && !state->found_return) {
3347 signature->function_name(),
3348 signature->return_type->name);