/ast/src/lib/libpp/ |
H A D | ppincref.c | 32 ppincref(char* parent, char* file, int line, int type) argument 37 NoP(parent);
|
/ast/src/cmd/pack/ |
H A D | huffinit.c | 51 int parent[2*END+1]; local 84 parent[i] = 0; 98 parent[heap[1].node] = ++lastnode; 103 parent[heap[1].node] = lastnode; 108 parent[lastnode] = 0; 116 for(n=parent[i]; n!=0; n=parent[n])
|
/ast/src/lib/libast/disc/ |
H A D | sfdcsubstr.c | 35 Sfio_t* parent; /* parent stream */ member in struct:_subfile_s 53 reg Sfoff_t here, parent; local 64 /* save current location in parent stream */ 65 parent = sfsk(f,(Sfoff_t)0,SEEK_CUR,disc); 79 /* restore parent current position */ 80 sfsk(f,parent,SEEK_SET,disc); 122 reg Sfoff_t here, parent; local 138 { parent = sfsk(f,(Sfoff_t)0,SEEK_CUR,disc); 142 sfsk(f,parent,SEEK_SE 172 sfdcsubstream(Sfio_t* f, Sfio_t* parent, Sfoff_t offset, Sfoff_t extent) argument [all...] |
/ast/src/cmd/tests/sfio/ |
H A D | tmprdwr.c | 117 int parent[2], child[2]; local 121 if(pipe(parent) < 0 || pipe(child) < 0) 134 disc.send = parent[1]; 144 close(child[0]); close(parent[1]); 145 writeprocess(child[1], parent[0], fw); 148 close(child[1]); close(parent[0]);
|
/ast/src/lib/libbz/ |
H A D | huffman.c | 118 Int32 parent [ BZ_MAX_ALPHA_SIZE * 2 ]; local 130 parent[0] = -2; 133 parent[i] = -1; 145 parent[n1] = parent[n2] = nNodes; 147 parent[nNodes] = -1; 159 while (parent[k] >= 0) { k = parent[k]; j++; }
|
/ast/src/lib/libtk/generic/ |
H A D | tkCanvWind.c | 311 Tk_Window ancestor, parent; 314 * Make sure that the canvas is either the parent of the 316 * parent. Also, don't allow a top-level window to be 320 parent = Tk_Parent(winItemPtr->tkwin); 323 if (ancestor == parent) { 550 * on whether the canvas is the window's parent). 308 Tk_Window ancestor, parent; local
|
H A D | tkGeometry.c | 28 * slave's parent. */ 234 * geometry for the slave into the coordinate system of the parent 237 * any of its ancestors up to the slave's parent) is mapped, unmapped, 258 * of slave's parent. */ 266 Tk_Window ancestor, parent; 278 parent = Tk_Parent(slave); 311 * the windows between master and slave's parent (including master 312 * but not slave's parent). There may already be handlers for master 316 for (ancestor = master; ancestor != parent; 337 if (!Tk_IsMapped(ancestor) && (ancestor != parent)) { 262 Tk_Window ancestor, parent; local 551 Tk_Window ancestor, parent; local [all...] |
H A D | tkTextWind.c | 359 Tk_Window ancestor, parent; 362 * Make sure that the text is either the parent of the 363 * embedded window or a descendant of that parent. Also, 368 parent = Tk_Parent(ewPtr->body.ew.tkwin); 371 if (ancestor == parent) { 357 Tk_Window ancestor, parent; local
|
H A D | tkPack.c | 36 * parent. List is priority-ordered: 41 Side side; /* Side of parent against which 56 * must be repacked within its parent. */ 79 * extra space in the parent window. 517 ClientData clientData; /* Structure describing parent whose slaves 525 * the middle of the parent window. */ 531 int intBWidth; /* Width of internal border in parent window, 541 * If the parent has no slaves anymore, then don't do anything 542 * at all: just leave the parent's size as-is. 612 * If the total amount of space needed in the parent windo 1022 Tk_Window tkwin, ancestor, parent; local 1420 Tk_Window other, slave, parent, ancestor; local [all...] |
H A D | tkWindow.c | 194 Tk_Window parent, char *name, char *screenName)); 212 * Make a new window that will be at top-level (its parent will 230 CreateTopLevelWindow(interp, parent, name, screenName) 232 Tk_Window parent; /* Token for logical parent of new window 235 char *name; /* Name for new window; if parent is 236 * non-NULL, must be unique among parent's 241 * use parent's screen, or DISPLAY if no 242 * parent. */ 276 if ((parent ! 885 Tk_Window parent; local 1253 Window parent; local [all...] |
H A D | tkGrid.c | 132 * parent. */ 134 * parent. */ 154 * parent. List order doesn't matter. */ 175 * must be re-arranged within its parent. */ 486 int x, y; /* Offset in pixels, from edge of parent. */ 959 * If all the weights are zero, center the layout in its parent if 1163 ClientData clientData; /* Structure describing parent whose slaves 1176 * If the parent has no slaves anymore, then don't do anything 1177 * at all: just leave the parent's size as-is. Otherwise there is 1178 * no way to "relinquish" control over the parent s 2095 Tk_Window other, slave, parent, ancestor; local [all...] |
/ast/src/lib/libast/misc/ |
H A D | procopen.c | 128 Fd_t parent; member in struct:Mod_s::__anon290::__anon291 255 m->arg.fd.parent.fd = (short)arg1; 256 m->arg.fd.parent.flag = fcntl(arg1, F_GETFD, 0); 278 if (m->arg.fd.parent.flag) 282 else if (!m->arg.fd.parent.flag) 346 close(m->arg.fd.parent.fd); 347 if (m->arg.fd.child.fd != m->arg.fd.parent.fd && m->arg.fd.child.fd != PROC_ARG_NULL) 353 close(m->arg.fd.parent.fd); 354 fcntl(m->arg.fd.child.fd, F_DUPFD, m->arg.fd.parent.fd); 356 fcntl(m->arg.fd.parent [all...] |
H A D | fts.c | 46 FTSENT* parent; /* top parent */ \ 58 FTSENT* pwd; /* pwd parent */ \ 87 FTSENT* pwd; /* pwd parent */ \ 177 node(FTS* fts, FTSENT* parent, register char* name, register size_t namelen) argument 201 f->fts_level = (f->fts_parent = parent)->fts_level + 1; 435 * set to parent dir 612 if (!(f = node(fts, fts->parent, path, strlen(path)))) 782 fts->parent = (FTSENT*)(fts + 1); 783 fts->parent [all...] |
/ast/src/lib/libmam/ |
H A D | mam.h | 104 struct proc* parent; /* parent proc */ member in struct:proc
|
/ast/src/cmd/ksh93/include/ |
H A D | jobs.h | 102 pid_t parent; /* set by fork() */ member in struct:jobs
|
/ast/src/cmd/nmake/ |
H A D | make.c | 331 Rule_t* parent; local 352 * r->use rules modify the parent 461 frame.parent = state.frame; 462 parent = frame.parent->target; 505 else if (!(r->dynamic & D_triggered) && parent->scan == SCAN_IGNORE && (r0 || (r0 = staterule(RULE, r, NiL, 0))) && tevent < r0->time) 508 PREVIEW(parent, r); 571 fp->parent = state.frame; 633 if (!state.intermediate && !r->time && r0->time && r0->event && (r0->dynamic & D_built) && !(parent->property & P_state) && (r2 = staterule(RULE, parent, Ni [all...] |
/ast/src/lib/libdss/ |
H A D | cxcomp.c | 1962 defaults(register Cxcompile_t* cc, register Cxexpr_t* expr, Cxexpr_t* parent, Sfio_t* op) argument 1973 expr->parent = parent; 1979 defaults(cc, expr->group, parent, expr->op);
|
/ast/src/cmd/jcl/ |
H A D | cpy2dss.c | 108 Cpyfield_t* parent; member in struct:Cpyfield_s 634 Cpyfield_t* parent; local 656 parent = field; 667 if (!member && (i = strlen(parent->name)) && !memcmp(parent->name, next->name, i) && strmatch(next->name + i, "?(_)(siz|SIZ|LEN|len)*")) 669 parent = next; 729 parent = 0; 751 parent->total = offset - parent->offset; 752 if (parent [all...] |
/ast/src/lib/libast/port/ |
H A D | astlicense.c | 157 KEY("parent"), 431 push(Stack_t* sp, char* file, char* parent, char* info, int size, Buffer_t* buf) argument 446 if (*file != '/' && parent && (s = strrchr(parent, '/'))) 448 n = s - parent + 1; 451 memcpy(path, parent, n);
|
/ast/src/cmd/ksh93/sh/ |
H A D | jobs.c | 498 * an interrupt, propogate to parent shell 1532 if(pw->p_pgrp && job.parent!= (pid_t)-1) 1642 /* propogate keyboard interrupts to parent */ 1648 job.parent = 0; 2035 void job_fork(pid_t parent) argument 2038 sfprintf(sfstderr,"ksh: job line %4d: fork pid=%d critical=%d parent=%d\n",__LINE__,getpid(),job.in_critical,parent); 2040 switch (parent) 2053 job_chksave(parent);
|
H A D | nvdisc.c | 1271 Namval_t *parent; member in struct:table 1301 ntp->parent = nv_lastdict(); 1404 return(tp->parent); 1458 tp->parent = pp;
|
H A D | nvtype.c | 84 Namval_t *parent; member in struct:Namtype 394 dp->parent = nv_lastdict(); 396 dp->parent = mp; 504 return(dp->parent); 533 sh.last_table = dp->parent; 938 pp->parent = nv_lastdict();
|
H A D | parse.c | 110 unsigned long parent=lexp->script; local 113 parent = lexp->current; 148 parent=kiaentity(lexp,sh_argstr(cmd),-1,'p',-1,-1,lexp->unknown,'b',0,""); 157 r=kiaentity(lexp,argp->argval,n,type,line,eline,parent,justify,width,atbuff); 242 * Make a parent node for fork() or io-redirection 2020 unsigned long kiaentity(Lex_t *lexp,const char *name,int len,int type,int first,int last,unsigned long parent, int pkind, int width, const char *attr) argument 2045 sfprintf(lexp->kiafile,"%..64d;%c;%.*s;%d;%d;%..64d;%..64d;%c;%d;%s\n",np->hash,type,len,name,first,last,parent,lexp->fscript,pkind,width,attr); 2047 sfprintf(lexp->kiafile,"%..64d;%c;%s;%d;%d;%..64d;%..64d;%c;%d;%s\n",np->hash,type,name,first,last,parent,lexp->fscript,pkind,width,attr);
|
/ast/src/cmd/kshlib/dss/ |
H A D | dss.c | 76 Namval_t *parent; member in struct:Namtype 111 struct parent struct 134 struct parent *dp = (struct parent*)nv_hasdisc(bp->vnode,&parent_disc); 256 struct parent *pp = (struct parent*)cp->ptype; 294 struct parent *dp = (struct parent*)pp->ptype; 355 struct parent *dp = (struct parent*)p 1154 Namval_t *parent = nv_lastdict(); local [all...] |
/ast/src/cmd/codexlib/lzh/ |
H A D | lzh.c | 86 short parent[TREESIZE]; member in struct:State_s 476 state->parent[j] = state->parent[j - 1] = i; 503 state->parent[r] = state->parent[r - 1] = q; 507 state->parent[s] = state->parent[s - 1] = p; 519 return state->parent[p]; 526 return state->parent[p]; 582 state->parent[ [all...] |