HomeSort by relevance Sort by last modified time
    Searched refs:ir (Results 176 - 200 of 402) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_hierarchical_visitor.h 40 * Base class of hierarchical visitors of IR instruction trees
163 void (*callback)(class ir_instruction *ir, void *data);
178 void visit_tree(ir_instruction *ir,
179 void (*callback)(class ir_instruction *ir, void *data),
glsl_parser_extras.cpp 1013 * \param ir List of instructions to be optimized
1028 do_common_optimization(exec_list *ir, bool linked,
1034 progress = lower_instructions(ir, SUB_TO_ADD_NEG) || progress;
1037 progress = do_function_inlining(ir) || progress;
1038 progress = do_dead_functions(ir) || progress;
1039 progress = do_structure_splitting(ir) || progress;
1041 progress = do_if_simplification(ir) || progress;
1042 progress = do_copy_propagation(ir) || progress;
1043 progress = do_copy_propagation_elements(ir) || progress;
1045 progress = do_dead_code(ir, uniform_locations_assigned) || progress
    [all...]
main.cpp 31 * offline compile GLSL code and examine the resulting GLSL IR.
164 shader->ir = new(shader) exec_list;
166 _mesa_ast_to_hir(shader->ir, state);
168 /* Print out the unoptimized IR. */
170 validate_ir_tree(shader->ir);
171 _mesa_print_ir(shader->ir, state);
175 if (!state->error && !shader->ir->is_empty()) {
178 progress = do_common_optimization(shader->ir, false, false, 32);
181 validate_ir_tree(shader->ir);
185 /* Print out the resulting IR */
    [all...]
loop_analysis.h 29 #include "ir.h"
225 ir_if *ir; member in class:loop_terminator
238 loop_variable_state *insert(ir_loop *ir);
opt_dead_code.cpp 30 #include "ir.h"
135 ir_instruction *ir = (ir_instruction *)iter.get(); local
136 ir_function *f = ir->as_function();
  /external/mesa3d/src/glsl/
ir_hierarchical_visitor.h 40 * Base class of hierarchical visitors of IR instruction trees
163 void (*callback)(class ir_instruction *ir, void *data);
178 void visit_tree(ir_instruction *ir,
179 void (*callback)(class ir_instruction *ir, void *data),
glsl_parser_extras.cpp 1013 * \param ir List of instructions to be optimized
1028 do_common_optimization(exec_list *ir, bool linked,
1034 progress = lower_instructions(ir, SUB_TO_ADD_NEG) || progress;
1037 progress = do_function_inlining(ir) || progress;
1038 progress = do_dead_functions(ir) || progress;
1039 progress = do_structure_splitting(ir) || progress;
1041 progress = do_if_simplification(ir) || progress;
1042 progress = do_copy_propagation(ir) || progress;
1043 progress = do_copy_propagation_elements(ir) || progress;
1045 progress = do_dead_code(ir, uniform_locations_assigned) || progress
    [all...]
main.cpp 31 * offline compile GLSL code and examine the resulting GLSL IR.
164 shader->ir = new(shader) exec_list;
166 _mesa_ast_to_hir(shader->ir, state);
168 /* Print out the unoptimized IR. */
170 validate_ir_tree(shader->ir);
171 _mesa_print_ir(shader->ir, state);
175 if (!state->error && !shader->ir->is_empty()) {
178 progress = do_common_optimization(shader->ir, false, false, 32);
181 validate_ir_tree(shader->ir);
185 /* Print out the resulting IR */
    [all...]
loop_analysis.h 29 #include "ir.h"
225 ir_if *ir; member in class:loop_terminator
238 loop_variable_state *insert(ir_loop *ir);
opt_dead_code.cpp 30 #include "ir.h"
135 ir_instruction *ir = (ir_instruction *)iter.get(); local
136 ir_function *f = ir->as_function();
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-var.cpp 58 int &ir = i; local
70 volatile int &ir = ivc; // expected-error{{binding of reference to type 'volatile int' to a value of type 'const volatile int' drops qualifiers}} local
82 int &ir = 17; // expected-error{{non-const lvalue reference to type 'int' cannot bind to a temporary of type 'int'}} local
95 int &ir = ConvertibleToIntRef(); local
124 const int &ir = create<int>(); local
  /external/clang/test/SemaTemplate/
temp_func_order.cpp 9 int &ir = f0(i); local
20 int &ir = f1(i, f); local
38 int &ir = f2(i); local
50 int &ir = f3(ip, i); local
83 int &ir = f6(i, i); local
metafun-apply.cpp 31 apply1<add_reference, int>::type ir = i; variable
  /external/chromium_org/third_party/skia/src/core/
SkScan_Path.cpp 510 void sk_blit_above(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
517 tmp.fBottom = ir.fTop;
523 void sk_blit_below(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
529 tmp.fTop = ir.fBottom;
540 * skipRejectTest, so we don't abort drawing just because the src bounds (ir)
544 const SkIRect& ir, bool skipRejectTest) {
550 if (!skipRejectTest && !SkIRect::Intersects(*fClipRect, ir)) { // completely clipped out
555 if (fClipRect->contains(ir)) {
559 if (fClipRect->fLeft > ir.fLeft || fClipRect->fRight < ir.fRight)
604 SkIRect ir; local
707 SkIRect ir; local
    [all...]
  /external/skia/src/core/
SkScan_Path.cpp 510 void sk_blit_above(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
517 tmp.fBottom = ir.fTop;
523 void sk_blit_below(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
529 tmp.fTop = ir.fBottom;
540 * skipRejectTest, so we don't abort drawing just because the src bounds (ir)
544 const SkIRect& ir, bool skipRejectTest) {
550 if (!skipRejectTest && !SkIRect::Intersects(*fClipRect, ir)) { // completely clipped out
555 if (fClipRect->contains(ir)) {
559 if (fClipRect->fLeft > ir.fLeft || fClipRect->fRight < ir.fRight)
604 SkIRect ir; local
707 SkIRect ir; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_breaks_6.opt_test 9 ../../glsl_test optpass --quiet --input-ir 'do_lower_jumps(0, 0, 0, 1, 1)' <<EOF
lower_pulled_out_jump.opt_test 11 ../../glsl_test optpass --quiet --input-ir 'do_lower_jumps(1, 0, 1, 0, 0)' <<EOF
  /external/icu4c/data/mappings/
ucmlocal.mk 16 noop-iso-ir-165.ucm
  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_6.opt_test 9 ../../glsl_test optpass --quiet --input-ir 'do_lower_jumps(0, 0, 0, 1, 1)' <<EOF
lower_pulled_out_jump.opt_test 11 ../../glsl_test optpass --quiet --input-ir 'do_lower_jumps(1, 0, 1, 0, 0)' <<EOF
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/adjacent.difference/
adjacent_difference.pass.cpp 32 int ir[] = {15, -5, -4, -3, -2}; local
38 assert(ib[i] == ir[i]);
adjacent_difference_op.pass.cpp 33 int ir[] = {15, 25, 16, 9, 4}; local
40 assert(ib[i] == ir[i]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numeric.ops/partial.sum/
partial_sum.pass.cpp 30 int ir[] = {1, 3, 6, 10, 15}; local
36 assert(ib[i] == ir[i]);
partial_sum_op.pass.cpp 32 int ir[] = {1, -1, -4, -8, -13}; local
38 assert(ib[i] == ir[i]);
  /external/chromium_org/third_party/skia/src/effects/
Sk2DPathEffect.cpp 26 SkIRect ir; local
29 tmp.getBounds().round(&ir);
30 if (!ir.isEmpty()) {
31 this->begin(ir, dst);
34 rgn.setPath(tmp, SkRegion(ir));

Completed in 620 milliseconds

1 2 3 4 5 6 78 91011>>