| /openbsd-src/gnu/llvm/lldb/examples/synthetic/ |
| H A D | unordered_multi.py | 10 self.num_elements = None 16 self.num_elements = None 50 self.num_elements = table.GetChildMemberWithName( 54 logger >> "Num elements = %r" % self.num_elements 59 if self.num_elements: 69 num_elements = self.num_elements 70 if num_elements is not None: 71 if num_elements > _map_capping_size: 72 num_elements = _map_capping_size 73 return num_elements
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | partition.c | 43 partition_new (int num_elements) in partition_new() argument 49 (num_elements - 1) * sizeof (struct partition_elem)); in partition_new() 50 part->num_elements = num_elements; in partition_new() 51 for (e = 0; e < num_elements; ++e) in partition_new() 143 int num_elements = part->num_elements; in partition_print() local 149 done = (char *) xmalloc (num_elements); in partition_print() 150 memset (done, 0, num_elements); in partition_print() 153 class_elements = (int *) xmalloc (num_elements * sizeof (int)); in partition_print() 156 for (e = 0; e < num_elements; ++e) in partition_print()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | varray.c | 63 varray_init (num_elements, element_kind, name) in varray_init() argument 64 size_t num_elements; in varray_init() 68 size_t data_size = num_elements * element_size[element_kind]; 75 ptr->num_elements = num_elements; 89 size_t old_elements = va->num_elements; 101 va->num_elements = n; 114 size_t data_size = element_size[va->type] * va->num_elements; 135 va->name, (unsigned long) va->num_elements, (unsigned long) n,
|
| H A D | varray.h | 130 size_t num_elements; /* Maximum element number allocated. */ member 215 #define VARRAY_SIZE(VA) ((VA)->num_elements) 232 if (_n >= _va->num_elements) \ 244 if ((VA)->elements_used >= (VA)->num_elements) \ 245 VARRAY_GROW ((VA), 2 * (VA)->num_elements); \
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParser.cpp | 37 uint64_t num_elements = 0; in ParseChildArrayInfo() local 60 num_elements = valobj_sp->GetValueAsUnsigned(0); in ParseChildArrayInfo() 66 num_elements = form_value.Unsigned(); in ParseChildArrayInfo() 92 if (num_elements == 0) { in ParseChildArrayInfo() 94 num_elements = upper_bound - lower_bound + 1; in ParseChildArrayInfo() 97 array_info.element_orders.push_back(num_elements); in ParseChildArrayInfo()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | varray.c | 118 varray_init (size_t num_elements, enum varray_data_enum element_kind, in varray_init() argument 121 size_t data_size = num_elements * element[element_kind].size; in varray_init() 134 ptr->num_elements = num_elements; in varray_init() 146 size_t old_elements = va->num_elements; in varray_grow() 166 va->num_elements = n; in varray_grow() 182 size_t data_size = element[va->type].size * va->num_elements; in varray_clear() 198 va->name, (unsigned long) va->num_elements, (unsigned long) n, in varray_check_failed()
|
| H A D | varray.h | 115 size_t num_elements; /* Maximum element number allocated. */ member 205 #define VARRAY_SIZE(VA) ((VA)->num_elements) 224 if (_n >= _va->num_elements) \ 247 if ((VA)->elements_used >= (VA)->num_elements) \ 248 VARRAY_GROW ((VA), 2 * (VA)->num_elements); \
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.hp/gdb.compat/ |
| H A D | average.c | 23 int total = 0, num_elements = 0, average = 0; local 25 num_elements = high - low; /* note this is an off-by-one bug */ 27 average = total / num_elements;
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| H A D | average.c | 23 int total = 0, num_elements = 0, average = 0; local 25 num_elements = high - low; /* note this is an off-by-one bug */ 27 average = total / num_elements;
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBTypeEnumMember.i | 122 num_elements = self.GetSize() 124 if key < num_elements: 127 for idx in range(num_elements):
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_local_address_space_view.h | 42 static const T *Load(const T *target_address, uptr num_elements = 1) { 68 static T *LoadWritable(T *target_address, uptr num_elements = 1) {
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | storag.c | 211 ffetargetOffset num_elements; in ffestorag_exec_layout() local 235 num_elements = 1; in ffestorag_exec_layout() 241 num_elements in ffestorag_exec_layout() 248 num_elements); in ffestorag_exec_layout() 340 num_elements = 1; in ffestorag_exec_layout() 342 num_elements = ffebld_constant_integerdefault (ffebld_conter in ffestorag_exec_layout() 347 num_elements); in ffestorag_exec_layout()
|
| H A D | equiv.c | 135 ffetargetOffset num_elements; in ffeequiv_layout_local_() local 233 num_elements = 1; in ffeequiv_layout_local_() 235 num_elements = ffebld_constant_integerdefault (ffebld_conter in ffeequiv_layout_local_() 239 ffesymbol_size (root_sym), num_elements); in ffeequiv_layout_local_() 395 num_elements = 1; in ffeequiv_layout_local_() 397 num_elements = ffebld_constant_integerdefault (ffebld_conter in ffeequiv_layout_local_() 402 num_elements); in ffeequiv_layout_local_() 1015 ffetargetOffset num_elements; in ffeequiv_layout_cblock() local 1113 num_elements = 1; in ffeequiv_layout_cblock() 1115 num_elements = ffebld_constant_integerdefault in ffeequiv_layout_cblock() [all …]
|
| H A D | ste.c | 897 tree num_elements; in ffeste_io_dofio_() local 944 num_elements in ffeste_io_dofio_() 948 num_elements in ffeste_io_dofio_() 952 num_elements = size_binop (CEIL_DIV_EXPR, num_elements, in ffeste_io_dofio_() 955 num_elements = convert (ffecom_f2c_ftnlen_type_node, in ffeste_io_dofio_() 956 num_elements); in ffeste_io_dofio_() 959 num_elements in ffeste_io_dofio_() 961 num_elements); in ffeste_io_dofio_() 965 arglist = build_tree_list (NULL_TREE, num_elements); in ffeste_io_dofio_() 985 tree num_elements; in ffeste_io_dolio_() local [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | sparc64-tdep.c | 763 int num_elements = 0; in sparc64_store_arguments() local 774 num_elements++; in sparc64_store_arguments() 786 if (num_elements % 2 && sparc64_16_byte_align_p (type)) in sparc64_store_arguments() 787 num_elements++; in sparc64_store_arguments() 788 num_elements += ((len + 7) / 8); in sparc64_store_arguments() 809 num_elements++; in sparc64_store_arguments() 821 num_elements += 2; in sparc64_store_arguments() 827 if (num_elements % 2) in sparc64_store_arguments() 828 num_elements++; in sparc64_store_arguments() 831 num_elements++; in sparc64_store_arguments() [all …]
|
| H A D | sparc-tdep.c | 367 int num_elements = 0; in sparc32_store_arguments() local 388 num_elements++; in sparc32_store_arguments() 394 num_elements += (len / 4); in sparc32_store_arguments() 403 num_elements += ((len + 3) / 4); in sparc32_store_arguments() 408 sp -= max (6, num_elements) * 4; in sparc32_store_arguments() 441 gdb_assert (element == num_elements); in sparc32_store_arguments()
|
| H A D | amd64-tdep.c | 539 int num_elements = 0; in amd64_push_arguments() local 578 num_elements += ((len + 7) / 8); in amd64_push_arguments() 623 sp -= num_elements * 8; in amd64_push_arguments()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/tui/ |
| H A D | tui-data.c | 583 tui_alloc_content (int num_elements, enum tui_win_type type) in tui_alloc_content() argument 590 xmalloc (sizeof (struct tui_win_element *) * num_elements)) != (tui_win_content) NULL) in tui_alloc_content() 599 xmalloc (sizeof (struct tui_win_element) * num_elements)) != (char *) NULL) in tui_alloc_content() 601 for (i = 0; i < num_elements; i++) in tui_alloc_content() 626 tui_add_content_elements (struct tui_gen_win_info * win_info, int num_elements) in tui_add_content_elements() argument 633 win_info->content = (void **) tui_alloc_content (num_elements, win_info->type); in tui_add_content_elements() 640 for (i = index_start; (i < num_elements + index_start); i++) in tui_add_content_elements()
|
| /openbsd-src/gnu/gcc/include/ |
| H A D | partition.h | 62 int num_elements; member
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/include/ |
| H A D | partition.h | 62 int num_elements; member
|
| /openbsd-src/gnu/lib/libiberty/include/ |
| H A D | partition.h | 62 int num_elements; member
|
| /openbsd-src/gnu/usr.bin/binutils/include/ |
| H A D | partition.h | 62 int num_elements; member
|
| /openbsd-src/sys/dev/pci/ |
| H A D | if_qwx_pci.c | 282 int num_elements; member 300 int num_elements; member 318 int num_elements; member 1202 size_t num_elements) in qwx_pci_free_xfer_rings() 1209 size = sizeof(struct qwx_mhi_ring_element) * num_elements; in qwx_pci_alloc_xfer_ring() 1220 ring->num_elements = num_elements; in qwx_pci_alloc_xfer_ring() 1223 for (i = 0; i < ring->num_elements; i++) { in qwx_pci_alloc_xfer_ring() 1269 for (i = 0; i < ring->num_elements; i++) { in qwx_pci_alloc_xfer_ring() 1354 uint32_t type, uint32_t irq, uint32_t intmod, size_t num_elements) in qwx_pci_alloc_xfer_rings_qcn9074() 1207 qwx_pci_alloc_xfer_ring(struct qwx_softc * sc,struct qwx_pci_xfer_ring * ring,uint32_t id,uint32_t direction,uint32_t event_ring_index,size_t num_elements) qwx_pci_alloc_xfer_ring() argument 1383 qwx_pci_alloc_event_ring(struct qwx_softc * sc,struct qwx_pci_event_ring * ring,uint32_t type,uint32_t irq,uint32_t intmod,size_t num_elements) qwx_pci_alloc_event_ring() argument [all...] |
| /openbsd-src/gnu/llvm/llvm/utils/ |
| H A D | lldbDataFormatters.py | 166 num_elements = valobj.GetNumChildren() 168 for i in range(0, num_elements):
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.h | 175 bool GetStructInfo(uint32_t &num_elements, size_t &size,
|