HomeSort by relevance Sort by last modified time
    Searched refs:instructions (Results 251 - 275 of 1941) sorted by null

<<11121314151617181920>>

  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
PrivateEmptyNoArgConstructorFilter.java 30 output.ignore(methodNode.instructions.getFirst(),
31 methodNode.instructions.getLast());
38 cursor = methodNode.instructions.getFirst();
  /external/mesa3d/src/compiler/glsl/
opt_dead_functions.cpp 114 do_dead_functions(exec_list *instructions)
119 visit_list_elements(&v, instructions);
137 foreach_in_list_safe(ir_instruction, ir, instructions) {
ast.h 62 virtual ir_rvalue *hir(exec_list *instructions,
233 virtual ir_rvalue *hir(exec_list *instructions,
236 virtual void hir_no_rvalue(exec_list *instructions,
241 ir_rvalue *do_hir(exec_list *instructions,
318 virtual ir_rvalue *hir(exec_list *instructions,
321 virtual void hir_no_rvalue(exec_list *instructions,
332 handle_method(exec_list *instructions,
420 virtual ir_rvalue *hir(exec_list *instructions,
423 virtual void hir_no_rvalue(exec_list *instructions,
433 virtual ir_rvalue *hir(exec_list *instructions,
    [all...]
  /external/valgrind/none/tests/ppc32/
test_isa_2_07_part2.stdout.exp 1 Test VSX floating point instructions
    [all...]
test_isa_2_06_part3.stdout.exp 1 Test VSX vector and scalar single argument instructions
421 Test VSX vector integer to float conversion instructions
    [all...]
  /external/valgrind/none/tests/ppc64/
test_isa_2_07_part2.stdout.exp 1 Test VSX floating point instructions
    [all...]
test_isa_2_06_part3.stdout.exp 1 Test VSX vector and scalar single argument instructions
421 Test VSX vector integer to float conversion instructions
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips32r2.s 1 # source file to test assembly of mips32r2 *non-fp* instructions
9 # unprivileged CPU instructions
52 # cp0 instructions
micromips-branch-delay.l 9 .*:90: Warning: macro instruction expanded into multiple instructions in a branch delay slot
15 .*:100: Warning: macro instruction expanded into multiple instructions in a branch delay slot
16 .*:110: Warning: macro instruction expanded into multiple instructions in a branch delay slot
17 .*:121: Warning: macro instruction expanded into multiple instructions in a branch delay slot
23 .*:131: Warning: macro instruction expanded into multiple instructions in a branch delay slot
24 .*:141: Warning: macro instruction expanded into multiple instructions in a branch delay slot
mips32.s 1 # source file to test assembly of mips32 instructions
9 # unprivileged CPU instructions
28 # privileged instructions
59 # Instructions in previous ISAs or CPUs which are now slightly
  /external/google-breakpad/src/client/windows/unittests/
exception_handler_death_test.cc 329 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[] = { 0xff, 0xff, 0xff, 0xff } local
510 const unsigned char instructions[] = { 0xff, 0xff, 0xff, 0xff }; local
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 106 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
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(); local
131 instructions.add(new Instruction21c() {
151 instructions.add(new ImmutableInstruction10x(Opcode.RETURN_VOID))
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
SourceNodeImpl.java 103 * 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,
117 incrementLine(instructions, branches, line);
119 instructionCounter = instructionCounter.increment(instructions);
123 private void incrementLine(final ICounter instructions,
129 lines[line - offset] = l.increment(instructions, branches);
132 if (instructions.getTotalCount() > 0)
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/smali/
SwitchRewritingTest.java 92 assertEquals(5, code.instructions.length);
93 assertTrue(code.instructions[0] instanceof IfEqz);
95 assertEquals(6, code.instructions.length);
96 assertTrue(some16BitConst(code.instructions[0]));
97 assertTrue(code.instructions[1] instanceof IfEq);
152 assertTrue(code.instructions[0] instanceof PackedSwitch);
154 assertTrue(code.instructions[0] instanceof SparseSwitch);
224 assertTrue(code.instructions[0] instanceof PackedSwitch);
226 assertTrue(code.instructions[0] instanceof SparseSwitch);
293 assertEquals(5, code.instructions.length)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cfg.h 89 struct exec_list instructions; member in struct:bblock_t
100 return (struct backend_instruction *)exec_list_get_head(&block->instructions);
106 return (const struct backend_instruction *)exec_list_get_head_const(&block->instructions);
112 return (struct backend_instruction *)exec_list_get_tail(&block->instructions);
118 return (const struct backend_instruction *)exec_list_get_tail_const(&block->instructions);
279 cfg_t(exec_list *instructions);
333 foreach_in_list(__type, __inst, &(__block)->instructions)
336 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \
343 foreach_in_list_reverse(__type, __inst, &(__block)->instructions)
346 foreach_in_list_reverse_safe(__type, __inst, &(__block)->instructions)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorFSM.java 222 public int test(List<? extends Instruction> instructions) {
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.get(p)).getRegisterA()
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
spvIR.h 169 Id getId() { return instructions.front()->getResultId(); }
178 return instructions;
184 if (instructions.size() < 2) return nullptr;
185 const Instruction* nextToLast = (instructions.cend() - 2)->get();
198 switch (instructions.back()->getOpCode()) {
213 instructions[0]->dump(out);
216 for (int i = 1; i < (int)instructions.size(); ++i)
217 instructions[i]->dump(out);
227 std::vector<std::unique_ptr<Instruction> > instructions; member in class:spv::Block
355 // - all the OpFunctionParameter instructions
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
spvIR.h 169 Id getId() { return instructions.front()->getResultId(); }
178 return instructions;
184 if (instructions.size() < 2) return nullptr;
185 const Instruction* nextToLast = (instructions.cend() - 2)->get();
198 switch (instructions.back()->getOpCode()) {
213 instructions[0]->dump(out);
216 for (int i = 1; i < (int)instructions.size(); ++i)
217 instructions[i]->dump(out);
227 std::vector<std::unique_ptr<Instruction> > instructions; member in class:spv::Block
355 // - all the OpFunctionParameter instructions
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/graph/
DexCode.java 36 public final Instruction[] instructions; field in class:DexCode
45 Instruction[] instructions,
53 this.instructions = instructions;
91 Instruction last = instructions[instructions.length - 1];
100 + Arrays.hashCode(instructions) * 7
135 return Arrays.equals(instructions, o.instructions);
141 return instructions.length == 1 && instructions[0] instanceof ReturnVoid
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
FixOffsetsTest.java 101 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); local
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());
  /art/compiler/utils/
assembler.cc 63 void AssemblerBuffer::FinalizeInstructions(const MemoryRegion& instructions) {
64 // Copy the instructions from the buffer.
66 instructions.CopyFrom(0, from);
67 // Process fixups in the instructions.
68 ProcessFixups(instructions);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
TestAdapter.java 42 protected Test(int instructions) {
44 this.mInstructions = instructions;
93 ((TextView) vg.findViewById(R.id.instructions)).setText(test.mInstructions);
  /external/autotest/client/profilers/cpistat/
cpistat 78 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/r8/src/main/java/com/android/tools/r8/ir/code/
InstructionListIterator.java 48 * @returns the instruction that matched the predicate or {@code null} if all instructions fails
79 * an out-value, and all uses of the current instructions out-value will be replaced by the
80 * new instructions out-value.
88 * block will have all the instructions before the cursor, and the new block all the
89 * instructions after the cursor.
98 * @return Returns the new block with the instructions after the cursor.
109 * cursor and the second split is <code>instructions</code> after the cursor. The existing
110 * block will have all the instructions before the cursor, and the two new blocks all the
111 * instructions after the cursor.
116 * @param instructions the number of instructions to include in the second block
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
OneRegisterDecodedInstruction.java 17 package com.android.dx.io.instructions;

Completed in 1323 milliseconds

<<11121314151617181920>>