HomeSort by: relevance | last modified time | path
    Searched defs:array (Results 1 - 25 of 457) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
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_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_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
msg_182.c 19 /* expect+1: warning: 'array' set but not used in function 'init_discarding_volatile' [191] */
20 void *array[] = { arg }; local
  /src/external/bsd/pcc/dist/pcc/driver/
mkopt.sh 25 # emit a NULL terminated array of quoted strings
26 array() function
66 const char *cc_names[] = $(array ${CC_NAMES:-cc pcc});
67 const char *cpp_names[] = $(array ${CPP_NAMES:-cpp pcpp});
68 const char *cxx_names[] = $(array ${CXX_NAMES:-c++ p++});
69 const char *ftn_names[] = $(array ${FTN_NAMES:-f77 fortran p77 pfortran});
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
arrayidx.c 18 int array[] = {1, 2, 3, 4}; variable
23 array[0] = 5;
debug-expr.c 1 char array[4]; variable
non-lazy-array-index.c 22 int array[5]; member in struct:foo_t
  /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.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.base/
arrayidx.c 18 int array[] = {1, 2, 3, 4}; variable
23 array[0] = 5;
debug-expr.c 1 char array[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/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.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.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...]
array-slices-bad.f90 22 integer, dimension (1:10,1:10) :: array variable in program:test
32 array = 0
intvar-array.f90 17 integer, dimension (1:10) :: array variable in program:main
18 array = 1
20 call take_array (array)
subarray.f 22 integer array(7) variable in program:subarray
24 c Initialize character array "str" and integer array "array".
27 array(i) = i
  /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/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...]
array-slices-bad.f90 22 integer, dimension (1:10,1:10) :: array variable in program:test
32 array = 0
intvar-array.f90 17 integer, dimension (1:10) :: array variable in program:main
18 array = 1
20 call take_array (array)
subarray.f 22 integer array(7) variable in program:subarray
24 c Initialize character array "str" and integer array "array".
27 array(i) = i
  /src/external/mit/libcbor/dist/examples/
sort.c 30 cbor_item_t *array = cbor_new_definite_array(4); local
31 cbor_array_push(array, cbor_move(cbor_build_uint8(4)));
32 cbor_array_push(array, cbor_move(cbor_build_uint8(3)));
33 cbor_array_push(array, cbor_move(cbor_build_uint8(1)));
34 cbor_array_push(array, cbor_move(cbor_build_uint8(2)));
36 qsort(cbor_array_handle(array), cbor_array_size(array), sizeof(cbor_item_t *),
39 cbor_describe(array, stdout);

Completed in 40 milliseconds

1 2 3 4 5 6 7 8 91011>>