Searched refs:num_elements (Results 1 - 18 of 18) sorted by relevance

/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dpartition.c43 partition_new (int num_elements) argument
49 (num_elements - 1) * sizeof (struct partition_elem));
50 part->num_elements = num_elements;
51 for (e = 0; e < num_elements; ++e)
143 int num_elements = part->num_elements; local
149 done = (char *) xmalloc (num_elements);
150 memset (done, 0, num_elements);
153 class_elements = (int *) xmalloc (num_elements * sizeo
[all...]
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dpartition.c43 partition_new (int num_elements) argument
49 (num_elements - 1) * sizeof (struct partition_elem));
50 part->num_elements = num_elements;
51 for (e = 0; e < num_elements; ++e)
143 int num_elements = part->num_elements; local
149 done = (char *) xmalloc (num_elements);
150 memset (done, 0, num_elements);
153 class_elements = (int *) xmalloc (num_elements * sizeo
[all...]
/freebsd-10.0-release/contrib/binutils/include/
H A Dpartition.h62 int num_elements; member in struct:partition_def
/freebsd-10.0-release/contrib/gcclibs/include/
H A Dpartition.h62 int num_elements; member in struct:partition_def
/freebsd-10.0-release/contrib/gcc/
H A Dvarray.c118 varray_init (size_t num_elements, enum varray_data_enum element_kind, argument
121 size_t data_size = num_elements * element[element_kind].size;
134 ptr->num_elements = num_elements;
146 size_t old_elements = va->num_elements;
166 va->num_elements = n;
182 size_t data_size = element[va->type].size * va->num_elements;
198 va->name, (unsigned long) va->num_elements, (unsigned long) n,
H A Dvarray.h67 char GTY ((length ("%0.num_elements"),
69 unsigned char GTY ((length ("%0.num_elements"),
71 short GTY ((length ("%0.num_elements"),
73 unsigned short GTY ((length ("%0.num_elements"),
75 int GTY ((length ("%0.num_elements"),
77 unsigned int GTY ((length ("%0.num_elements"),
79 long GTY ((length ("%0.num_elements"),
81 unsigned long GTY ((length ("%0.num_elements"),
83 HOST_WIDE_INT GTY ((length ("%0.num_elements"),
85 unsigned HOST_WIDE_INT GTY ((length ("%0.num_elements"),
115 size_t num_elements; /* Maximum element number allocated. */ local
[all...]
/freebsd-10.0-release/contrib/gdb/include/
H A Dpartition.h62 int num_elements; member in struct:partition_def
/freebsd-10.0-release/sys/dev/isci/
H A Disci_oem_parameters.c145 isci_log_message(1, "ISCI", "oem_data->header.num_elements = %d\n",
146 oem_data->header.num_elements);
148 for (index = 0; index < oem_data->header.num_elements; index++)
/freebsd-10.0-release/contrib/llvm/tools/lldb/tools/driver/
H A DIOChannel.cpp139 int num_elements = num_completions + 1; local
143 for (int i = 1; i < num_elements; i++)
156 while (cur_pos < num_elements)
159 if (endpoint > num_elements)
160 endpoint = num_elements;
168 if (cur_pos >= num_elements)
180 page_size = num_elements - cur_pos;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dsparc64-tdep.c755 int num_elements = 0;
766 num_elements++;
778 if (num_elements % 2 && sparc64_16_byte_align_p (type))
779 num_elements++;
780 num_elements += ((len + 7) / 8);
801 num_elements++;
813 num_elements += 2;
819 if (num_elements % 2)
820 num_elements++;
823 num_elements
751 int num_elements = 0; local
[all...]
H A Dsparc-tdep.c370 int num_elements = 0;
391 num_elements++;
397 num_elements += (len / 4);
406 num_elements += ((len + 3) / 4);
411 sp -= max (6, num_elements) * 4;
444 gdb_assert (element == num_elements);
366 int num_elements = 0; local
H A Damd64-tdep.c521 int num_elements = 0;
560 num_elements += ((len + 7) / 8);
605 sp -= num_elements * 8;
519 int num_elements = 0; local
/freebsd-10.0-release/contrib/gdb/gdb/tui/
H A Dtui-data.c583 tui_alloc_content (int num_elements, enum tui_win_type type) argument
590 xmalloc (sizeof (struct tui_win_element *) * num_elements)) != (tui_win_content) NULL)
599 xmalloc (sizeof (struct tui_win_element) * num_elements)) != (char *) NULL)
601 for (i = 0; i < num_elements; i++)
626 tui_add_content_elements (struct tui_gen_win_info * win_info, int num_elements) argument
633 win_info->content = (void **) tui_alloc_content (num_elements, win_info->type);
640 for (i = index_start; (i < num_elements + index_start); i++)
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscu_bios_definitions.h132 * (num_elements * element_length).
167 U8 num_elements; member in struct:SCI_BIOS_OEM_PARAM_BLOCK_HDR
990 * however, the actual runtime number is determined by the num_elements
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangExpressionDeclMap.h186 /// @param[out] num_elements
199 GetStructInfo (uint32_t &num_elements,
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp4415 uint64_t num_elements = 0; local
4432 num_elements = form_value.Unsigned();
4469 if (num_elements == 0)
4472 num_elements = upper_bound - lower_bound + 1;
4475 element_orders.push_back (num_elements);
6923 uint64_t num_elements = 0; local
6928 num_elements = *pos;
6930 num_elements,
6933 array_element_bit_stride = num_elements ? array_element_bit_stride * num_elements
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRForTarget.cpp2300 uint32_t num_elements; local
2306 if (!m_decl_map->GetStructInfo (num_elements, size, alignment))
2401 for (element_index = 0; element_index < num_elements; ++element_index)
H A DClangExpressionDeclMap.cpp413 uint32_t &num_elements,
423 num_elements = m_struct_members.GetSize();
411 GetStructInfo( uint32_t &num_elements, size_t &size, off_t &alignment ) argument

Completed in 184 milliseconds