Home
last modified time | relevance | path

Searched refs:op_count (Results 1 – 6 of 6) sorted by relevance

/external/libunwind/tests/
Dia64-test-dyn1.c115 r_epi->op_count = 5; in main()
121 assert ((unsigned) i <= r_epi->op_count); in main()
126 r_pro->op_count = 4; in main()
137 assert ((unsigned) i <= r_pro->op_count); in main()
142 r->op_count = 16; in main()
148 assert ((unsigned) i <= r->op_count); in main()
153 r->op_count = 16; in main()
161 assert ((unsigned) i <= r->op_count); in main()
166 r->op_count = 16; in main()
177 assert ((unsigned) i <= r->op_count); in main()
DGtest-dyn1.c198 region->op_count = 2; in main()
/external/mesa3d/src/mapi/glapi/gen/
DglX_server_table.py100 op_count = 1 << (remaining_bits - M);
105 for i in range(min_opcode, next_opcode, op_count):
109 for j in range(i, i + op_count):
116 if empty == op_count:
119 if used == op_count:
122 … if (empty_children > 0) or (full_children == child_count) or (op_count <= self.min_op_count):
136 for i in range(min_opcode, next_opcode, op_count):
/external/libunwind/src/mi/
DGdyn-remote.c58 uint32_t insn_count, op_count, i; in intern_regions() local
70 || (ret = fetch32 (as, a, addr, (int32_t *) &op_count, arg)) < 0) in intern_regions()
73 region = calloc (1, _U_dyn_region_info_size (op_count)); in intern_regions()
81 region->op_count = op_count; in intern_regions()
82 for (i = 0; i < op_count; ++i) in intern_regions()
/external/libunwind/include/
Dlibunwind-dynamic.h97 uint32_t op_count; /* length of op-array */ member
160 #define _U_dyn_region_info_size(op_count) \ argument
161 ((char *) (((unw_dyn_region_info_t *) NULL)->op + (op_count)) \
/external/libunwind/src/ia64/
DGparser.c822 for (op = r->op; op < r->op + r->op_count; ++op) in parse_dynamic()