Searched defs:program (Results 1 - 6 of 6) sorted by relevance
/ast/src/lib/libexpr/ |
H A D | exopen.c | 31 * allocate a new expression program environment 37 register Expr_t* program; local 41 if (!(program = newof(0, Expr_t, 1, 0))) 43 program->symdisc.key = offsetof(Exid_t, name); 45 if (!(program->symbols = dtopen(&program->symdisc, Dtset)) || 46 !(program->tmp = sfstropen()) || 47 !(program->vm = (debug ? vmopen(Vmdcsbrk, Vmdebug, VM_DBCHECK|VM_DBABORT) : vmopen(Vmdcheap, Vmbest, 0))) || 48 !(program->ve = (debug ? vmopen(Vmdcsbrk, Vmdebug, VM_DBCHECK|VM_DBABORT) : vmopen(Vmdcheap, Vmbest, 0)))) 50 exclose(program, [all...] |
H A D | exparse.y | 47 %start program 155 program : statement_list action_list label 157 if ($1 && !(expr.program->disc->flags & EX_STRICT)) 159 if (expr.program->main.value && !(expr.program->disc->flags & EX_RETAIN)) 160 exfreenode(expr.program, expr.program->main.value); 168 exfreenode(expr.program, x); 170 expr.program->main.lex = PROCEDURE; 171 expr.program [all...] |
H A D | exlib.h | 101 Expr_t* program; /* previous program on stack */ \ 153 Expr_t* program; /* current program */ member in struct:Exstate_s
|
/ast/src/lib/libtksh/include/ |
H A D | tclInt.h | 73 char program[1]; /* Unwarranted chumminess with compiler. */ member in struct:regexp
|
/ast/src/cmd/tests/vmalloc/ |
H A D | tsharemem.c | 86 static pid_t makeprocess(char* program, char* store, char* type, int p) argument 92 argv[0] = program; 103 else if(execv(program, argv) < 0 )
|
/ast/src/cmd/tw/ |
H A D | tw.h | 163 typedef struct /* program state */ 189 Expr_t* program; /* compiled expressions */ member in struct:__anon239
|
Completed in 28 milliseconds