/ast/src/lib/libast/astsa/ |
H A D | vmalloc.c | 40 vp->current = &vp->base; 41 vp->data = vp->current->data; 42 vp->size = sizeof(vp->current->data); 78 n = (size > sizeof(vp->current->data)) ? (size - sizeof(vp->current->data)) : 0; 79 if (!(vp->current->next = newof(0, Vmchunk_t, 1, n))) 81 vp->current = vp->current->next; 82 vp->data = vp->current->data; 83 vp->size = n ? 0 : sizeof(vp->current [all...] |
H A D | strmatch.c | 82 Group_t current; member in struct:__anon247 150 mp->current.beg[n] = mp->current.end[n] = 0; 208 if (g < MAXGROUP && (!r || g > mp->current.groups)) 209 mp->current.beg[g] = mp->current.end[g] = 0; 218 mp->current.groups = oldg; 236 if (!mp->current.beg[n] || mp->current.beg[n] > olds) 237 mp->current [all...] |
H A D | vmalloc.h | 49 Vmchunk_t* current; member in struct:Vmalloc_s
|
/ast/src/cmd/3d/ |
H A D | strmatch.c | 158 Group_t current; member in struct:Match_s 238 mp->current.beg[n] = mp->current.end[n] = 0; 306 if (g < MAXGROUP && (!r || g > mp->current.groups)) 307 mp->current.beg[g] = mp->current.end[g] = 0; 316 mp->current.groups = oldg; 334 if (!mp->current.beg[n] || mp->current.beg[n] > olds) 335 mp->current [all...] |
/ast/src/lib/libtk/library/demos/ |
H A D | cscroll.tcl | 62 set id [$canvas find withtag current] 63 if {[lsearch [$canvas gettags current] text] >= 0} { 77 set id [$canvas find withtag current] 78 if {[lsearch [$canvas gettags current] text] >= 0} { 87 set id [$canvas find withtag current] 88 if {[lsearch [$canvas gettags current] text] < 0} {
|
H A D | ctext.tcl | 44 $c bind text <Shift-1> "$c select adjust current @%x,%y" 94 $c bind config <Leave> "$c itemconf current -fill \$textConfigFill" 100 set textConfigFill [lindex [$w itemconfig current -fill] 4] 101 $w itemconfig current -fill black 119 $w icursor current @$x,$y 120 $w focus current 122 $w select from current @$x,$y 126 $w select to current @$x,$y
|
H A D | items.tcl | 182 set type [$c type current] 188 set bg [lindex [$c itemconf current -background] 4] 189 set restoreCmd [list $c itemconfig current -background $bg] 190 $c itemconfig current -background SteelBlue2 193 set fill [lindex [$c itemconfig current -fill] 4] 196 set outline [lindex [$c itemconfig current -outline] 4] 197 set restoreCmd "$c itemconfig current -outline $outline" 198 $c itemconfig current -outline SteelBlue2 200 set restoreCmd "$c itemconfig current -fill $fill" 201 $c itemconfig current [all...] |
H A D | plot.tcl | 55 $c bind point <Any-Enter> "$c itemconfig current -fill red" 56 $c bind point <Any-Leave> "$c itemconfig current -fill SkyBlue2" 75 $w addtag selected withtag current 76 $w raise current 83 # current item.
|
H A D | twind.tcl | 146 $c bind point <Any-Enter> "$c itemconfig current -fill red" 147 $c bind point <Any-Leave> "$c itemconfig current -fill SkyBlue2" 166 $w addtag selected withtag current 167 $w raise current
|
/ast/src/lib/libtk/library/ |
H A D | bgerror.tcl | 71 if {[grab current .] != ""} { 72 grab release [grab current .]
|
H A D | dialog.tcl | 121 set oldGrab [grab current $w]
|
H A D | menu.tcl | 40 # relief - Used to save the original relief of the current 237 # that the current entry is on top of the mouse. Otherwise post 330 set grab [grab current $menu] 458 if {$menu != [grab current $menu]} { 906 set tkPriv(oldGrab) [grab current $w]
|
/ast/src/lib/libcoshell/ |
H A D | coclose.c | 38 kill(state.current->pid, SIGKILL); 61 state.current = co;
|
H A D | colib.h | 114 Coshell_t* current; /* current coshell */ member in struct:Costate_s
|
/ast/src/lib/libast/misc/ |
H A D | fts.c | 54 FTSENT* current; /* current element */ \ 55 FTSENT* previous; /* previous current */ \ 57 FTSENT* link; /* real current fts_link*/ \ 59 DIR* dir; /* current dir stream */ \ 61 size_t baselen; /* current strlen(base) */ \ 958 fts->current = f; 1007 fts->current = f; 1019 fts->current->nlink--; 1026 fts->current [all...] |
/ast/src/lib/libardir/ |
H A D | ar-pdp11.c | 45 off_t current; /* current dirent offset */ member in struct:State_s 48 Header_t header; /* current header */ 103 state->current = state->offset; 139 o = state->current + offsetof(Header_t, ar_date);
|
H A D | ar-s5r0.c | 59 off_t current; /* current dirent offset */ member in struct:State_s 64 Member_t member; /* current member */ 133 state->current = state->offset; 169 o = state->current + offsetof(Member_t, arf_date);
|
H A D | ar-aix.c | 61 off_t current; /* current dirent offset */ member in struct:State_s 64 Member_t member; /* current member */ 66 char* name; /* current member name */ 132 if ((state->current = state->offset) >= state->last) 229 o = state->current + offsetof(Member_t, ar_date);
|
H A D | ar-aixbig.c | 62 off_t current; /* current dirent offset */ member in struct:State_s 65 Member_t member; /* current member */ 67 char* name; /* current member name */ 133 if ((state->current = state->offset) >= state->last) 230 o = state->current + offsetof(Member_t, ar_date);
|
H A D | ar-port.c | 57 off_t current; /* current dirent offset */ member in struct:State_s 65 Header_t header; /* current header */ 251 state->current = state->offset; 348 o = state->current + offsetof(Header_t, ar_date);
|
/ast/src/cmd/html/ |
H A D | troff2html.c | 381 n *= 8 * state.env->ps.current; 385 n *= 6 * state.env->ps.current; 395 n *= 6 * state.env->vs.current; 436 n *= state.env->ps.current / 12; 438 n /= state.env->ps.current / 12; 460 n *= 8 * state.env->ps.current; 462 n /= 8 * state.env->ps.current; 467 n *= 6 * state.env->ps.current; 469 n /= 6 * state.env->ps.current; 483 n *= 6 * state.env->vs.current; [all...] |
H A D | troff2html.h | 126 int current; /* current value */ member in struct:Value_s 179 Env_t* env; /* current environment */ 185 List_t* list; /* current list state */ 186 List_t list_stack[STKS];/* current list stack */ 198 int link; /* current \h...\h'0' code */ 227 Arg_t* mac; /* current macro args */ 228 Arg_t* tag; /* current tag args */
|
/ast/src/lib/libjcl/ |
H A D | jcllib.h | 103 Jclstep_t current; \
|
/ast/src/cmd/ksh93/include/ |
H A D | shlex.h | 38 struct argnod *arg; /* current word */ 40 int token; /* current token number */ 59 unsigned long current; /* current entity number */ member in struct:_shlex_
|
/ast/src/cmd/ksh93/sh/ |
H A D | lex.c | 150 r=kiaentity(lp,lp->lexd.first+lp->lexd.kiaoff+type,off-lp->lexd.kiaoff,'v',-1,-1,lp->current,'v',0,""); 172 r=kiaentity(lp,begin,n,'v',-1,-1,lp->current,'v',0,""); 175 sfprintf(lp->kiatmp,"p;%..64d;v;%..64d;%d;%d;r;\n",lp->current,r,shp->inlineno,shp->inlineno); 181 * If lexd.nocopy is off, then current token is saved on the stack 318 * A pointer to the current word is stored in lp->arg 385 /* skip over characters in the current state */ 2164 * Assumes that current word is unfrozen on top of the stak 2503 r=kiaentity(lp,nv_name(np),-1,'p',0,0,lp->current,'a',0,""); 2504 sfprintf(lp->kiatmp,"p;%..64d;p;%..64d;%d;%d;e;\n",lp->current,r,lp->sh->inlineno,lp->sh->inlineno);
|