Searched refs:instructions (Results 26 - 50 of 428) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/program/
H A Dprog_optimize.h39 _mesa_find_temp_intervals(const struct prog_instruction *instructions,
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DInstructionOffsetMap.java44 public InstructionOffsetMap(@Nonnull List<? extends Instruction> instructions) { argument
45 this.instructionCodeOffsets = new int[instructions.size()];
48 for (int i=0; i<instructions.size(); i++) {
50 codeOffset += instructions.get(i).getCodeUnits();
H A DSyntheticAccessorFSM.java222 public int test(List<? extends Instruction> instructions) { argument
225 int pe = instructions.size();
281 if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys[_mid] )
283 else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans_keys[_mid] )
304 if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) < _SyntheticAccessorFSM_trans_keys[_mid] )
306 else if ( ( opcodes.getOpcodeValue(instructions.get(p).getOpcode())) > _SyntheticAccessorFSM_trans_keys[_mid+1] )
330 putRegister = ((OneRegisterInstruction)instructions.get(p)).getRegisterA();
336 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
344 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
448 returnRegister = ((OneRegisterInstruction)instructions
[all...]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DLabel.java28 * A branch target in a list of instructions.
32 final List<Insn> instructions = new ArrayList<>(); 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/droiddriver/
H A Dcontributing_aosp.md5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
/external/llvm/test/MC/AArch64/
H A Darm64-separator.s6 ; To make sure the output assembly correctly handled the instructions,
7 ; tell it to show encodings. That will result in the two 'mov' instructions
/external/llvm/test/MC/Mips/
H A Dmacro-bcc-imm-bad.s11 blt $a2, 16, foo # ALL: :[[@LINE]]:5: warning: macro instruction expanded into multiple instructions
12 # ALL-NOT: :[[@LINE-1]]:5: warning: macro instruction expanded into multiple instructions
/external/mesa3d/src/glsl/
H A Dir_expression_flattening.cpp57 do_expression_flattening(exec_list *instructions, argument
62 foreach_iter(exec_list_iterator, iter, *instructions) {
H A Dopt_noop_swizzle.cpp78 do_noop_swizzle(exec_list *instructions) argument
81 visit_list_elements(&v, instructions);
H A Dlower_discard.cpp125 lower_discard(exec_list *instructions) argument
129 visit_list_elements(&v, instructions);
136 find_discard(exec_list &instructions) argument
138 foreach_list(n, &instructions) {
H A Dast.h79 virtual ir_rvalue *hir(exec_list *instructions,
215 virtual ir_rvalue *hir(exec_list *instructions,
285 virtual ir_rvalue *hir(exec_list *instructions,
311 virtual ir_rvalue *hir(exec_list *instructions,
460 virtual ir_rvalue *hir(exec_list *instructions,
525 virtual ir_rvalue *hir(exec_list *instructions,
559 virtual ir_rvalue *hir(exec_list *instructions,
590 virtual ir_rvalue *hir(exec_list *instructions,
628 virtual ir_rvalue *hir(exec_list *instructions,
640 virtual ir_rvalue *hir(exec_list *instructions,
[all...]
/external/toolchain-utils/crosperf/experiment_files/
H A Dtelemetry-crosperf-with-profiler.exp24 perf_args: record -e cycles,instructions
/external/valgrind/none/tests/ppc32/
H A Djm-misc.stdout.exp8 All done. Tested 3 different instructions
H A Dtest_isa_2_07_part2.stdout.exp1 Test VSX floating point instructions
653 Test VSX vector and scalar single argument instructions
780 Test VSX logic instructions
785 Test VSX scalar integer conversion instructions
797 Test VSX load/store dp to sp instructions
844 Test VSX vector and scalar two argument instructions
H A Dtest_isa_2_06_part3.stdout.exp1 Test VSX vector and scalar single argument instructions
421 Test VSX vector integer to float conversion instructions
511 Test vector and scalar tdiv and tsqrt instructions
/external/valgrind/none/tests/ppc64/
H A Djm-misc.stdout.exp8 All done. Tested 3 different instructions
H A Dtest_isa_2_07_part2.stdout.exp1 Test VSX floating point instructions
653 Test VSX vector and scalar single argument instructions
780 Test VSX logic instructions
785 Test VSX scalar integer conversion instructions
797 Test VSX load/store dp to sp instructions
844 Test VSX vector and scalar two argument instructions
H A Dtest_isa_2_06_part3.stdout.exp1 Test VSX vector and scalar single argument instructions
421 Test VSX vector integer to float conversion instructions
569 Test vector and scalar tdiv and tsqrt instructions
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/
H A DSmalideaMethodTest.java115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
118 Instruction10t instruction = (Instruction10t)instructions.get(0);
124 Instruction10x instruction = (Instruction10x)instructions.get(1);
129 Instruction11n instruction = (Instruction11n)instructions.get(2);
136 Instruction11x instruction = (Instruction11x)instructions.get(3);
142 Instruction12x instruction = (Instruction12x)instructions.get(4);
149 Instruction20t instruction = (Instruction20t)instructions.get(5);
155 Instruction21c instruction = (Instruction21c)instructions.get(6);
163 Instruction21ih instruction = (Instruction21ih)instructions.get(7);
172 Instruction21lh instruction = (Instruction21lh)instructions
[all...]
/external/google-breakpad/src/client/windows/unittests/
H A Dexception_handler_death_test.cc329 const unsigned char instructions[] = { 0xff, 0xff, 0xff, 0xff }; local
336 // Write some instructions that will crash. Put them
340 memcpy(memory + kOffset, instructions, sizeof(instructions));
342 // Now execute the instructions, which should crash.
387 uint8_t suffix_bytes[kMemorySize - kOffset - sizeof(instructions)];
391 EXPECT_EQ(0, memcmp(bytes + kOffset, instructions, sizeof(instructions)));
392 EXPECT_EQ(0, memcmp(bytes + kOffset + sizeof(instructions),
419 const unsigned char instructions[] local
510 const unsigned char instructions[] = { 0xff, 0xff, 0xff, 0xff }; local
[all...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DJumboStringConversionTest.java106 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
107 Assert.assertEquals(66001, instructions.size());
110 Assert.assertEquals(Opcode.CONST_STRING, instructions.get(i).getOpcode());
112 ((StringReference)((ReferenceInstruction)instructions.get(i)).getReference()).getString());
115 Assert.assertEquals(Opcode.CONST_STRING_JUMBO, instructions.get(i).getOpcode());
117 ((StringReference)((ReferenceInstruction)instructions.get(i)).getReference()).getString());
119 Assert.assertEquals(Opcode.RETURN_VOID, instructions.get(66000).getOpcode());
127 final List<Instruction> instructions = Lists.newArrayList();
131 instructions.add(new Instruction21c() {
151 instructions
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DSourceNodeImpl.java103 * Increments instructions and branches by the given counter values. If a
104 * optional line number is specified the instructions and branches are added
107 * @param instructions
108 * instructions to add
114 public void increment(final ICounter instructions, final ICounter branches, argument
117 incrementLine(instructions, branches, line);
119 instructionCounter = instructionCounter.increment(instructions);
123 private void incrementLine(final ICounter instructions, argument
129 lines[line - offset] = l.increment(instructions, branches);
132 if (instructions
[all...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
H A DFixOffsetsTest.java101 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
102 Assert.assertEquals(1003, instructions.size());
104 Assert.assertEquals(Opcode.GOTO_16, instructions.get(0).getOpcode());
105 Assert.assertEquals(1004, ((OffsetInstruction)instructions.get(0)).getCodeOffset());
107 Assert.assertEquals(Opcode.GOTO_16, instructions.get(501).getOpcode());
108 Assert.assertEquals(502, ((OffsetInstruction)instructions.get(501)).getCodeOffset());
/external/autotest/client/profilers/cpistat/
H A Dcpistat78 instructions = sum['PERF_COUNT_HW_INSTRUCTIONS'] variable
79 CPI = cycles * 1.0/instructions
80 print ('cycles: %12lu, instructions: %12lu, CPI: %2.4f'
81 % (cycles, instructions, CPI))
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.c42 /* The user is responsible for freeing list->instructions */
45 bld_base->instructions = (struct tgsi_full_instruction *)
47 if (!bld_base->instructions) {
61 struct tgsi_full_instruction *instructions; local
62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions
66 if (!instructions) {
69 bld_base->instructions = instructions;
72 memcpy(bld_base->instructions
[all...]

Completed in 617 milliseconds

1234567891011>>