Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libshell/common/include/
H A Dname.h62 #define ARRAY_MAX (1L<<ARRAY_BITS) /* maximum number of elements in an array */
67 #define ARRAY_FILL (8L<<ARRAY_BITS) /* used with nv_putsub() */
68 #define ARRAY_NOCLONE (16L<<ARRAY_BITS) /* do not clone array disc */
69 #define ARRAY_NOCHILD (32L<<ARRAY_BITS) /* skip compound arrays */
70 #define ARRAY_SETSUB (64L<<ARRAY_BITS) /* set subscript */
71 #define ARRAY_NOSCOPE (128L<<ARRAY_BITS) /* top level scope only */
72 #define ARRAY_TREE (256L<<ARRAY_BITS) /* arrays of compound vars */
H A Dnval.h222 #define ARRAY_BITS 22 macro
223 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
224 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
225 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/titanic_50/usr/src/lib/libshell/i386/include/ast/
H A Dnval.h231 #define ARRAY_BITS 22 macro
232 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
233 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
234 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/titanic_50/usr/src/lib/libshell/sparc/include/ast/
H A Dnval.h231 #define ARRAY_BITS 22 macro
232 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
233 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
234 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/titanic_50/usr/src/lib/libshell/sparcv9/include/ast/
H A Dnval.h231 #define ARRAY_BITS 22 macro
232 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
233 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
234 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/titanic_50/usr/src/lib/libshell/amd64/include/ast/
H A Dnval.h231 #define ARRAY_BITS 22 macro
232 #define ARRAY_ADD (1L<<ARRAY_BITS) /* add subscript if not found */
233 #define ARRAY_SCAN (2L<<ARRAY_BITS) /* For ${array[@]} */
234 #define ARRAY_UNDEF (4L<<ARRAY_BITS) /* For ${array} */
/titanic_50/usr/src/lib/libshell/common/bltins/
H A Denum.c225 …RNAME|NV_NOADD)) || !(ap=nv_arrayptr(np)) || ap->fun || (sz=ap->nelem&(((1L<<ARRAY_BITS)-1))) < 2) in enum_create()