Home
last modified time | relevance | path

Searched refs:ARRAY_FILL (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Darray.c1035 nv_putsub(np, NIL(char*), ARRAY_FILL); in nv_arraychild()
1202 if(size==0 && !(mode&ARRAY_FILL)) in nv_putsub()
1229 if(mode&(ARRAY_FILL|ARRAY_ADD)) in nv_putsub()
1327 if(!(mode&ARRAY_FILL)) in nv_putsub()
1550 nv_putsub(np, sp, ((mode&NV_ADD)?ARRAY_ADD:0)|(cp[1]&&(mode&NV_ADD)?ARRAY_FILL:mode&ARRAY_FILL)); in nv_endsubscript()
1839 nv_putsub(np,NIL(char*),(long)argc+arg0|ARRAY_FILL|ARRAY_ADD); in nv_setvec()
H A Dname.c567 nv_putsub(np,(char*)0,ARRAY_ADD|ARRAY_FILL|sub); in nv_setlist()
1080 n |= ARRAY_FILL; in nv_create()
1097 …if((c = *cp)=='.' || (c=='[' && nv_isarray(np)) || (n&ARRAY_FILL) || ((ap || (flags&NV_ASSIGN)) &&… in nv_create()
1174 nv_putsub(np,sub,ARRAY_FILL); in nv_create()
3441 nv_putsub(nq,"1",ARRAY_FILL); in nv_setref()
3475 nv_putsub(nr, ep, ARRAY_FILL); in nv_setref()
H A Dinit.c803 nv_putsub(SH_MATCHNOD, NIL(char*), (nmatch-1)|ARRAY_FILL|ARRAY_SETSUB); in sh_setmatch()
827 nv_putsub(np, NIL(char*), index|ARRAY_FILL|ARRAY_SETSUB); in sh_setmatch()
H A Dnvtype.c1350 nv_putsub(np,"0",ARRAY_FILL); in nv_settype()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/include/
H A Dname.h68 #define ARRAY_FILL (8L<<ARRAY_BITS) /* used with nv_putsub() */ macro