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

  /bionic/libc/bionic/
sys_sem.cpp 60 int semop(int id, sembuf* ops, size_t op_count) {
61 return semtimedop(id, ops, op_count, nullptr);
64 int semtimedop(int id, sembuf* ops, size_t op_count, const timespec* ts) {
66 return syscall(SYS_semtimedop, id, ops, op_count, ts);
68 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts);
  /external/libunwind/tests/
ia64-test-dyn1.c 115 r_epi->op_count = 5;
121 assert ((unsigned) i <= r_epi->op_count);
126 r_pro->op_count = 4;
137 assert ((unsigned) i <= r_pro->op_count);
142 r->op_count = 16;
148 assert ((unsigned) i <= r->op_count);
153 r->op_count = 16;
161 assert ((unsigned) i <= r->op_count);
166 r->op_count = 16;
177 assert ((unsigned) i <= r->op_count);
    [all...]
Gtest-dyn1.c 198 region->op_count = 2;
  /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/mesa3d/src/mapi/glapi/gen/
glX_server_table.py 99 op_count = 1 << (remaining_bits - M);
104 for i in range(min_opcode, next_opcode, op_count):
108 for j in range(i, i + op_count):
115 if empty == op_count:
118 if used == op_count:
121 if (empty_children > 0) or (full_children == child_count) or (op_count <= self.min_op_count):
135 for i in range(min_opcode, next_opcode, op_count):
  /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/libunwind/src/ia64/
Gparser.c 823 for (op = r->op; op < r->op + r->op_count; ++op)

Completed in 3752 milliseconds