| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/container/ |
| H A D | array.d | 145 Array!size_t ary; 147 assert(ary[] == []); 148 ary.insertBack(5); 149 assert(ary[] == [5]); 150 assert(ary[$-1] == 5); 151 ary.popBack(); 152 assert(ary[] == []); 153 ary.insertBack(0); 154 ary.insertBack(1); 155 assert(ary[] == [0, 1]); [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/container/ |
| H A D | array.d | 145 Array!size_t ary; 147 assert(ary[] == []); 148 ary.insertBack(5); 149 assert(ary[] == [5]); 150 assert(ary[$-1] == 5); 151 ary.popBack(); 152 assert(ary[] == []); 153 ary.insertBack(0); 154 ary.insertBack(1); 155 assert(ary[] == [0, 1]); [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libcpp/ |
| H A D | mkdeps.c | 40 T *ary; 46 : ary (NULL), num (0), alloc (0) in vec() 50 XDELETEVEC (ary); in ~vec() 60 return ary[ix]; 64 return ary[ix]; 71 ary = XRESIZEVEC (T, ary, alloc); in push() 73 ary[num++] = elt; in push()
|
| /netbsd-src/external/gpl3/gcc/dist/libcpp/ |
| H A D | mkdeps.cc | 41 T *ary; member in mkdeps::vec 47 : ary (NULL), num (0), alloc (0) in vec() 51 XDELETEVEC (ary); in ~vec() 61 return ary[ix]; in operator []() 65 return ary[ix]; in operator []() 72 ary = XRESIZEVEC (T, ary, alloc); in push() 74 ary[num++] = elt; in push()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/i386/ |
| H A D | local2.c | 938 outfargs(struct interpass *ip, NODE **ary, int num, int *cwp, int c) in outfargs() argument 949 q = ary[i]->n_left; in outfargs() 951 ary[i]->n_left = tcopy(r); in outfargs() 957 infargs(struct interpass *ip, NODE **ary, int num, int *cwp, int c) in infargs() argument 968 q = ary[i]->n_left; in infargs() 972 ary[i]->n_left = tcopy(r); in infargs() 985 NODE *w, **ary; in fixxfloat() local 995 ary = tmpcalloc(nn * sizeof(NODE *)); in fixxfloat() 998 ary[i] = w->n_right; in fixxfloat() 999 cwp[i] = xasmcode(ary[i]->n_name); in fixxfloat() [all …]
|
| H A D | macdefs.h | 343 #define XASM_TARGARG(w, ary) \ argument 345 w++, targarg(w, ary), 1 : 0)
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/i86/ |
| H A D | local2.c | 958 outfargs(struct interpass *ip, NODE **ary, int num, int *cwp, int c) in outfargs() argument 969 q = ary[i]->n_left; in outfargs() 971 ary[i]->n_left = tcopy(r); in outfargs() 977 infargs(struct interpass *ip, NODE **ary, int num, int *cwp, int c) in infargs() argument 988 q = ary[i]->n_left; in infargs() 992 ary[i]->n_left = tcopy(r); in infargs() 1005 NODE *w, **ary; in fixxfloat() local 1015 ary = tmpcalloc(nn * sizeof(NODE *)); in fixxfloat() 1018 ary[i] = w->n_right; in fixxfloat() 1019 cwp[i] = xasmcode(ary[i]->n_name); in fixxfloat() [all …]
|
| H A D | macdefs.h | 324 #define XASM_TARGARG(w, ary) \ argument 326 w++, targarg(w, ary), 1 : 0)
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/c/ |
| H A D | c-fold.c | 63 c_fold_array_ref (tree type, tree ary, tree index) in c_fold_array_ref() argument 65 if (TREE_CODE (ary) != STRING_CST in c_fold_array_ref() 68 || TREE_CODE (TREE_TYPE (ary)) != ARRAY_TYPE in c_fold_array_ref() 72 tree elem_type = TREE_TYPE (TREE_TYPE (ary)); in c_fold_array_ref() 75 unsigned len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars; in c_fold_array_ref() 76 tree nelts = array_type_nelts (TREE_TYPE (ary)); in c_fold_array_ref() 86 return build_int_cst (type, TREE_STRING_POINTER (ary)[i]); in c_fold_array_ref() 89 = ((const unsigned char *)TREE_STRING_POINTER (ary) + i * elem_nchars); in c_fold_array_ref()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/c/ |
| H A D | c-fold.cc | 63 c_fold_array_ref (tree type, tree ary, tree index) in c_fold_array_ref() argument 65 if (TREE_CODE (ary) != STRING_CST in c_fold_array_ref() 68 || TREE_CODE (TREE_TYPE (ary)) != ARRAY_TYPE in c_fold_array_ref() 72 tree elem_type = TREE_TYPE (TREE_TYPE (ary)); in c_fold_array_ref() 75 unsigned len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars; in c_fold_array_ref() 76 tree nelts = array_type_nelts (TREE_TYPE (ary)); in c_fold_array_ref() 86 return build_int_cst (type, TREE_STRING_POINTER (ary)[i]); in c_fold_array_ref() 89 = ((const unsigned char *)TREE_STRING_POINTER (ary) + i * elem_nchars); in c_fold_array_ref()
|
| /netbsd-src/sys/arch/hpcsh/dev/ |
| H A D | j6x0lcd.c | 48 #define arraysize(ary) (sizeof(ary) / sizeof(ary[0])) argument
|
| /netbsd-src/sys/arch/hpcarm/dev/ |
| H A D | j720pwr.c | 62 #define arraysize(ary) (sizeof(ary) / sizeof(ary[0])) argument
|
| H A D | j720tp.c | 71 #define arraysize(ary) (sizeof(ary) / sizeof(ary[0])) argument
|
| /netbsd-src/external/bsd/bc/dist/ |
| H A D | storage.c | 41 static bc_array *copy_array (bc_array *ary); 980 copy_array (bc_array *ary) in copy_array() argument 983 res->a_depth = ary->a_depth; in copy_array() 984 res->a_tree = copy_tree (ary->a_tree, ary->a_depth); in copy_array()
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/m68k/ |
| H A D | macdefs.h | 250 #define XASM_TARGARG(w, ary) (w[1] == 'b' ? w++, 0 : targarg(w, ary)) argument
|
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/amd64/ |
| H A D | macdefs.h | 258 #define XASM_TARGARG(w, ary) \ argument 260 w[1] == 'q' ? w++, targarg(w, ary, n), 1 : 0)
|
| H A D | local2.c | 1144 NODE **ary = arg; in targarg() local 1150 p = ary[(int)w[1]-'0' - 1]; /* XXX */ in targarg() 1152 p = ary[(int)w[1]-'0']; in targarg()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
| H A D | constexpr.c | 47 static HOST_WIDE_INT find_array_ctor_elt (tree ary, tree dindex, 3194 find_array_ctor_elt (tree ary, tree dindex, bool insert) in find_array_ctor_elt() argument 3200 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ary); in find_array_ctor_elt() 3281 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle, e); in find_array_ctor_elt() 3297 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle + 1, e); in find_array_ctor_elt() 3307 vec_safe_insert (CONSTRUCTOR_ELTS (ary), end, e); in find_array_ctor_elt() 3508 tree ary = TREE_OPERAND (t, 0); in eval_and_check_array_index() local 3517 diag_array_subscript (loc, ctx, ary, index); in eval_and_check_array_index() 3522 tree nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary), non_constant_p, in eval_and_check_array_index() 3529 diag_array_subscript (loc, ctx, ary, index); in eval_and_check_array_index() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | constexpr.cc | 50 static HOST_WIDE_INT find_array_ctor_elt (tree ary, tree dindex, 3573 find_array_ctor_elt (tree ary, tree dindex, bool insert) in find_array_ctor_elt() argument 3579 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ary); in find_array_ctor_elt() 3660 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle, e); in find_array_ctor_elt() 3676 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle + 1, e); in find_array_ctor_elt() 3686 vec_safe_insert (CONSTRUCTOR_ELTS (ary), end, e); in find_array_ctor_elt() 3889 tree ary = TREE_OPERAND (t, 0); in eval_and_check_array_index() local 3898 diag_array_subscript (loc, ctx, ary, index); in eval_and_check_array_index() 3903 tree nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary), non_constant_p, in eval_and_check_array_index() 3910 diag_array_subscript (loc, ctx, ary, index); in eval_and_check_array_index() [all …]
|
| /netbsd-src/usr.bin/spell/spell/ |
| H A D | special.math | 16 ary
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/ |
| H A D | texi2html | 1150 local($index, *ary, @keys, $key, $letter, $last_letter, @refs); 1156 eval("*ary = *$index"); 1157 @keys = keys(%ary); 1192 foreach (split(/$;/, $ary{$key})) {
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/ |
| H A D | texi2html | 1150 local($index, *ary, @keys, $key, $letter, $last_letter, @refs); 1156 eval("*ary = *$index"); 1157 @keys = keys(%ary); 1192 foreach (split(/$;/, $ary{$key})) {
|
| /netbsd-src/external/gpl2/groff/dist/tmac/ |
| H A D | hyphenex.us | 38 an-ti-rev-o-lu-tion-ary 308 itin-er-ary 567 qua-si-sta-tion-ary 813 Feb-ru-ary 828 Jan-u-ary
|
| /netbsd-src/external/bsd/pcc/dist/pcc/f77/f77/ |
| H A D | f77.c | 128 addarg(char **ary, int *num, char *arg) in addarg() argument 130 ary[(*num)++] = arg; in addarg()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/ |
| H A D | operations.d | 448 bool contains(T)(const scope T[] ary, const scope T[] vals...) in contains() 450 foreach (v1; ary) in contains()
|