Home
last modified time | relevance | path

Searched refs:var_ref (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
DREADME76 (assign (constant bool (1)) (var_ref litColor) (expression vec3 * (var_ref Surf
77 aceColor) (var_ref __retval) ) )
82 (var_ref) (expression *) (constant bool 1)
84 (litColor) (var_ref) (var_ref)
105 (assign (constant bool (1)) (var_ref __retval) (expression float dot
106 (var_ref normDelta) (var_ref LightDir) ) )
108 (assign (constant bool (1)) (var_ref __retval) (expression vec3 -
109 (var_ref LightDir) (expression vec3 * (constant float (2.000000))
110 (expression vec3 * (expression float dot (var_ref normDelta) (var_ref
111 LightDir) ) (var_ref normDelta) ) ) ) )
[all …]
Dopt_flip_matrices.cpp98 ir_dereference_variable *var_ref = array_ref->array->as_dereference_variable(); in visit_enter() local
99 assert(var_ref && var_ref->var == mat_var); in visit_enter()
104 var_ref->var = texmat_transpose; in visit_enter()
Dopt_constant_propagation.cpp137 ir_dereference_variable *var_ref = (*rvalue)->as_dereference_variable(); in constant_folding() local
138 if (var_ref && !var_ref->type->is_array()) { in constant_folding()
140 var_ref->constant_expression_value(ralloc_parent(var_ref)); in constant_folding()
Dopt_constant_folding.cpp99 ir_dereference_variable *var_ref = (*rvalue)->as_dereference_variable(); in ir_constant_fold() local
100 if (var_ref) in ir_constant_fold()
Dbuiltin_functions.cpp941 ir_dereference_variable *var_ref(ir_variable *var);
4932 builtin_builder::var_ref(ir_variable *var) in var_ref() function in builtin_builder
5111 actual_params.push_tail(var_ref(var)); in call()
5121 (sig->return_type->is_void() ? NULL : var_ref(ret)); in call()
6462 tex->lod_info.lod = var_ref(lod); in _textureSize()
6500 tex->set_sampler(var_ref(s), return_type); in _texture()
6505 tex->coordinate = var_ref(P); in _texture()
6524 tex->shadow_comparator = var_ref(refz); in _texture()
6536 tex->lod_info.lod = var_ref(lod); in _texture()
6543 tex->lod_info.grad.dPdx = var_ref(dPdx); in _texture()
[all …]
Dir_reader.cpp908 ir_dereference_variable *var_ref = read_var_ref(expr); in read_dereference() local
909 if (var_ref != NULL) { in read_dereference()
910 return var_ref; in read_dereference()
/third_party/quickjs/
Dquickjs-opcode.h45 FMT(var_ref)
168 DEF( get_var_ref, 3, 0, 1, var_ref)
169 DEF( put_var_ref, 3, 1, 0, var_ref) /* must come after get_var_ref */
170 DEF( set_var_ref, 3, 1, 1, var_ref) /* must come after put_var_ref */
175 DEF(get_var_ref_check, 3, 0, 1, var_ref)
176 DEF(put_var_ref_check, 3, 1, 0, var_ref) /* must come after get_var_ref_check */
177 DEF(put_var_ref_check_init, 3, 1, 0, var_ref)
Dquickjs.c765 JSVarRef *var_ref; /* if != NULL, reference to the variable */ member
836 JSVarRef *var_ref; /* JS_PROP_VARREF */ member
1208 static void free_var_ref(JSRuntime *rt, JSVarRef *var_ref);
5189 free_var_ref(rt, pr->u.var_ref); in free_property()
5247 static void free_var_ref(JSRuntime *rt, JSVarRef *var_ref) in free_var_ref() argument
5249 if (var_ref) { in free_var_ref()
5250 assert(var_ref->header.ref_count > 0); in free_var_ref()
5251 if (--var_ref->header.ref_count == 0) { in free_var_ref()
5252 if (var_ref->is_detached) { in free_var_ref()
5253 JS_FreeValueRT(rt, var_ref->value); in free_var_ref()
[all …]