HomeSort by relevance Sort by last modified time
    Searched refs:instructions (Results 26 - 50 of 535) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_dead_code.cpp 38 * Do a dead code pass over instructions and everything that instructions
45 do_dead_code(exec_list *instructions, bool uniform_locations_assigned)
50 v.run(instructions);
130 do_dead_code_unlinked(exec_list *instructions)
134 foreach_iter(exec_list_iterator, iter, *instructions) {
ir_expression_flattening.cpp 57 do_expression_flattening(exec_list *instructions,
62 foreach_iter(exec_list_iterator, iter, *instructions) {
opt_noop_swizzle.cpp 78 do_noop_swizzle(exec_list *instructions)
81 visit_list_elements(&v, instructions);
lower_discard.cpp 125 lower_discard(exec_list *instructions)
129 visit_list_elements(&v, instructions);
136 find_discard(exec_list &instructions)
138 foreach_list(n, &instructions) {
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.h 39 _mesa_find_temp_intervals(const struct prog_instruction *instructions,
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 17 package com.android.dx.io.instructions;
AddressMap.java 17 package com.android.dx.io.instructions;
BaseCodeCursor.java 17 package com.android.dx.io.instructions;
CodeOutput.java 17 package com.android.dx.io.instructions;
SparseSwitchPayloadDecodedInstruction.java 17 package com.android.dx.io.instructions;
ZeroRegisterDecodedInstruction.java 17 package com.android.dx.io.instructions;
  /external/mesa3d/src/glsl/
opt_dead_code.cpp 38 * Do a dead code pass over instructions and everything that instructions
45 do_dead_code(exec_list *instructions, bool uniform_locations_assigned)
50 v.run(instructions);
130 do_dead_code_unlinked(exec_list *instructions)
134 foreach_iter(exec_list_iterator, iter, *instructions) {
ir_expression_flattening.cpp 57 do_expression_flattening(exec_list *instructions,
62 foreach_iter(exec_list_iterator, iter, *instructions) {
opt_noop_swizzle.cpp 78 do_noop_swizzle(exec_list *instructions)
81 visit_list_elements(&v, instructions);
  /external/mesa3d/src/mesa/program/
prog_optimize.h 39 _mesa_find_temp_intervals(const struct prog_instruction *instructions,
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 498 if ($statements.instructions.size() == 0) {
533 throw new SemanticException(input, $I_METHOD, "An abstract method cannot have any instructions");
536 throw new SemanticException(input, $I_METHOD, "A native method cannot have any instructions");
561 $statements.instructions,
810 statements[int totalMethodRegisters, int methodParameterRegisters] returns[List<Instruction> instructions, int maxOutRegisters]
813 $instructions = new LinkedList<Instruction>();
816 : ^(I_STATEMENTS (instruction[$totalMethodRegisters, $methodParameterRegisters, $instructions]
818 $method::currentAddress += $instructions.get($instructions.size() - 1).getSize($method::currentAddress);
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 81 Instruction[] instructions = encodedMethod.codeItem.getInstructions(); local
84 switch (instructions[0].opcode.format) {
87 //a synthetic method access should be either 2 or 3 instructions, depending on if the method returns
89 if (instructions.length < 2 || instructions.length > 3) {
92 InstructionWithReference instruction = (InstructionWithReference)instructions[0];
104 //a synthetic field access should be exactly 2 instructions. The set/put, and then the return
105 if (instructions.length != 2) {
108 Instruction22c instruction = (Instruction22c)instructions[0];
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 28 * 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/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 42 private List<String> instructions = new ArrayList<String>(); field in class:DataForm
82 * Returns an Iterator for the list of instructions that explain how to fill out the form and
83 * what the form is about. The dataform could include multiple instructions since each
84 * instruction could not contain newlines characters. Join the instructions together in order
87 * @return an Iterator for the list of instructions that explain how to fill out the form.
90 synchronized (instructions) {
91 return Collections.unmodifiableList(new ArrayList<String>(instructions)).iterator();
145 * Sets the list of instructions that explain how to fill out the form and what the form is
146 * about. The dataform could include multiple instructions since each instruction could not
149 * @param instructions list of instructions that explain how to fill out the form
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
AddressMap.java 17 package com.android.dx.io.instructions;
BaseCodeCursor.java 17 package com.android.dx.io.instructions;
CodeOutput.java 17 package com.android.dx.io.instructions;
SparseSwitchPayloadDecodedInstruction.java 17 package com.android.dx.io.instructions;
ZeroRegisterDecodedInstruction.java 17 package com.android.dx.io.instructions;
  /external/chromium_org/sandbox/linux/seccomp-bpf/
basicblock.h 40 // Basic blocks are essentially nothing more than a set of instructions.
41 std::vector<Instruction *> instructions; member in struct:playground2::BasicBlock
45 // is measured in number of BPF instructions.

Completed in 132 milliseconds

12 3 4 5 6 7 8 91011>>