/ast/src/lib/libpp/ |
H A D | ppcomment.c | 31 ppcomment(char* head, char* comment, char* tail, int line) argument 34 ppprintf("%s%-.*s%s", head, MAXTOKEN - 4, comment, tail);
|
/ast/src/lib/librecsort/ |
H A D | rs-copy.c | 32 Rsobj_t* tail; member in struct:Copy_s 45 if (copy->tail) 46 copy->tail->right = obj; 49 copy->tail = obj; 62 if (copy->tail) 64 copy->tail->right = 0; 65 copy->tail = 0;
|
H A D | rslist.c | 35 #define ADDOBJ(list,tail,obj) (tail = tail ? (tail->right = obj) : (list = obj) ) 107 reg Rsobj_t *obj, *o, *e, *list, *tail; local 128 list = tail = NIL(Rsobj_t*); 133 ADDOBJ(list,tail,obj); 156 ADDOBJ(list,tail,obj); 159 tail->right = NIL(Rsobj_t*); 165 ADDOBJ(list,tail,ob [all...] |
H A D | rskeyhdr.h | 91 Rsdisc_t* disctail; /* rslib() disc stack tail */ \ 95 Rskeyfield_t* prev; /* previous field list tail */ \ 103 Rskeyfield_t* tail; /* accumulate list tail */ \
|
H A D | rskey.c | 845 (kp->tail = kp->field.prev)->next = 0; 847 if (kp->accumulate.tail) 848 kp->accumulate.tail->next = fp; 850 kp->accumulate.head = kp->accumulate.tail = fp; 954 if (kp->keydisc->errorf && fp != kp->tail) 979 fp = all ? kp->head : kp->tail; 1076 if ((kp->tail->end.field = *s == '.' ? kp->tail->begin.field : (int)strtol(s, &s, 10)) > kp->field.maxfield) 1077 kp->field.maxfield = kp->tail->end.field; 1079 kp->tail [all...] |
H A D | rskeyopen.c | 96 kp->head = kp->tail = &kp->field.global;
|
/ast/src/lib/libast/path/ |
H A D | pathfind.c | 46 Dir_t* tail; /* directory list tail */ member in struct:__anon299 68 if (state.tail) 69 state.tail = state.tail->next = dp; 71 state.head = state.tail = dp;
|
/ast/src/lib/libvgraph/ |
H A D | graph.c | 43 if(e1->tail != e2->tail) 44 return e1->tail < e2->tail ? -1 : 1; 88 gredge(gr, e->tail, e->head, e->label, -1); 92 gredge(gr, e->tail, e->head, e->label, -1); 118 Gredge_t* gredge(Graph_t* gr, Grnode_t* tail, Grnode_t* head, Void_t* label, int type) argument 124 if(gr->type == GR_UNDIRECTED) /* enforce tail <= head */ 125 if(tail > head) 126 { nd = tail; tai [all...] |
H A D | grfold.c | 53 if(grfind(ed->tail) != fold)
|
H A D | grbranching.c | 49 PRINT(Fd,"%d", (int)ed->tail->label); PRINT(Fd,"(%d) -> ", (int)grfind(ed->tail)->label ); 150 nc = grfind(ec->tail); 202 if(BREDGE(e)->wadj <= 0 || grfind(e->head) == grfind(e->tail) ) 251 e->onext = e->tail->oedge; e->tail->oedge = e; 337 fprintf(stderr, "%d -> %d [%d]\n", e->tail->label, e->head->label, grbrweight(e, 0) );
|
/ast/src/lib/libjcl/ |
H A D | path.c | 35 char* tail; member in struct:Map_s 178 * match tail pattern t to s 183 tail(register const char* t, register const char* s, int set) function 262 if (mp->tail) 268 if (!mp->prefix[j] && (!mp->tail || tail(mp->tail, &name[j], 0))) 279 if (lp->tail) 280 lp->length += tail(lp->tail, 378 char* tail; local [all...] |
H A D | find.c | 190 if (lp->tail) 191 lp->tail = lp->tail->next = dp; 193 lp->head = lp->tail = dp;
|
H A D | jcllib.h | 49 struct Dirlist_s /* directory list head/tail */ 52 Dir_t* tail; /* directory list tail */ member in struct:Dirlist_s
|
/ast/src/lib/libtksh/tcl/ |
H A D | tclUnixFile.c | 649 * If the tail argument is NULL, then the matching files are 661 TclMatchFiles(interp, separators, dirPtr, pattern, tail) 666 char *tail; /* Pointer to end of pattern. */ 668 char *dirName, *patternEnd = tail; 733 * Clean up the end of the pattern and the tail pointer. Leave 734 * the tail pointing to the first character after the path separator 739 if (*tail == '\\') { 740 tail++; 742 if (*tail == '\0') { 743 tail [all...] |
/ast/src/lib/libvcodex/Vchuff/ |
H A D | vchsize.c | 71 Vchtree_t *f, *s, *p, *list, *tail, *head; local 118 for(head = tail = NIL(Vchtree_t*), list = sort[0];; ) 123 ** 3. tail == NULL or list->freq+list->next->freq >= tail->freq. 140 tail = head ? (tail->next = f) : (head = f); 141 tail->next = NIL(Vchtree_t*); 154 ** Now observe that tail->freq <= 2*head->freq and 155 ** tail->freq <= 2*list->freq. This gives I.3 in all cases. 167 tail [all...] |
/ast/src/lib/libtksh/lib/tksh7.6/ |
H A D | ldAout.tcl | 65 # .o or .a file. tail has the rest of the arguments. 68 set tail {} 109 lappend tail $a 141 set m [file tail $outputFile] 219 foreach item $tail {
|
/ast/src/lib/libdss/ |
H A D | tag.h | 66 void* tail; /* user defined pointer */ member in struct:Tagframe_s
|
H A D | dssopen.c | 800 * apply expression with optional head and tail queries to files in argv 804 dssrun(Dss_t* dss, const char* expression, const char* head, const char* tail, char** argv) argument 815 expression = tail ? tail : "{write}"; 820 if (expression == tail) 821 tail = 0; 822 else if (!tail && !hasquery(expr)) 823 tail = "{write}"; 824 if (tail) 826 if (!(xt = dsscomp(dss, tail, Ni [all...] |
H A D | dsstags.c | 293 if (fp->prev->tail) 294 fp->prev->tail = ((Cxitem_t*)fp->prev->tail)->next = (Cxitem_t*)fp->data; 296 fp->prev->tail = ((Cxpart_t*)fp->prev->data)->item = (Cxitem_t*)fp->data; 420 if (fp->prev->tail) 421 fp->prev->tail = ((Cxpart_t*)fp->prev->tail)->next = (Cxpart_t*)fp->data; 423 fp->prev->tail = ((Cxmap_t*)fp->prev->data)->part = (Cxpart_t*)fp->data;
|
/ast/src/lib/libvcodex/Vcmisc/ |
H A D | vcstrip.c | 22 /* Stripping head and tail data. 29 #define ST_TAIL 04 /* specifying tail to strip */ 34 ssize_t tail; /* amount to strip from tail */ member in struct:_strip_s 40 { "tail", "Tail to strip is 'tail=amount'", (Void_t*)ST_TAIL }, 93 /* find an appropriate tail amount to strip */ 96 { for(z = st->tail; z > 0; --z) 106 { if((tsz = st->tail) > dsz) 212 st->tail [all...] |
/ast/src/cmd/mailx/ |
H A D | names.c | 146 hp->h_misc.head = hp->h_misc.tail = 0; 198 hp->h_misc.head = hp->h_misc.tail = 0; 210 if (hp->h_misc.tail) 211 hp->h_misc.tail->next = x; 214 hp->h_misc.tail = x;
|
/ast/src/lib/libast/cdt/ |
H A D | dthash.c | 153 Dtlink_t **t, **endt, *head, *tail, *l; local 157 { head = tail = NIL(Dtlink_t*); 160 { if(tail) 161 tail = (tail->_rght = l); 162 else head = tail = l; 164 *t = type == DT_FLATTEN ? tail : NIL(Dtlink_t*); 182 /* find the tail of the list for this slot */
|
/ast/src/lib/libtk/library/demos/ |
H A D | image2.tcl | 20 $w.f.list insert end [file tail $i]
|
/ast/src/cmd/builtin/ |
H A D | Makefile | 90 look mkdir mkfifo mktemp mv nl od paste rm tail tr uniq uuencode wc
|
/ast/src/lib/libast/comp/ |
H A D | conf.sh | 71 tail='#include "FEATURE/param"' 806 ${tail} 834 ${tail} 875 ${tail} 1113 ${tail} 1128 ${tail} 1275 ${tail} 1566 ${tail}
|