Searched defs:save (Results 1 - 25 of 34) sorted by relevance

12

/ast/src/cmd/3d/
H A Dmkdir3d.c97 Path_t save; local
106 save = state.path;
110 state.path = save;
114 state.path = save;
H A Dopen3d.c171 Path_t save; local
173 save = state.path;
179 state.path = save;
187 state.path = save;
190 state.path = save;
193 state.path = save;
326 * to save and restore the path state
333 Path_t save; local
335 save = state.path;
337 state.path = save;
[all...]
/ast/src/cmd/ksh93/sh/
H A Dfcin.c43 Fcin_t save; local
47 fcsave(&save);
50 fcrestore(&save);
58 fcrestore(&save);
H A Ddeparse.c78 int save = end_line; local
356 end_line = save;
H A Dmain.c615 register char save; local
629 save = *sp;
660 /* save and restore $_ */
661 char *save = shp->lastarg; local
664 shp->lastarg = save;
681 *sp++ = save;
684 while(save);
H A Dnvtree.c149 struct nvdir *save, *dp = new_of(struct nvdir,len+1); local
234 if(!(save = new_of(struct nvdir,0)))
236 *save = *dp;
237 dp->prev = save;
276 register struct nvdir *save, *dp = (struct nvdir*)dir; local
327 for(save=dp; save; save=save->prev)
329 if(save
[all...]
H A Dsubshell.c72 struct Link *svar; /* save shell variable table */
81 Shopt_t options;/* save shell options */
86 void *jobs; /* save job info */
124 /* save file descriptor 1 if open */
250 int save; local
254 /* don't bother to save if in newer scope */
298 save = shp->subshell;
304 shp->subshell = save;
315 const char *save = sp->shpwd; local
318 sp->shpwd = 0; /* make sure sh_assignok doesn't save wit
[all...]
H A Dlex.c1562 struct lexstate save; local
1563 save = lp->lex;
1684 lp->lex = save;
H A Dnvtype.c370 int save, offset=staktell(); local
431 save = fp->nofree;
434 fp->nofree = save;
1062 /* need to save the string pointer */
H A Dpath.c118 /* system call so we can save us to call access(2) first */
333 char save[8]; local
343 memcpy((void*)save, (void*)stakptr(PATH_OFFSET+pcomp.len),sizeof(save));
346 memcpy((void*)stakptr(PATH_OFFSET+pcomp.len),(void*)save,sizeof(save));
1056 /* save original pathname */
1068 char save[PATH_MAX+1]; local
1080 memcpy(save, path, r);
1094 memcpy(path, save,
[all...]
/ast/src/lib/libast/misc/
H A Dprocopen.c121 short save; member in struct:Mod_s
156 * do modification op and save previous state for restore()
262 if ((m->save = fcntl(arg2, F_dupfd_cloexec, 3)) < 0)
268 fcntl(m->save, F_SETFD, FD_CLOEXEC);
292 m->save = (short)arg1;
297 m->save = (short)arg1;
303 if ((m->save = (short)umask(arg1)) == arg1)
359 fcntl(m->save, F_DUPFD, m->arg.fd.child.fd);
360 close(m->save);
369 signal(m->save,
[all...]
/ast/src/lib/libexpr/
H A Dexeval.c552 Extype_t save[FRAME]; local
758 save[n] = a->data.operand.left->data.variable.symbol->value->data.constant.value;
765 for (n = 0, a = expr->data.call.procedure->value->data.procedure.args; a && n < elementsof(save); a = a->data.operand.right)
772 for (n = 0, a = expr->data.call.procedure->value->data.procedure.args; a && n < elementsof(save); a = a->data.operand.right)
773 a->data.operand.left->data.variable.symbol->value->data.constant.value = save[n++];
/ast/src/cmd/sortlib/glean/
H A Dglean.c115 save(Vmalloc_t* vm, register Data_t* p, void* data, size_t len) function
122 error(ERROR_SYSTEM|2, "out of space [save]");
215 if (save(state->vm, &state->key, 0, k))
248 else if (save(state->vm, &p->lim[f->index], t.data, t.len))
252 else if (save(state->vm, &f->absolute, r->data, r->datalen))
/ast/src/cmd/sortlib/sync/
H A Dsync.c157 Ssfile_t* save; local
255 save = 0;
265 else if (fp->save)
266 save = fp;
268 if (save && !hit && sswrite(ss, save, (char*)rp->data, rp->datalen) < 0)
H A Dss.h150 unsigned char save; /* include if omitted by others */ member in struct:Ssfile_s
/ast/src/cmd/dsslib/bgp/
H A Dbgp.c525 void* save; local
528 save = DSSRECORD(data)->data;
531 DSSRECORD(data)->data = save;
/ast/src/lib/libvcodex/Vcdelta/
H A Dvcdhdr.h82 Vcdsave_t* save; /* saved instruction */ member in struct:_vcdiff_s
97 (vcd)->save = NIL(Vcdsave_t*), \
H A Dvcdelta.c113 Vcdsave_t* sav = vcd->save;
141 sav->dtsz = cz; /* save current COPY instruction */
159 Vcdsave_t* sav = vcd->save;
182 sav->dtsz = az; /* save current ADD instruction */
260 Vcdsave_t save; local
285 vcd->save = &save; save.dtsz = save.addr = save
[all...]
/ast/src/lib/libcodex/
H A Dcodex.c404 save(Codexcache_t* cache, Codex_t* code, const char* name, int namelen, Codexnum_t flags) function
590 save(cache, CODEXERROR, name, namelen, deen);
611 save(cache, code, name, namelen, deen);
/ast/src/cmd/mailx/
H A Dcmd2.c291 note(0, "%s: cannot save to file", file);
352 save(char* str) function
/ast/src/cmd/coshell/
H A Dmisc.c85 * save string s length n into p
619 static String_t save; local
621 p->access = savestring(&save, v, n);
640 static String_t save; local
642 p->bypass = savestring(&save, v, n);
665 static String_t save; local
668 p->global.file = savestring(&save, v, n);
681 static String_t save; local
686 if (p->global.identify = savestring(&save, v, n))
726 static String_t save; local
775 static String_t save; local
792 static String_t save; local
804 static String_t save; local
820 static String_t save; local
[all...]
/ast/src/lib/libtksh/src/
H A Dvar.c651 Fcin_t save; local
678 fcsave(&save);
684 fcrestore(&save);
/ast/src/lib/libtksh/tcl/
H A Dregexp.c950 register char *save; local
954 save = restate->reginput;
962 restate->regstartp[no] = save;
979 register char *save; local
983 save = restate->reginput;
992 restate->regendp[no] = save;
999 register char *save; local
1005 save = restate->reginput;
1008 restate->reginput = save;
1019 register char *save; local
[all...]
/ast/src/lib/libast/regex/
H A Dregnexec.c234 regmatch_t save[1]; member in struct:__anon306
238 #define matchcopy(e,x) do if ((x)->re.group.number) { Match_frame_t* fp = (void*)stkframe(stkstd)->data; memcpy(fp->match, fp->save, fp->size); } while (0)
239 #define matchpop(e,x) do if ((x)->re.group.number) { Match_frame_t* fp = (void*)stkframe(stkstd)->data; memcpy(fp->match, fp->save, fp->size); stkpop(stkstd); } while (0)
266 s = f->save;
/ast/src/cmd/dsslib/xml/
H A Dxml.c84 int save; /* real char at *f->end */ member in struct:File_s
231 f->prv[n-1] = f->save;
239 c = f->save;
241 f->save = *f->end;
568 f->save = *end;

Completed in 56 milliseconds

12