HomeSort by relevance Sort by last modified time
    Searched refs:deref (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
iter_apply.hpp 18 #include <boost/mpl/deref.hpp>
27 : apply1< F,typename deref<Iterator>::type >
39 , typename deref<Iterator1>::type
40 , typename deref<Iterator2>::type
at_impl.hpp 19 #include <boost/mpl/deref.hpp>
37 typedef typename deref<iter_>::type type;
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_ubo_reference.cpp 52 void emit_ubo_loads(ir_dereference *deref, ir_variable *base_offset,
76 ir_dereference *deref = (*rvalue)->as_dereference();
77 if (!deref)
80 ir_variable *var = deref->variable_referenced();
96 while (deref) {
97 switch (deref->ir_type) {
100 deref = NULL;
105 ir_dereference_array *deref_array = (ir_dereference_array *)deref;
127 deref = deref_array->array->as_dereference();
132 ir_dereference_record *deref_record = (ir_dereference_record *)deref;
    [all...]
lower_texture_projection.cpp 63 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);
opt_function_inlining.cpp 40 ir_dereference *deref);
172 /* If any samplers were passed in, replace any deref of the sampler
173 * with a deref of the sampler argument.
182 ir_dereference *deref = param->as_dereference(); local
184 assert(deref);
185 do_sampler_replacement(&new_instructions, sig_param, deref);
271 * Replaces references to the "sampler" variable with a clone of "deref."
281 ir_sampler_replacement_visitor(ir_variable *sampler, ir_dereference *deref)
284 this->deref = deref;
300 ir_dereference *deref; member in class:ir_sampler_replacement_visitor
    [all...]
lower_vec_index_to_swizzle.cpp 64 ir_dereference_array *deref = ir->as_dereference_array(); local
67 if (!deref)
70 if (deref->array->type->is_matrix() || deref->array->type->is_array())
73 assert(deref->array_index->type->base_type == GLSL_TYPE_INT);
74 ir_constant = deref->array_index->constant_expression_value();
96 (deref->array->type->vector_elements - 1));
98 return new(ctx) ir_swizzle(deref->array, i, 0, 0, 0, 1);
ir_builder.h 57 class deref { class in namespace:ir_builder
59 deref(ir_dereference *val) function in class:ir_builder::deref
64 deref(ir_variable *var) function in class:ir_builder::deref
83 ir_assignment *assign(deref lhs, operand rhs);
84 ir_assignment *assign(deref lhs, operand rhs, int writemask);
  /external/mesa3d/src/glsl/
lower_ubo_reference.cpp 52 void emit_ubo_loads(ir_dereference *deref, ir_variable *base_offset,
76 ir_dereference *deref = (*rvalue)->as_dereference();
77 if (!deref)
80 ir_variable *var = deref->variable_referenced();
96 while (deref) {
97 switch (deref->ir_type) {
100 deref = NULL;
105 ir_dereference_array *deref_array = (ir_dereference_array *)deref;
127 deref = deref_array->array->as_dereference();
132 ir_dereference_record *deref_record = (ir_dereference_record *)deref;
    [all...]
lower_texture_projection.cpp 63 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);
opt_function_inlining.cpp 40 ir_dereference *deref);
172 /* If any samplers were passed in, replace any deref of the sampler
173 * with a deref of the sampler argument.
182 ir_dereference *deref = param->as_dereference(); local
184 assert(deref);
185 do_sampler_replacement(&new_instructions, sig_param, deref);
271 * Replaces references to the "sampler" variable with a clone of "deref."
281 ir_sampler_replacement_visitor(ir_variable *sampler, ir_dereference *deref)
284 this->deref = deref;
300 ir_dereference *deref; member in class:ir_sampler_replacement_visitor
    [all...]
lower_vec_index_to_swizzle.cpp 64 ir_dereference_array *deref = ir->as_dereference_array(); local
67 if (!deref)
70 if (deref->array->type->is_matrix() || deref->array->type->is_array())
73 assert(deref->array_index->type->base_type == GLSL_TYPE_INT);
74 ir_constant = deref->array_index->constant_expression_value();
96 (deref->array->type->vector_elements - 1));
98 return new(ctx) ir_swizzle(deref->array, i, 0, 0, 0, 1);
ir_builder.h 57 class deref { class in namespace:ir_builder
59 deref(ir_dereference *val) function in class:ir_builder::deref
64 deref(ir_variable *var) function in class:ir_builder::deref
83 ir_assignment *assign(deref lhs, operand rhs);
84 ir_assignment *assign(deref lhs, operand rhs, int writemask);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 62 ir_dereference *deref = new(mem_ctx) ir_dereference_variable(var); local
63 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, ir->coordinate,
67 deref = new(mem_ctx) ir_dereference_variable(var);
68 ir_rvalue *swiz0 = new(mem_ctx) ir_swizzle(deref, 0, 0, 0, 0, 1);
69 deref = new(mem_ctx) ir_dereference_variable(var);
70 ir_rvalue *swiz1 = new(mem_ctx) ir_swizzle(deref, 1, 0, 0, 0, 1);
71 deref = new(mem_ctx) ir_dereference_variable(var);
72 ir_rvalue *swiz2 = new(mem_ctx) ir_swizzle(deref, 2, 0, 0, 0, 1);
91 deref = new(mem_ctx) ir_dereference_variable(var);
94 deref,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 62 ir_dereference *deref = new(mem_ctx) ir_dereference_variable(var); local
63 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, ir->coordinate,
67 deref = new(mem_ctx) ir_dereference_variable(var);
68 ir_rvalue *swiz0 = new(mem_ctx) ir_swizzle(deref, 0, 0, 0, 0, 1);
69 deref = new(mem_ctx) ir_dereference_variable(var);
70 ir_rvalue *swiz1 = new(mem_ctx) ir_swizzle(deref, 1, 0, 0, 0, 1);
71 deref = new(mem_ctx) ir_dereference_variable(var);
72 ir_rvalue *swiz2 = new(mem_ctx) ir_swizzle(deref, 2, 0, 0, 0, 1);
91 deref = new(mem_ctx) ir_dereference_variable(var);
94 deref,
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
deref.hpp 13 // $Id: deref.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
27 struct deref struct in namespace:boost::mpl
34 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,deref,(Iterator))
37 BOOST_MPL_AUX_NA_SPEC(1, deref)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSRuleList.cpp 46 void StaticCSSRuleList::deref() function in class:WebCore::StaticCSSRuleList
CSSRuleList.h 40 virtual void deref() = 0;
56 virtual void deref();
80 virtual void deref() { m_rule->deref(); } function in class:WebCore::LiveCSSRuleList
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
reverse_fold_impl.hpp 53 typedef typename apply2< ForwardOp, fwd_state0, typename deref<iter0>::type >::type fwd_state1;
58 typedef typename apply2< BackwardOp, bkwd_state1, typename deref<iter0>::type >::type bkwd_state0;
74 typedef typename apply2< ForwardOp, fwd_state0, typename deref<iter0>::type >::type fwd_state1;
76 typedef typename apply2< ForwardOp, fwd_state1, typename deref<iter1>::type >::type fwd_state2;
81 typedef typename apply2< BackwardOp, bkwd_state2, typename deref<iter1>::type >::type bkwd_state1;
82 typedef typename apply2< BackwardOp, bkwd_state1, typename deref<iter0>::type >::type bkwd_state0;
100 typedef typename apply2< ForwardOp, fwd_state0, typename deref<iter0>::type >::type fwd_state1;
102 typedef typename apply2< ForwardOp, fwd_state1, typename deref<iter1>::type >::type fwd_state2;
104 typedef typename apply2< ForwardOp, fwd_state2, typename deref<iter2>::type >::type fwd_state3;
109 typedef typename apply2< BackwardOp, bkwd_state3, typename deref<iter2>::type >::type bkwd_state2
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBundle.h 131 MachineOperand &deref() const { return *OpI; } function in class:llvm::MachineOperandIteratorBase
215 MachineOperand &operator* () const { return deref(); }
216 MachineOperand *operator->() const { return &deref(); }
225 const MachineOperand &operator* () const { return deref(); }
226 const MachineOperand *operator->() const { return &deref(); }
235 MachineOperand &operator* () const { return deref(); }
236 MachineOperand *operator->() const { return &deref(); }
246 const MachineOperand &operator* () const { return deref(); }
247 const MachineOperand *operator->() const { return &deref(); }
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestUpload.h 55 void deref() { m_xmlHttpRequest->deref(); } function in class:WebCore::XMLHttpRequestUpload
74 virtual void derefEventTarget() { deref(); }
  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidityState.h 42 void deref() { m_control->deref(); } function in class:WebCore::ValidityState
ClassList.cpp 41 void ClassList::deref() function in class:WebCore::ClassList
43 m_element->deref();
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.h 51 void deref() { m_element->deref(); } function in class:WebCore::InputMethodContext
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TrackBase.h 47 using RefCounted<TrackBase>::deref;
59 virtual void derefEventTarget() { deref(); }
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentRef.h 82 Address deref();
84 ConstAddress deref() const;
87 { return deref(); }
90 { return deref(); }

Completed in 581 milliseconds

1 2 3 4 5 6 7 8 91011