Searched refs:deref (Results 1 - 25 of 225) sorted by relevance

123456789

/external/mesa3d/src/glsl/
H A Dlower_texture_projection.cpp63 ir_dereference *deref = new(mem_ctx) ir_dereference_variable(var); local
68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL);
71 deref = new(mem_ctx) ir_dereference_variable(var);
75 deref);
78 deref = new(mem_ctx) ir_dereference_variable(var);
82 deref);
H A Dlower_vec_index_to_cond_assign.cpp73 ir_dereference *deref; local
94 deref = new(base_ir) ir_dereference_variable(index);
95 assign = new(base_ir) ir_assignment(deref, orig_deref->array_index, NULL);
105 deref = new(base_ir) ir_dereference_variable(index);
108 deref,
111 /* Just clone the rest of the deref chain when trying to get at the
117 deref = new(base_ir) ir_dereference_variable(var);
118 assign = new(base_ir) ir_assignment(deref, swizzle, condition);
154 ir_dereference_variable *deref; local
178 deref
[all...]
H A Dlower_vec_index_to_swizzle.cpp63 ir_dereference_array *deref = ir->as_dereference_array(); local
66 if (!deref)
69 if (deref->array->type->is_matrix() || deref->array->type->is_array())
72 assert(deref->array_index->type->base_type == GLSL_TYPE_INT);
73 ir_constant = deref->array_index->constant_expression_value();
79 return new(ctx) ir_swizzle(deref->array,
H A Dopt_function_inlining.cpp41 ir_dereference *deref);
191 /* If any samplers were passed in, replace any deref of the sampler
192 * with a deref of the sampler argument.
201 ir_dereference *deref = param->as_dereference(); local
203 assert(deref);
204 do_sampler_replacement(&new_instructions, sig_param, deref);
323 * Replaces references to the "sampler" variable with a clone of "deref."
333 ir_sampler_replacement_visitor(ir_variable *sampler, ir_dereference *deref) argument
336 this->deref = deref;
352 ir_dereference *deref; member in class:ir_sampler_replacement_visitor
356 replace_deref(ir_dereference **deref) argument
417 do_sampler_replacement(exec_list *instructions, ir_variable *sampler, ir_dereference *deref) argument
[all...]
H A Dlower_if_to_cond_assign.cpp113 ir_dereference *deref = new(mem_ctx) ir_dereference_variable(cond_var); local
116 cond_expr = deref;
120 deref,
160 ir_dereference_variable *deref; local
184 deref = new(mem_ctx) ir_dereference_variable(cond_var);
185 assign = new(mem_ctx) ir_assignment(deref,
H A Dopt_structure_splitting.cpp188 void split_deref(ir_dereference **deref);
215 ir_structure_splitting_visitor::split_deref(ir_dereference **deref) argument
217 if ((*deref)->ir_type != ir_type_dereference_record)
220 ir_dereference_record *deref_record = (ir_dereference_record *)*deref;
237 *deref = new(entry->mem_ctx) ir_dereference_variable(entry->components[i]);
246 ir_dereference *deref = (*rvalue)->as_dereference();
248 if (!deref)
251 split_deref(&deref);
252 *rvalue = deref;
/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBundle.h113 MachineOperand &deref() const { return *OpI; } function in class:llvm::MachineOperandIteratorBase
166 MachineOperand &operator* () const { return deref(); }
167 MachineOperand *operator->() const { return &deref(); }
176 const MachineOperand &operator* () const { return deref(); }
177 const MachineOperand *operator->() const { return &deref(); }
186 MachineOperand &operator* () const { return deref(); }
187 MachineOperand *operator->() const { return &deref(); }
197 const MachineOperand &operator* () const { return deref(); }
198 const MachineOperand *operator->() const { return &deref(); }
/external/webkit/Source/JavaScriptCore/runtime/
H A DRopeImpl.cpp41 nextRope->deref();
43 static_cast<StringImpl*>(fiber)->deref();
H A DRopeImpl.h54 static void deref(Fiber fiber) function in class:JSC::RopeImpl
57 static_cast<RopeImpl*>(fiber)->deref();
59 static_cast<StringImpl*>(fiber)->deref();
72 ALWAYS_INLINE void deref() function in class:JSC::RopeImpl
/external/webkit/Source/WebCore/html/
H A DValidityState.h41 void deref() { m_control->deref(); } function in class:WebCore::ValidityState
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebNativeNodeFilterCondition.cpp34 m_filter->deref();
H A DWebNativeEventListener.cpp35 m_listener->deref();
/external/webkit/Source/WebCore/platform/graphics/android/
H A DSharedBufferStream.cpp36 ((SharedBuffer*)buffer)->deref();
46 // we can't necessarily call fBuffer->deref() here, as we may be
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DFontCustomPlatformDataPango.cpp40 static_cast<SharedBuffer*>(data)->deref();
/external/webkit/Source/WebCore/rendering/
H A DRenderWidgetProtector.h44 m_object->deref(m_arena);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKType.cpp47 static_cast<APIObject*>(const_cast<void*>(typeRef))->deref();
/external/webkit/Source/WebCore/rendering/style/
H A DContentData.cpp68 m_content.m_image->deref();
71 m_content.m_text->deref();
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory_p.h45 item->deref();
62 lst->deref();
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMXPath.mm48 IMPL->deref();
55 IMPL->deref();
/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
H A DDOMTestInterface.mm60 IMPL->deref();
67 IMPL->deref();
H A DDOMTestMediaQueryListListener.mm59 IMPL->deref();
66 IMPL->deref();
H A DDOMTestSerializedScriptValueInterface.mm61 IMPL->deref();
68 IMPL->deref();
/external/webkit/Source/WebCore/platform/network/
H A DAuthenticationClient.h41 void deref() { derefAuthenticationClient(); } function in class:WebCore::AuthenticationClient
/external/opencv/cv/src/
H A D_cvkdtree.hpp72 scalar_type boundary; // left if deref(value,dim)<=boundary, otherwise right
76 __deref deref; // requires operator() (__valuetype lhs,int dim) member in class:CvKDTree
93 mean += deref(ctor(*k), j);
97 accum_type diff = accum_type(deref(ctor(*k), j)) - mean;
129 __deref deref; member in struct:CvKDTree::median_pr
132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) {
135 return deref(ctor(lhs), dim) <= deref(ctor(pivot), dim);
147 (last[-1], dim, deref, ctor));
167 for (; split != last && deref(cto
[all...]
/external/webkit/Source/WebCore/bridge/jni/
H A DJobjectWrapper.h50 void deref() function in class:JSC::Bindings::JobjectWrapper

Completed in 520 milliseconds

123456789