Searched refs:array (Results 1 - 25 of 2385) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
H A Darray.f16 INTEGER array(1:2,-1:1) variable
17 DATA array/11,21,12,22,13,23/
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
H A Darray.f9017 INTEGER array (1:2,-1:1) variable in program:prog_array
18 DATA array/11,21,12,22,13,23/
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_020.c4 // Test for message: negative array dimension (%d) [20]
8 /* expect+1: error: negative array dimension (-3) [20] */
9 int array[-3]; variable
H A Dmsg_015.c8 typedef int array[5]; typedef
10 /* expect+1: error: function returns illegal type 'array[5] of int' [15] */
11 array invalid(void);
H A Dmsg_190.c4 // Test for message: empty array declaration for '%s' [190]
8 /* expect+1: error: empty array declaration for 'empty_array' [190] */
11 double array[] = { 1 }; variable
H A Dd_gcc_variable_array_init.c4 /* gcc: variable array initializer */
11 int array[i]; local
13 foo(array[i] = 0);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Darrayidx.c18 int array[] = {1, 2, 3, 4}; variable
23 array[0] = 5;
H A Ddebug-expr.c1 char array[4]; variable
H A Dgdb1250.c37 int array [4]; local
38 array [0] = global++;
39 array [1] = global++;
40 array [2] = global++;
41 array [3] = global++;
42 my_gamma (array);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Darrayidx.c18 int array[] = {1, 2, 3, 4}; variable
23 array[0] = 5;
H A Dgdb1250.c37 int array [4]; local
38 array [0] = global++;
39 array [1] = global++;
40 array [2] = global++;
41 array [3] = global++;
42 my_gamma (array);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
H A Dimplref-array.c20 int array[5] = {0, 1, 2, 3, 4}; variable
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
H A Dimplref-array.c20 int array[5] = {0, 1, 2, 3, 4}; variable
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
H A Dallocated.f9021 integer, allocatable :: array (:, :) variable in program:test
24 is_allocated = allocated (array)
28 allocate (array (-5:4, -2:7))
30 is_allocated = allocated (array)
33 deallocate (array)
35 is_allocated = allocated (array)
38 allocate (array (3:8, 2:7))
40 is_allocated = allocated (array)
44 deallocate (array)
46 is_allocated = allocated (array)
[all...]
H A Dintvar-array.f9017 integer, dimension (1:10) :: array variable in program:main
18 array = 1
20 call take_array (array)
H A Darray-slices-sub-slices.f9020 integer, dimension (1:10,1:11) :: array variable in program:test
23 call fill_array_2d (array)
28 print *, array
36 ! Fill a 1D array with a unique positive integer in each element.
37 subroutine fill_array_1d (array)
38 integer, dimension (:) :: array local in subroutine:fill_array_1d
42 do j=LBOUND (array, 1), UBOUND (array, 1), 1
43 array (j) = counter
48 ! Fill a 2D array wit
50 integer, dimension (:,:) :: array local in subroutine:fill_array_2d
64 integer, dimension (:,:,:) :: array local in subroutine:fill_array_3d
80 integer, dimension (:,:,:,:) :: array local in subroutine:fill_array_4d
[all...]
H A Darray-slices.f9016 subroutine show_elem (array)
17 integer :: array local in subroutine:show_elem
24 write(*, fmt="(I0)", advance="no") array
30 subroutine show_str (array)
31 character (len=*) :: array local in subroutine:show_str
37 write (*, fmt="(A)", advance="no") array
43 subroutine show_1d (array)
44 integer, dimension (:) :: array local in subroutine:show_1d
49 do i=LBOUND (array, 1), UBOUND (array,
70 integer, dimension (:,:) :: array local in subroutine:show_2d
106 integer, dimension (:,:,:) :: array local in subroutine:show_3d
139 integer, dimension (:,:,:,:) :: array local in subroutine:show_4d
207 integer, dimension (1:10,1:10) :: array variable in program:test
322 integer, dimension (:) :: array local in subroutine:fill_array_1d
334 integer, dimension (:,:) :: array local in subroutine:fill_array_2d
348 integer, dimension (:,:,:) :: array local in subroutine:fill_array_3d
364 integer, dimension (:,:,:,:) :: array local in subroutine:fill_array_4d
[all...]
H A Darray-slices-bad.f9022 integer, dimension (1:10,1:10) :: array variable in program:test
32 array = 0
/netbsd-current/external/bsd/mdocml/dist/
H A Ddba_array.c37 int32_t pos; /* Map position of this array. */
44 struct dba_array *array; local
47 array = mandoc_malloc(sizeof(*array));
48 array->ep = mandoc_reallocarray(NULL, ea, sizeof(*array->ep));
49 array->em = mandoc_reallocarray(NULL, ea, sizeof(*array->em));
50 array->ea = ea;
51 array
60 dba_array_free(struct dba_array *array) argument
75 dba_array_set(struct dba_array *array, int32_t ie, void *entry) argument
89 dba_array_add(struct dba_array *array, void *entry) argument
103 dba_array_get(struct dba_array *array, int32_t ie) argument
111 dba_array_start(struct dba_array *array) argument
117 dba_array_next(struct dba_array *array) argument
129 dba_array_del(struct dba_array *array) argument
138 dba_array_undel(struct dba_array *array) argument
144 dba_array_setpos(struct dba_array *array, int32_t ie, int32_t pos) argument
150 dba_array_getpos(struct dba_array *array) argument
156 dba_array_sort(struct dba_array *array, dba_compare_func func) argument
163 dba_array_writelen(struct dba_array *array, int32_t nmemb) argument
170 dba_array_writepos(struct dba_array *array) argument
181 dba_array_writelst(struct dba_array *array) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
H A Darray-slices.f9016 subroutine show (message, array)
18 integer, dimension (:,:) :: array local in subroutine:show
21 do i=LBOUND (array, 2), UBOUND (array, 2), 1
22 do j=LBOUND (array, 1), UBOUND (array, 1), 1
23 write(*, fmt="(i4)", advance="no") array (j, i)
27 print *, array
35 subroutine show (message, array)
37 integer, dimension(:,:) :: array
41 integer, dimension (1:10,1:10) :: array variable in program:test
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/base/
H A Darray.c1 /* $NetBSD: array.c,v 1.2 2017/01/28 21:31:45 christos Exp $ */
54 heim_array_t array = ptr; local
56 for (n = 0; n < array->len; n++)
57 heim_release(array->val[n]);
58 free(array->allocated);
73 * Allocate an array
75 * @return A new allocated array, free with heim_release()
81 heim_array_t array; local
83 array = _heim_alloc_object(&array_object, sizeof(*array));
117 heim_array_append_value(heim_array_t array, heim_object_t object) argument
163 heim_array_prepend_value(heim_array_t array, heim_object_t object) argument
219 heim_array_insert_value(heim_array_t array, size_t idx, heim_object_t object) argument
257 heim_array_iterate_f(heim_array_t array, void *ctx, heim_array_iterator_f_t fn) argument
277 heim_array_iterate(heim_array_t array, void (^fn)(heim_object_t, int *)) argument
298 heim_array_iterate_reverse_f(heim_array_t array, void *ctx, heim_array_iterator_f_t fn) argument
319 heim_array_iterate_reverse(heim_array_t array, void (^fn)(heim_object_t, int *)) argument
340 heim_array_get_length(heim_array_t array) argument
356 heim_array_get_value(heim_array_t array, size_t idx) argument
374 heim_array_copy_value(heim_array_t array, size_t idx) argument
392 heim_array_set_value(heim_array_t array, size_t idx, heim_object_t value) argument
408 heim_array_delete_value(heim_array_t array, size_t idx) argument
444 heim_array_filter_f(heim_array_t array, void *ctx, heim_array_filter_f_t fn) argument
467 heim_array_filter(heim_array_t array, int (^block)(heim_object_t)) argument
[all...]
/netbsd-current/tests/usr.bin/indent/
H A Dlsym_rparen_or_rbracket.c16 int array[3] = {1, 2, 3}; variable
17 int array[3] = {[2] = 3}; variable
24 int a = array[
28 int a = array[
35 int a = array[
39 int a = array[
47 int a = array[
51 int a = array[
/netbsd-current/games/battlestar/
H A Dmisc.c45 card(const char *array, int size) argument
47 const char *end = array + size;
50 while (array < end)
51 if (*array++)
57 ucard(const unsigned int *array) argument
62 if (testbit(array, n))
/netbsd-current/external/mpl/dhcp/dist/omapip/
H A Darray.c1 /* $NetBSD: array.c,v 1.3 2022/04/03 01:10:59 christos Exp $ */
5 Subroutines that support the omapi extensible array type. */
32 __RCSID("$NetBSD: array.c,v 1.3 2022/04/03 01:10:59 christos Exp $");
38 /* Allocate a new extensible array. */
40 isc_result_t omapi_array_allocate (omapi_array_t **array, argument
47 if (!array || *array)
52 *array = aptr;
58 isc_result_t omapi_array_free (omapi_array_t **array, argument
64 if (!array || !*arra
79 omapi_array_extend(omapi_array_t *array, char *ptr, int *index, const char *file, int line) argument
92 omapi_array_set(omapi_array_t *array, void *ptr, int index, const char *file, int line) argument
151 omapi_array_lookup(char **ptr, omapi_array_t *array, int index, const char *file, int line) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
H A Dtrace-unavailable.c21 unsigned char array[2]; local
24 array[0] = 'c';
25 array[1] = 'd';

Completed in 327 milliseconds

1234567891011>>