Home
last modified time | relevance | path

Searched refs:ARRAY_BITS (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/include/
H A Dname.h63 #define ARRAY_MAX (1L<<ARRAY_BITS) /* maximum number of elements in an array */
68 #define ARRAY_FILL (8L<<ARRAY_BITS) /* used with nv_putsub() */
69 #define ARRAY_NOCLONE (16L<<ARRAY_BITS) /* do not clone array disc */
70 #define ARRAY_NOCHILD (32L<<ARRAY_BITS) /* skip compound arrays */
71 #define ARRAY_SETSUB (64L<<ARRAY_BITS) /* set subscript */
72 #define ARRAY_NOSCOPE (128L<<ARRAY_BITS) /* top level scope only */
73 #define ARRAY_TREE (256L<<ARRAY_BITS) /* arrays of compound vars */
H A Dnval.h233 #define ARRAY_BITS 22 macro
234 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
235 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
236 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/bltins/
H A Denum.c226 …RNAME|NV_NOADD)) || !(ap=nv_arrayptr(np)) || ap->fun || (sz=ap->nelem&(((1L<<ARRAY_BITS)-1))) < 2) in enum_create()