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

1 2 3 4

  /src/games/sail/
array.h 45 struct array { struct
50 struct array *array_create(void);
51 void array_destroy(struct array *);
52 void array_init(struct array *);
53 void array_cleanup(struct array *);
54 unsigned array_num(const struct array *);
55 void *array_get(const struct array *, unsigned index_);
56 void array_set(const struct array *, unsigned index_, void *val);
57 int array_setsize(struct array *, unsigned num);
58 int array_add(struct array *, void *val, unsigned *index_ret)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
opt-gather.awk 24 function sort(ARRAY, ELEMENTS)
27 for (j = i; ARRAY[j-1] > ARRAY[j]; --j) {
28 temp = ARRAY[j]
29 ARRAY[j] = ARRAY[j-1]
30 ARRAY[j-1] = temp
gcov-io.h 243 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
244 ((ARRAY)[0] = (char)((VALUE) >> 24), \
245 (ARRAY)[1] = (char)((VALUE) >> 16), \
246 (ARRAY)[2] = (char)((VALUE) >> 8), \
247 (ARRAY)[3] = (char)((VALUE) >> 0))
rtl-iter.h 121 /* Iterate over X and its subrtxes, in arbitrary order. Use ARRAY to
122 store the worklist. We use an external array in order to avoid
124 the array. Use BOUNDS to find the bounds of simple "e"-string codes. */
128 generic_subrtx_iterator (array_type &array, value_type x,
131 m_array (array),
182 to fit into the current array. */
273 using subrtx_iterator::array ARRAY as the storage for the worklist.
274 ARRAY can be reused for multiple consecutive iterations but shouldn't
278 #define FOR_EACH_SUBRTX(ITER, ARRAY, X, TYPE)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
opt-gather.awk 24 function sort(ARRAY, ELEMENTS)
27 for (j = i; ARRAY[j-1] > ARRAY[j]; --j) {
28 temp = ARRAY[j]
29 ARRAY[j] = ARRAY[j-1]
30 ARRAY[j-1] = temp
gcov-io.h 235 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
236 ((ARRAY)[0] = (char)((VALUE) >> 24), \
237 (ARRAY)[1] = (char)((VALUE) >> 16), \
238 (ARRAY)[2] = (char)((VALUE) >> 8), \
239 (ARRAY)[3] = (char)((VALUE) >> 0))
rtl-iter.h 121 /* Iterate over X and its subrtxes, in arbitrary order. Use ARRAY to
122 store the worklist. We use an external array in order to avoid
124 the array. Use BOUNDS to find the bounds of simple "e"-string codes. */
128 generic_subrtx_iterator (array_type &array, value_type x,
131 m_array (array),
182 to fit into the current array. */
273 using subrtx_iterator::array ARRAY as the storage for the worklist.
274 ARRAY can be reused for multiple consecutive iterations but shouldn't
278 #define FOR_EACH_SUBRTX(ITER, ARRAY, X, TYPE)
    [all...]
  /src/external/bsd/tradcpp/dist/
array.h 52 struct array { struct
57 struct array *array_create(void);
58 void array_destroy(struct array *);
59 void array_init(struct array *);
60 void array_cleanup(struct array *);
61 ARRAYINLINE unsigned array_num(const struct array *);
62 ARRAYINLINE void *array_get(const struct array *, unsigned index_);
63 ARRAYINLINE void array_set(const struct array *, unsigned index_, void *val);
64 void array_setsize(struct array *, unsigned num);
65 ARRAYINLINE void array_add(struct array *, void *val, unsigned *index_ret)
    [all...]
  /src/usr.bin/rump_dhcpclient/
dhcp.c 47 #define ARRAY (1 << 9)
74 { 33, IPV4 | ARRAY | REQUEST, "static_routes" },
75 { 3, IPV4 | ARRAY | REQUEST, "routers" },
77 { 4, IPV4 | ARRAY, "time_servers" },
78 { 5, IPV4 | ARRAY, "ien116_name_servers" },
79 { 6, IPV4 | ARRAY, "domain_name_servers" },
80 { 7, IPV4 | ARRAY, "log_servers" },
81 { 8, IPV4 | ARRAY, "cookie_servers" },
82 { 9, IPV4 | ARRAY, "lpr_servers" },
83 { 10, IPV4 | ARRAY, "impress_servers" }
    [all...]
  /src/external/bsd/bc/dist/
const.h 91 #define ARRAY 1
bc.y 73 d) Call by variable array parameters
394 { $$ = nextarg (NULL, lookup ($1,ARRAY), FALSE); }
396 { $$ = nextarg (NULL, lookup ($2,ARRAY), TRUE);
400 { $$ = nextarg (NULL, lookup ($2,ARRAY), TRUE);
406 { $$ = nextarg ($1, lookup ($3,ARRAY), FALSE); }
408 { $$ = nextarg ($1, lookup ($4,ARRAY), TRUE);
412 { $$ = nextarg ($1, lookup ($4,ARRAY), TRUE);
431 -lookup ($1,ARRAY));
446 -lookup ($3,ARRAY));
774 $$ = lookup($1,ARRAY);
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
array.h 28 #ifndef ARRAY
30 /* also creates an array called "name"s in current scope */
31 #define ARRAY(type, name) \
41 /* check the array is big enough - if not, expand it by explicit amount */
61 /* check the array is big enough - if not, expand it (size * 2) + 10 */
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
lbound-ubound.F90 16 #define DO_TEST(ARRAY) \
17 call do_test (lbound (ARRAY), ubound (ARRAY))
41 integer, dimension (2:10,1:9), target :: array variable in program:test
61 ! allocate an array with ranges outside the 4 byte integer range.
90 pointer1d => array (3, 2:5)
104 DO_TEST (array)
108 ! DO_TEST (array (3, 2:5))
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
lbound-ubound.F90 16 #define DO_TEST(ARRAY) \
17 call do_test (lbound (ARRAY), ubound (ARRAY))
41 integer, dimension (2:10,1:9), target :: array variable in program:test
61 ! allocate an array with ranges outside the 4 byte integer range.
90 pointer1d => array (3, 2:5)
104 DO_TEST (array)
108 ! DO_TEST (array (3, 2:5))
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
general.h 605 * Determines the size of an array's element type.
607 * @param ARRAY
608 * The array.
610 #define mdns_sizeof_element(ARRAY) sizeof(ARRAY[0])
626 * Determines the number of elements in an array.
628 * @param ARRAY
629 * The array.
631 #define mdns_countof(ARRAY) (sizeof(ARRAY) / mdns_sizeof_element(ARRAY)
    [all...]
  /src/usr.bin/xlint/common/
inittyp.c 123 typeinfo("array", ARRAY, ARRAY, 0, 0, ' '),
lint.h 93 ARRAY, /* array */
  /src/external/bsd/flex/dist/examples/manual/
pascal.lex 56 array return(ARRAY);
  /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/Test/
Utils.pm 55 =item B<alldisabled ARRAY>
57 =item B<anydisabled ARRAY>
59 In an array context returns an array with each element set to 1 if the
63 ARRAY are disabled, while anydisabled returns 1 if any of them are
  /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Test/
Utils.pm 55 =item B<alldisabled ARRAY>
57 =item B<anydisabled ARRAY>
59 In an array context returns an array with each element set to 1 if the
63 ARRAY are disabled, while anydisabled returns 1 if any of them are
  /src/crypto/external/bsd/openssl.old/dist/util/perl/OpenSSL/Test/
Utils.pm 55 =item B<alldisabled ARRAY>
56 =item B<anydisabled ARRAY>
58 In an array context returns an array with each element set to 1 if the
62 ARRAY are disabled, while anydisabled returns 1 if any of them are
  /src/bin/ksh/
table.h 24 int index; /* index for an array */
30 struct tbl *array; /* array values */ member in union:tbl::__anon21
48 #define ARRAY BIT(13) /* array */
68 * should be reported by set/typeset). Does not include ARRAY or LOCAL.
92 #define AF_ARGV_ALLOC 0x1 /* argv[] array allocated */
  /src/external/historical/nawk/dist/
maketab.c 56 { ARRAY, "array", NULL },
  /src/usr.bin/xlint/lint1/
init.c 117 * The maximum subscript that has ever been seen for an array of
160 if (!(ltp != NULL && ltp->t_tspec == ARRAY && rn->tn_op == STRING))
197 debug_step("completed array type is '%s'", type_name(sym->s_type));
296 case ARRAY:
398 } else if (tp->t_tspec == ARRAY)
493 case ARRAY:
518 lint_assert(tp->t_tspec == ARRAY);
520 /* too many array initializers, expected %d */
579 if (is_struct_or_union(ltp->t_tspec) || ltp->t_tspec == ARRAY) {
717 /* prevent "empty array declaration for '%s' [190]" *
    [all...]
  /src/sys/external/bsd/common/include/linux/
kernel.h 136 #define ARRAY_SIZE(ARRAY) __arraycount(ARRAY)

Completed in 29 milliseconds

1 2 3 4