Searched refs:ARRAY_BITS (Results 1 – 7 of 7) sorted by relevance
62 #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 */
222 #define ARRAY_BITS 22 macro223 #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} */
231 #define ARRAY_BITS 22 macro232 #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} */
225 …RNAME|NV_NOADD)) || !(ap=nv_arrayptr(np)) || ap->fun || (sz=ap->nelem&(((1L<<ARRAY_BITS)-1))) < 2) in enum_create()