/external/oprofile/events/mips/24K/ |
events | 15 event:0x1 counters:0,1 um:zero minimum:500 name:INSTRUCTIONS : 1-0 Instructions completed 21 event:0x2 counters:0 um:zero minimum:500 name:BRANCH_INSNS : 2-0 Branch instructions (whether completed or mispredicted) 22 event:0x3 counters:0 um:zero minimum:500 name:JR_31_INSNS : 3-0 JR $31 (return) instructions executed 23 event:0x4 counters:0 um:zero minimum:500 name:JR_NON_31_INSNS : 4-0 JR $xx (not $31) instructions executed (at same cost as a mispredict) 32 event:0xe counters:0 um:zero minimum:500 name:INTEGER_INSNS : 14-0 Integer instructions completed 33 event:0xf counters:0 um:zero minimum:500 name:LOAD_INSNS : 15-0 Load instructions completed (including FP) 34 event:0x10 counters:0 um:zero minimum:500 name:J_JAL_INSNS : 16-0 J/JAL instructions completed 35 event:0x11 counters:0 um:zero minimum:500 name:NO_OPS_INSNS : 17-0 no-ops completed, ie instructions writing $0 37 event:0x13 counters:0 um:zero minimum:500 name:SC_INSNS : 19-0 SC instructions complete [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());
|
/external/valgrind/main/none/tests/ppc32/ |
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/main/none/tests/ppc64/ |
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...] |
/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/chromium_org/sandbox/linux/seccomp-bpf/ |
codegen.h | 19 typedef std::vector<Instruction*> Instructions; 26 // graph of BPF instructions into a well-formed stream of BPF instructions. 28 // the limit of 255 instructions imposed by the instruction set. 31 // build a DAG of Instructions. They'll eventually call Compile() to convert 34 // Instructions can be chained at the time when they are created, or they 65 // Create a new instruction. Instructions form a DAG. The instruction objects 78 // Join two (sequences of) instructions. This is useful, if the "next" 83 // Traverse the graph of instructions and visit each instruction once. 91 // Compiles the graph of instructions into a BPF program that can be passe [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.c | 42 /* 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 + bld_base->num_instructions, inst_to_add [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
opt_dead_functions.cpp | 115 do_dead_functions(exec_list *instructions) 120 visit_list_elements(&v, instructions); 140 foreach_iter(exec_list_iterator, iter, *instructions) {
|
ast_function.cpp | 38 process_parameters(exec_list *instructions, exec_list *actual_parameters, 46 ir_rvalue *result = ast->hir(instructions, state); 185 generate_call(exec_list *instructions, ir_function_signature *sig, 244 instructions->push_tail(tmp); 276 * instructions; just generate an ir_constant. 296 instructions->push_tail(var); 301 instructions->push_tail(call); 304 instructions->append_list(&post_call_conversions); 555 process_array_constructor(exec_list *instructions, 583 process_parameters(instructions, &actual_parameters, parameters, state) [all...] |
ast_to_hir.cpp | 62 exec_list *instructions); 65 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) 67 _mesa_glsl_initialize_variables(instructions, state); 73 state->toplevel_ir = instructions; 91 ast->hir(instructions, state); 93 detect_recursion_unlinked(state, instructions); 94 detect_conflicting_assignments(state, instructions); 672 do_assignment(exec_list *instructions, struct _mesa_glsl_parse_state *state, 762 instructions->push_tail(var); 763 instructions->push_tail(new(ctx) ir_assignment(deref_var, rhs)) [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.c | 42 /* 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 + bld_base->num_instructions, inst_to_add [all...] |
/external/mesa3d/src/glsl/ |
opt_dead_functions.cpp | 115 do_dead_functions(exec_list *instructions) 120 visit_list_elements(&v, instructions); 140 foreach_iter(exec_list_iterator, iter, *instructions) {
|
ast_function.cpp | 38 process_parameters(exec_list *instructions, exec_list *actual_parameters, 46 ir_rvalue *result = ast->hir(instructions, state); 185 generate_call(exec_list *instructions, ir_function_signature *sig, 244 instructions->push_tail(tmp); 276 * instructions; just generate an ir_constant. 296 instructions->push_tail(var); 301 instructions->push_tail(call); 304 instructions->append_list(&post_call_conversions); 555 process_array_constructor(exec_list *instructions, 583 process_parameters(instructions, &actual_parameters, parameters, state) [all...] |
/dalvik/dx/src/com/android/dx/io/instructions/ |
OneRegisterDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
RegisterRangeDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
ShortArrayCodeInput.java | 17 package com.android.dx.io.instructions;
|
TwoRegisterDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
OneRegisterDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
RegisterRangeDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
ShortArrayCodeInput.java | 17 package com.android.dx.io.instructions;
|
TwoRegisterDecodedInstruction.java | 17 package com.android.dx.io.instructions;
|
/external/smali/dexlib2/src/main/ragel/ |
SyntheticAccessorFSM.rl | 66 public static int test(List<? extends Instruction> instructions) { 69 int pe = instructions.size(); 88 getkey instructions.get(p).getOpcode().value; 94 putRegister = ((OneRegisterInstruction)instructions.get(p)).getRegisterA(); 99 # all numeric const instructions 101 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral(); 107 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral(); 156 returnRegister = ((OneRegisterInstruction)instructions.get(p)).getRegisterA();
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
million.S | 2 # count for 1 million instructions
|
/external/valgrind/main/exp-bbv/tests/arm-linux/ |
million.S | 2 # count for 1 million instructions
|
/external/valgrind/main/exp-bbv/tests/ppc32-linux/ |
million.S | 2 # count for 1 million instructions
|