HomeSort by: relevance | last modified time | path
    Searched refs:elements (Results 1 - 25 of 544) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/include/sys/
t_pslist.c 60 } elements[] = { local
78 PSLIST_ENTRY_DESTROY(&elements[0], entry);
80 for (i = 0; i < __arraycount(elements); i++)
81 PSLIST_ENTRY_INIT(&elements[i], entry);
83 PSLIST_WRITER_INSERT_HEAD(&h, &elements[4], entry);
84 PSLIST_WRITER_INSERT_BEFORE(&elements[4], &elements[2], entry);
85 PSLIST_WRITER_INSERT_BEFORE(&elements[4], &elements[3], entry);
86 PSLIST_WRITER_INSERT_BEFORE(&elements[2], &elements[1], entry)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-bad-printers.c 25 int *elements; member in struct:container
35 result.elements = 0;
44 c->elements = array;
45 c->elements[c->len] = val;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-bad-printers.c 25 int *elements; member in struct:container
35 result.elements = 0;
44 c->elements = array;
45 c->elements[c->len] = val;
  /src/external/gpl3/binutils/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
partition.c 39 /* Creates a partition of NUM_ELEMENTS elements. Initially each
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
77 struct partition_elem *elements = part->elements; local
83 int class_element = elements[elem1].class_element;
86 if (class_element == elements[elem2].class_element)
91 if (elements[elem1].class_count < elements[elem2].class_count)
144 struct partition_elem *elements = part->elements; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
gss_release_oid.c 52 if (o->elements != NULL) {
53 free(o->elements);
54 o->elements = NULL;
gss_duplicate_oid.c 58 (*dest_oid)->elements = malloc(src_oid->length);
59 if ((*dest_oid)->elements == NULL) {
65 memcpy((*dest_oid)->elements, src_oid->elements, src_oid->length);
gss_oid_equal.c 59 return memcmp(a->elements, b->elements, a->length) == 0;
gss_release_oid_set.c 40 if ((*set)->elements)
41 free((*set)->elements);
gss_utils.c 40 to_oid->elements = malloc(len);
41 if (!to_oid->elements) {
47 memcpy(to_oid->elements, from_oid->elements, len);
55 if (oid->elements) {
56 free(oid->elements);
57 oid->elements = NULL;
gss_buffer_set.c 51 set->elements = NULL;
78 set->elements = realloc(set->elements,
79 (set->count + 1) * sizeof(set->elements[0]));
80 if (set->elements == NULL) {
85 p = &set->elements[set->count];
114 gss_release_buffer(&minor, &((*buffer_set)->elements[i]));
116 free((*buffer_set)->elements);
118 (*buffer_set)->elements = NULL;
gss_add_oid_set_member.c 76 tmp = realloc ((*oid_set)->elements, n * sizeof(gss_OID_desc));
81 (*oid_set)->elements = tmp;
83 (*oid_set)->elements[n-1] = *member_oid;
  /src/external/gpl3/binutils/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/binutils.old/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/gcc/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/gcc.old/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/gdb.old/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/gdb/dist/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
48 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /src/external/gpl3/gcc/dist/libcc1/
marshall-cp.hh 35 delete[] p->elements;
45 delete[] p->elements;
56 delete[] p->elements;
78 if (!marshall_array_elmts (conn, len * sizeof (a->elements[0]),
79 a->elements))
88 // elements and virtualp, and 'delete' on the array object itself.
106 gva->elements = new gcc_type[len];
109 len * sizeof (gva->elements[0]),
110 gva->elements))
145 return marshall_array_elmts (conn, len * sizeof (a->elements[0])
    [all...]
  /src/external/gpl3/gcc.old/dist/libcc1/
marshall-cp.hh 35 delete[] p->elements;
45 delete[] p->elements;
56 delete[] p->elements;
78 if (!marshall_array_elmts (conn, len * sizeof (a->elements[0]),
79 a->elements))
88 // elements and virtualp, and 'delete' on the array object itself.
106 gva->elements = new gcc_type[len];
109 len * sizeof (gva->elements[0]),
110 gva->elements))
145 return marshall_array_elmts (conn, len * sizeof (a->elements[0])
    [all...]
  /src/external/mit/expat/dist/examples/
Makefile.am 34 noinst_PROGRAMS = element_declarations elements outline
39 elements_SOURCES = elements.c

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>