HomeSort by relevance Sort by last modified time
    Searched defs:op_count (Results 1 - 22 of 22) sorted by null

  /external/capstone/bindings/java/capstone/
Mips.java 60 public byte op_count; field in class:Mips.UnionOpInfo
68 readField("op_count");
69 op = new Operand[op_count];
70 if (op_count != 0)
76 return Arrays.asList("op_count", "op");
Xcore.java 56 public byte op_count; field in class:Xcore.UnionOpInfo
64 readField("op_count");
65 op = new Operand[op_count];
66 if (op_count != 0)
72 return Arrays.asList("op_count", "op");
Ppc.java 71 public byte op_count; field in class:Ppc.UnionOpInfo
83 readField("op_count");
84 op = new Operand[op_count];
85 if (op_count != 0)
91 return Arrays.asList("bc", "bh", "update_cr0", "op_count", "op");
Sparc.java 57 public byte op_count; field in class:Sparc.UnionOpInfo
68 readField("op_count");
69 op = new Operand[op_count];
70 if (op_count != 0)
76 return Arrays.asList("cc", "hint", "op_count", "op");
Systemz.java 59 public byte op_count; field in class:Systemz.UnionOpInfo
69 readField("op_count");
70 op = new Operand[op_count];
71 if (op_count != 0)
77 return Arrays.asList("cc", "op_count", "op");
Arm64.java 90 public byte op_count; field in class:Arm64.UnionOpInfo
102 readField("op_count");
103 op = new Operand[op_count];
104 if (op_count != 0)
110 return Arrays.asList("cc", "_update_flags", "_writeback", "op_count", "op");
Arm.java 92 public byte op_count; field in class:Arm.UnionOpInfo
110 readField("op_count");
111 op = new Operand[op_count];
112 if (op_count != 0)
119 "cps_mode", "cps_flag", "cc", "update_flags", "writeback", "mem_barrier", "op_count", "op");
X86.java 85 public byte op_count; field in class:X86.UnionOpInfo
98 "modrm", "sib", "disp", "sib_index", "sib_scale", "sib_base", "sse_cc", "avx_cc", "avx_sae", "avx_rm", "op_count", "op");
138 op = new Operand[e.op_count];
139 for (int i=0; i<e.op_count; i++)
  /external/libunwind/src/mi/
Gdyn-remote.c 58 uint32_t insn_count, op_count, i; local
70 || (ret = fetch32 (as, a, addr, (int32_t *) &op_count, arg)) < 0)
73 region = calloc (1, _U_dyn_region_info_size (op_count));
81 region->op_count = op_count;
82 for (i = 0; i < op_count; ++i)
  /external/capstone/bindings/python/pyx/
ccapstone.pyx 222 def op_count(self, op_type): member in class:CsInsn
  /external/libunwind/include/
libunwind-dynamic.h 97 uint32_t op_count; /* length of op-array */ member in struct:unw_dyn_region_info
159 hold OP_COUNT ops. */
160 #define _U_dyn_region_info_size(op_count) \
161 ((char *) (((unw_dyn_region_info_t *) NULL)->op + (op_count)) \
  /external/capstone/bindings/python/capstone/
__init__.py 660 def op_count(self, op_type): member in class:CsInsn
  /external/tensorflow/tensorflow/core/grappler/costs/
op_level_cost_estimator.cc 368 int64 op_count = local
373 op_count =
374 std::max(op_count, CalculateTensorElementCount(op_features.outputs(0),
380 op_count = std::max(op_count,
395 Costs costs = PredictOpCountBasedCost(op_count * op_cost, op_features);
    [all...]
virtual_scheduler_test.cc 1923 std::unordered_map<string, int> op_count; local
    [all...]
  /external/capstone/include/
xcore.h 52 uint8_t op_count; member in struct:cs_xcore
sparc.h 105 uint8_t op_count; member in struct:cs_sparc
arm.h 259 uint8_t op_count; member in struct:cs_arm
mips.h 54 uint8_t op_count; member in struct:cs_mips
systemz.h 74 uint8_t op_count; member in struct:cs_sysz
arm64.h 388 uint8_t op_count; member in struct:cs_arm64
ppc.h 278 uint8_t op_count; member in struct:cs_ppc
x86.h 259 uint8_t op_count; member in struct:cs_x86
    [all...]

Completed in 354 milliseconds