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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_optimization.h 44 bool do_algebraic(exec_list *instructions);
45 bool do_constant_folding(exec_list *instructions);
46 bool do_constant_variable(exec_list *instructions);
47 bool do_constant_variable_unlinked(exec_list *instructions);
48 bool do_copy_propagation(exec_list *instructions);
49 bool do_copy_propagation_elements(exec_list *instructions);
50 bool do_constant_propagation(exec_list *instructions);
51 bool do_dead_code(exec_list *instructions, bool uniform_locations_assigned);
52 bool do_dead_code_local(exec_list *instructions);
53 bool do_dead_code_unlinked(exec_list *instructions);
    [all...]
ir_expression_flattening.h 37 void do_expression_flattening(exec_list *instructions,
ir_basic_block.h 24 void call_for_basic_blocks(exec_list *instructions,
ir_reader.h 31 void _mesa_glsl_read_ir(_mesa_glsl_parse_state *state, exec_list *instructions,
builtin_variables.cpp 387 add_variable(exec_list *instructions, glsl_symbol_table *symtab,
416 instructions->push_tail(var);
423 add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
427 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
471 add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
482 add_uniform(instructions, symtab, proto->name, type);
484 add_variable(instructions, symtab, proto->name, type, proto->mode,
490 add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
493 ir_variable *const var = add_variable(instructions, symtab,
506 generate_100ES_uniforms(exec_list *instructions,
    [all...]
lower_noise.cpp 64 lower_noise(exec_list *instructions)
68 visit_list_elements(&v, instructions);
  /external/mesa3d/src/glsl/
ir_optimization.h 44 bool do_algebraic(exec_list *instructions);
45 bool do_constant_folding(exec_list *instructions);
46 bool do_constant_variable(exec_list *instructions);
47 bool do_constant_variable_unlinked(exec_list *instructions);
48 bool do_copy_propagation(exec_list *instructions);
49 bool do_copy_propagation_elements(exec_list *instructions);
50 bool do_constant_propagation(exec_list *instructions);
51 bool do_dead_code(exec_list *instructions, bool uniform_locations_assigned);
52 bool do_dead_code_local(exec_list *instructions);
53 bool do_dead_code_unlinked(exec_list *instructions);
    [all...]
ir_expression_flattening.h 37 void do_expression_flattening(exec_list *instructions,
ir_basic_block.h 24 void call_for_basic_blocks(exec_list *instructions,
ir_reader.h 31 void _mesa_glsl_read_ir(_mesa_glsl_parse_state *state, exec_list *instructions,
builtin_variables.cpp 387 add_variable(exec_list *instructions, glsl_symbol_table *symtab,
416 instructions->push_tail(var);
423 add_uniform(exec_list *instructions, glsl_symbol_table *symtab,
427 add_variable(instructions, symtab, name, type, ir_var_uniform, -1);
471 add_builtin_variable(exec_list *instructions, glsl_symbol_table *symtab,
482 add_uniform(instructions, symtab, proto->name, type);
484 add_variable(instructions, symtab, proto->name, type, proto->mode,
490 add_builtin_constant(exec_list *instructions, glsl_symbol_table *symtab,
493 ir_variable *const var = add_variable(instructions, symtab,
506 generate_100ES_uniforms(exec_list *instructions,
    [all...]
lower_noise.cpp 64 lower_noise(exec_list *instructions)
68 visit_list_elements(&v, instructions);
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeCursor.java 17 package com.android.dx.io.instructions;
35 * addresses to switch data payload instructions, whose relative
CodeInput.java 17 package com.android.dx.io.instructions;
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeCursor.java 17 package com.android.dx.io.instructions;
35 * addresses to switch data payload instructions, whose relative
CodeInput.java 17 package com.android.dx.io.instructions;
  /external/lldb/examples/python/
gdb_disassemble.py 5 instructions = lldb.frame.function.instructions
9 instructions = lldb.frame.symbol.instructions
13 for inst in instructions:
  /external/vixl/benchmarks/
bench-branch.cc 28 #include "a64/instructions-a64.h"
35 // This program focuses on emitting branch instructions.
38 // instructions in a fixed size buffer, looping over the buffer if necessary.
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]);
61 unsigned rounds = instructions / buffer_instruction_count;
71 unsigned remaining = instructions % buffer_instruction_count;
bench-dataop.cc 28 #include "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]);
60 unsigned rounds = instructions / buffer_instruction_count;
68 unsigned remaining = instructions % buffer_instruction_count;
  /external/chromium_org/third_party/opus/src/celt/arm/
armopts.s.in 27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
  /external/libopus/celt/arm/
armopts.s.in 27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
FixGotoTest.java 33 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
34 Assert.assertEquals(502, instructions.size());
36 Assert.assertEquals(Opcode.GOTO_16, instructions.get(0).getOpcode());
37 Assert.assertEquals(502, ((OffsetInstruction)instructions.get(0)).getCodeOffset());
56 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
57 Assert.assertEquals(70002, instructions.size());
59 Assert.assertEquals(Opcode.GOTO_32, instructions.get(0).getOpcode());
60 Assert.assertEquals(70003, ((OffsetInstruction)instructions.get(0)).getCodeOffset());
79 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
80 Assert.assertEquals(70002, instructions.size())
115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
    [all...]
PayloadAlignmentTest.java 56 List<? extends Instruction> instructions = local
59 Assert.assertEquals(instructions.size(), 1);
61 Instruction instruction = instructions.get(0);
73 List<? extends Instruction> instructions = local
76 Assert.assertEquals(instructions.size(), 3);
78 Instruction instruction = instructions.get(0);
81 instruction = instructions.get(1);
84 instruction = instructions.get(2);
101 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
103 checkInstructions(instructions,
127 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
176 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
227 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); local
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Registration.java 53 private String instructions = null; field in class:Registration
60 * Returns the registration instructions, or <tt>null</tt> if no instructions
61 * have been set. If present, instructions should be displayed to the end-user
64 * @return the registration instructions, or <tt>null</tt> if there are none.
67 return instructions;
71 * Sets the registration instructions.
73 * @param instructions the registration instructions.
75 public void setInstructions(String instructions) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Code.java 24 private final short[] instructions; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
34 this.instructions = instructions;
56 return instructions;

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 91011>>