Searched defs:fold (Results 1 - 11 of 11) sorted by relevance
/ast/src/lib/libvgraph/ |
H A D | grfold.c | 5 be identified by a representative node given in Grnode_t.fold 13 Grnode_t *f, *fold; local 16 for(fold = nd; fold != fold->fold; fold = fold->fold) 19 for(f = nd; f != fold; ) /* pat 26 grfold(Grnode_t* list, Grnode_t* fold) argument [all...] |
H A D | vgraph.h | 24 Grnode_t* fold; /* group in union-find struct */ member in struct:_grnode_s 133 #define grfind(nn) (_Grnode(nn)->fold == _Grnode(nn) ? _Grnode(nn) : _grfind(_Grnode(nn)) )
|
/ast/src/lib/libcmd/ |
H A D | fold.c | 26 * fold 30 "[-?\n@(#)$Id: fold (AT&T Research) 2004-11-18 $\n]" 32 "[+NAME?fold - fold lines]" 89 static void fold(Sfio_t *in, Sfio_t *out, register int width, const char *cont, size_t contsize, char *cols) function 234 fold(fp,sfstdout,width,cont,contsize,cols);
|
/ast/src/lib/librecsort/ |
H A D | rskeyhdr.h | 82 unsigned char fold[UCHAR_MAX + 1]; /* fold case */ member in struct:__anon369
|
/ast/src/cmd/ksh93/sh/ |
H A D | string.c | 460 * fold>0 prints raw newlines and inserts appropriately 461 * escaped newlines every (fold-x) chars 463 char *sh_fmtqf(const char *string, int single, int fold) argument 474 if (--fold < 8) 475 fold = 0; 478 if (!cp || !*cp || !fold || fold && strlen(string) < fold) 488 n = fold; 522 n = fold [all...] |
/ast/src/lib/libvdelta/ |
H A D | vddelta.c | 150 static int vdfold(Table_t* tab, reg uchar* fold, reg uchar* endfold, int target) argument 152 static int vdfold(tab, fold, endfold, target) 154 reg uchar* fold; /* start of area to fold */ 155 reg uchar* endfold; /* end of area to fold */ 167 if((endfold-fold) < M_MIN) /* not much to do */ 168 { add = fold; 173 curm = (fold - tab->tar) + n_src; 174 else curm = (fold - tab->src); 178 HINIT(key,fold, [all...] |
/ast/src/cmd/ksh93/bltins/ |
H A D | print.c | 687 int fold = fe->base; local 977 value->s = sh_fmtqf(value->s, !!(fe->flags & SFFMT_ALTER), fold);
|
/ast/src/lib/libast/regex/ |
H A D | regcomp.c | 133 unsigned char* MAP; /* fold and/or map */ 3236 unsigned char* fold; local 3260 if (!(fold = (unsigned char*)LCINFO(AST_LC_CTYPE)->data)) 3262 if (!(fold = newof(0, unsigned char, UCHAR_MAX, 1))) 3265 fold[i] = toupper(i); 3266 LCINFO(AST_LC_CTYPE)->data = (void*)fold; 3284 env.MAP = p->env->fold; 3287 env.MAP[i] = fold[env.map[i]]; 3297 env.MAP = fold;
|
H A D | reglib.h | 504 unsigned char* map; /* fold and/or ccode map*/ 549 unsigned char fold[UCHAR_MAX+1]; /* REG_ICASE map */ member in struct:reglib_s
|
/ast/src/cmd/ie/ |
H A D | vi.c | 97 #define fold(c) ((c)&~040) /* lower and uppercase equivalent */ macro 1645 if( fold(last_find) == 'T' ) 2091 if( cur_virt==0 || fold(mode)=='N' ) 2237 if(mode && (fold(lastmotion)=='F' || fold(lastmotion)=='T')) 2240 if( fold(c) == 'P' ) 2332 if( fold(mode) == 'A' ) 2351 if( fold(mode) == 'I' )
|
/ast/src/cmd/ksh93/edit/ |
H A D | vi.c | 89 # define fold(c) ((c)&~040) /* lower and uppercase equivalent */ macro 91 # define fold(c) ((c)|0100) /* lower and uppercase equivalent */ macro 1761 if( fold(vp->last_find) == 'T' ) 2244 if( cur_virt==0 || fold(mode)=='N' ) 2395 if(mode && (fold(vp->lastmotion)=='F' || fold(vp->lastmotion)=='T')) 2398 if( fold(c) == 'P' ) 2502 if( fold(mode) == 'A' ) 2521 if( fold(mode) == 'I' )
|
Completed in 391 milliseconds