| /titanic_53/usr/src/contrib/ast/src/lib/libast/include/ |
| H A D | stak.h | 37 #define staksp stkstd 40 #define stakptr(n) stkptr(stkstd,n) 41 #define staktell() stktell(stkstd) 42 #define stakputc(c) sfputc(stkstd,(c)) 43 #define stakwrite(b,n) sfwrite(stkstd,(b),(n)) 44 #define stakputs(s) (sfputr(stkstd,(s),0),--stkstd->_next) 45 #define stakseek(n) stkseek(stkstd,n) 50 #define stakalloc(n) stkalloc(stkstd,n) 51 #define stakcopy(s) stkcopy(stkstd,s) 52 #define stakset(c,n) stkset(stkstd,c,n) [all …]
|
| H A D | stk.h | 38 #define stkstd (&_Stk_data) macro
|
| /titanic_53/usr/src/contrib/ast/src/lib/libast/misc/ |
| H A D | error.c | 434 bas = stkptr(stkstd, 0); in errorv() 435 if (off = stktell(stkstd)) in errorv() 436 stkfreeze(stkstd, 0); in errorv() 439 sfprintf(stkstd, "%s: ", error_state.prefix); in errorv() 443 sfprintf(stkstd, " "); in errorv() 445 sfprintf(stkstd, "%s: ", ERROR_translate(NiL, NiL, ast.id, "Usage")); in errorv() 447 print(stkstd, file, " "); in errorv() 454 context(stkstd, CONTEXT(error_info.flags, error_info.context)); in errorv() 456 print(stkstd, file, (flags & ERROR_LIBRARY) ? " " : ": "); in errorv() 459 sfprintf(stkstd, "["); in errorv() [all …]
|
| H A D | stk.c | 89 #define stream2stk(stream) ((stream)==stkstd? stkcur:\ 158 if(stream==stkstd) in stkexcept() 193 if(stream!=stkstd) in stkexcept() 195 if(!stkgrow(stkstd,size-(stkstd->_endb-stkstd->_data))) in stkexcept() 279 while(sfstack(stkstd, SF_POPSTACK)); in stkinstall() 280 if(stream!=stkstd) in stkinstall() 281 sfstack(stkstd,stream); in stkinstall()
|
| /titanic_53/usr/src/contrib/ast/src/lib/libast/path/ |
| H A D | pathcd.c | 97 i = stktell(stkstd); in pathcd() 98 sfputr(stkstd, p, 0); in pathcd() 99 stkseek(stkstd, i); in pathcd() 100 p = stkptr(stkstd, i); in pathcd()
|
| /titanic_53/usr/src/contrib/ast/src/cmd/ksh93/bltins/ |
| H A D | shiocmd_solaris.c | 108 int offset = stktell(stkstd); in make_time() 113 sfprintf(stkstd,"%s.format\0",name); in make_time() 114 sfputc(stkstd,0); in make_time() 115 dp->format = nv_search(stkptr(stkstd,offset),sh.var_tree,NV_ADD); in make_time() 229 int offset = stktell(stkstd); in sh_newnode() 230 sfprintf(stkstd,"%s.%s\0",name,fp->name); in sh_newnode() 231 sfputc(stkstd,0); in sh_newnode() 232 nq = nv_search(stkptr(stkstd,offset),sh.var_tree,NV_ADD); in sh_newnode() 331 int savtop = stktell(stkstd); in walk_class() 332 char *savptr = stkfreeze(stkstd,0); in walk_class() [all …]
|
| H A D | enum.c | 229 sfprintf(stkstd,"%s.%s%c",NV_CLASS,np->nvname,0); in enum_create()
|
| H A D | print.c | 495 sfprintf(stkstd,"&#%X;",CCMAPC(c,CC_NATIVE,CC_ASCII)); in fmthtml() 505 sfprintf(stkstd,"%%%02X",CCMAPC(c,CC_NATIVE,CC_ASCII)); in fmthtml()
|
| /titanic_53/usr/src/contrib/ast/src/lib/libast/regex/ |
| H A D | regnexec.c | 238 #define matchcopy(e,x) do if ((x)->re.group.number) { Match_frame_t* fp = (void*)stkframe(stkstd)->… 239 …ber) { Match_frame_t* fp = (void*)stkframe(stkstd)->data; memcpy(fp->match, fp->save, fp->size); s… 258 if (!(f = (Match_frame_t*)stkpush(stkstd, sizeof(Match_frame_t) + (num - 1) * sizeof(regmatch_t)))) in _matchpush() 964 if (!(b = (unsigned char*)stkpush(stkstd, n))) in parse() 978 stkpop(stkstd); in parse() 981 stkpop(stkstd); in parse() 984 stkpop(stkstd); in parse() 990 stkpop(stkstd); in parse() 1110 if (!(b = (unsigned char*)stkpush(stkstd, n))) in parse() 1122 stkpop(stkstd); in parse() [all …]
|
| /titanic_53/usr/src/contrib/ast/src/cmd/ksh93/sh/ |
| H A D | xec.c | 431 int n = stktell(stkstd); in out_string() 433 if(iop==stkstd && cp==stkptr(stkstd,n)) in out_string() 435 *stkptr(stkstd,stktell(stkstd)-1) = c; in out_string() 509 Sfio_t *iop = stkstd; in sh_debug() 540 else if(iop==stkstd) in sh_debug()
|
| H A D | name.c | 565 sfprintf(stkstd,"%s[%d]",prefix?nv_name(np):cp,sub); in nv_setlist() 578 sfprintf(stkstd,"%s%s",nv_name(L_ARGNOD->nvalue.nrp->np),shp->prefix+1); in nv_setlist() 579 shp->prefix = stkfreeze(stkstd,1); in nv_setlist()
|
| H A D | nvdisc.c | 401 cp = stkcopy(stkstd,cp); in lookup()
|
| H A D | path.c | 1062 pidsize = sfprintf(stkstd,"*%d*",spawn?getpid():getppid()); in path_spawn()
|
| H A D | array.c | 898 sfprintf(stkstd,"%s.%.*s%c",NV_CLASS,n,tname,0); in nv_atypeindex()
|
| H A D | init.c | 1318 shp->stk = stkstd; in sh_init()
|
| H A D | io.c | 1135 sfprintf(stkstd,"%<#d_%d{;.tmp",getpid(),fno); in io_usename()
|
| /titanic_53/usr/src/contrib/ast/src/lib/libcmd/ |
| H A D | cp.c | 883 if (!(v = (char**)stkalloc(stkstd, (argc + 2) * sizeof(char*)))) in b_cp()
|