Searched defs:instructions (Results 1 - 25 of 154) sorted by relevance

1234567

/external/mesa3d/src/glsl/
H A Dlower_noise.cpp64 lower_noise(exec_list *instructions) argument
68 visit_list_elements(&v, instructions);
H A Dir_builder.h79 exec_list *instructions; member in class:ir_builder::ir_factory
H A Dir_hierarchical_visitor.cpp289 ir_hierarchical_visitor::run(exec_list *instructions) argument
291 visit_list_elements(this, instructions);
H A Dopt_noop_swizzle.cpp78 do_noop_swizzle(exec_list *instructions) argument
81 visit_list_elements(&v, instructions);
H A Dopt_swizzle_swizzle.cpp90 do_swizzle_swizzle(exec_list *instructions) argument
94 v.run(instructions);
H A Dhir_field_selection.cpp32 exec_list *instructions,
39 op = expr->subexpressions[0]->hir(instructions, state);
31 _mesa_ast_field_selection_to_hir(const ast_expression *expr, exec_list *instructions, struct _mesa_glsl_parse_state *state) argument
H A Dir_basic_block.cpp52 void call_for_basic_blocks(exec_list *instructions, argument
61 foreach_iter(exec_list_iterator, iter, *instructions) {
89 * maximal BBs between the instructions that precede main()
90 * and the body of main(). Perhaps those instructions ought
H A Dir_expression_flattening.cpp57 do_expression_flattening(exec_list *instructions, argument
62 foreach_iter(exec_list_iterator, iter, *instructions) {
H A Dlower_texture_projection.cpp92 do_lower_texture_projection(exec_list *instructions) argument
96 visit_list_elements(&v, instructions);
H A Dlower_vec_index_to_swizzle.cpp168 do_vec_index_to_swizzle(exec_list *instructions) argument
172 v.run(instructions);
H A Dopt_dead_code.cpp38 * Do a dead code pass over instructions and everything that instructions
45 do_dead_code(exec_list *instructions, bool uniform_locations_assigned) argument
50 v.run(instructions);
130 do_dead_code_unlinked(exec_list *instructions) argument
134 foreach_iter(exec_list_iterator, iter, *instructions) {
H A Dopt_if_simplification.cpp50 /* We only care about the top level "if" instructions, so don't
61 do_if_simplification(exec_list *instructions) argument
65 v.run(instructions);
H A Dopt_redundant_jumps.cpp49 /* We only care about the top level instructions, so don't descend
118 optimize_redundant_jumps(exec_list *instructions) argument
122 v.run(instructions);
/external/vixl/benchmarks/
H A Dbench-branch-link.cc28 #include "vixl/a64/instructions-a64.h"
38 int instructions = 0; local
41 case 1: instructions = kDefaultInstructionCount; break;
42 case 2: instructions = atoi(argv[1]); break;
44 printf("Usage: %s [#instructions]\n", argv[0]);
48 MacroAssembler masm(instructions * kInstructionSize);
49 InstructionAccurateScope scope(&masm, instructions);
54 for (int i = 0; i < instructions; i++) {
H A Dbench-dataop.cc28 #include "vixl/a64/instructions-a64.h"
35 // This program focuses on emitting simple instructions.
41 unsigned instructions = 0; local
44 case 1: instructions = kDefaultInstructionCount; break;
45 case 2: instructions = atoi(argv[1]); break;
47 printf("Usage: %s [#instructions]\n", argv[0]);
57 unsigned rounds = instructions / buffer_instruction_count;
68 unsigned remaining = instructions % buffer_instruction_count;
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeInput.java17 package com.android.dx.io.instructions;
H A DAddressMap.java17 package com.android.dx.io.instructions;
H A DBaseCodeCursor.java17 package com.android.dx.io.instructions;
H A DCodeCursor.java17 package com.android.dx.io.instructions;
35 * addresses to switch data payload instructions, whose relative
H A DPackedSwitchPayloadDecodedInstruction.java17 package com.android.dx.io.instructions;
H A DShortArrayCodeInput.java17 package com.android.dx.io.instructions;
H A DSparseSwitchPayloadDecodedInstruction.java17 package com.android.dx.io.instructions;
H A DZeroRegisterDecodedInstruction.java17 package com.android.dx.io.instructions;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLabel.java28 * A branch target in a list of instructions.
32 final List<Insn> instructions = new ArrayList<Insn>(); field in class:Label
52 return instructions.isEmpty();
70 InsnList result = new InsnList(instructions.size());
71 for (int i = 0; i < instructions.size(); i++) {
72 result.set(i, instructions.get(i));
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DMethodCoverageImpl.java45 public void increment(final ICounter instructions, final ICounter branches, argument
47 super.increment(instructions, branches, line);
57 * This method must be called exactly once after all instructions and

Completed in 1072 milliseconds

1234567