| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| array.f90 | 17 INTEGER array (1:2,-1:1) variable in program:prog_array 18 DATA array/11,21,12,22,13,23/
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| array.f90 | 17 INTEGER array (1:2,-1:1) variable in program:prog_array 18 DATA array/11,21,12,22,13,23/
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_020.c | 4 // Test for message: negative array dimension (%d) [20] 8 /* expect+1: error: negative array dimension (-3) [20] */ 9 int array[-3]; variable
|
| msg_015.c | 8 typedef int array[5]; typedef 10 /* expect+1: error: function returns invalid type 'array[5] of int' [15] */ 11 array invalid(void);
|
| msg_190.c | 4 // 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
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| arrayidx.c | 18 int array[] = {1, 2, 3, 4}; variable 23 array[0] = 5;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| arrayidx.c | 18 int array[] = {1, 2, 3, 4}; variable 23 array[0] = 5;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| implref-array.c | 20 int array[5] = {0, 1, 2, 3, 4}; variable
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| implref-array.c | 20 int array[5] = {0, 1, 2, 3, 4}; variable
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| allocated.f90 | 21 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...] |
| intvar-array.f90 | 17 integer, dimension (1:10) :: array variable in program:main 18 array = 1 20 call take_array (array)
|
| array-slices-sub-slices.f90 | 20 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 with a unique positive integer in each element 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...] |
| array-slices.f90 | 16 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 46 print *, "Array Contents:" 49 do i=LBOUND (array, 1), UBOUND (array, 1), 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...] |
| array-slices-bad.f90 | 22 integer, dimension (1:10,1:10) :: array variable in program:test 32 array = 0
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| allocated.f90 | 21 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...] |
| intvar-array.f90 | 17 integer, dimension (1:10) :: array variable in program:main 18 array = 1 20 call take_array (array)
|
| array-slices-sub-slices.f90 | 20 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 with a unique positive integer in each element 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...] |
| array-slices.f90 | 16 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 46 print *, "Array Contents:" 49 do i=LBOUND (array, 1), UBOUND (array, 1), 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...] |
| array-slices-bad.f90 | 22 integer, dimension (1:10,1:10) :: array variable in program:test 32 array = 0
|
| /src/external/bsd/mdocml/dist/ |
| dba_array.c | 32 void **ep; /* Array of entries. */ 33 int32_t *em; /* Array of map positions. */ 39 int32_t pos; /* Map position of this array. */ 46 struct dba_array *array; local 49 array = mandoc_malloc(sizeof(*array)); 50 array->ep = mandoc_reallocarray(NULL, ea, sizeof(*array->ep)); 51 array->em = mandoc_reallocarray(NULL, ea, sizeof(*array->em)) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/base/ |
| array.c | 1 /* $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)); [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| amd64-watchpoint-downgrade.c | 20 unsigned long long array[100]; member in struct:struct_type
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| amd64-watchpoint-downgrade.c | 20 unsigned long long array[100]; member in struct:struct_type
|
| /src/tests/usr.bin/indent/ |
| lsym_rparen_or_rbracket.c | 16 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[
|
| /src/games/battlestar/ |
| misc.c | 45 card(const char *array, int size) 47 const char *end = array + size; 50 while (array < end) 51 if (*array++) 57 ucard(const unsigned int *array) 62 if (testbit(array, n))
|