Home
last modified time | relevance | path

Searched refs:fold (Results 1 – 25 of 39) sorted by relevance

12

/titanic_41/usr/src/lib/libshell/common/sh/
H A Dstring.c438 char *sh_fmtqf(const char *string, int single, int fold) in sh_fmtqf() argument
449 if (--fold < 8) in sh_fmtqf()
450 fold = 0; in sh_fmtqf()
451 if (!cp || !*cp || !single && !fold || fold && strlen(string) < fold) in sh_fmtqf()
461 n = fold; in sh_fmtqf()
495 n = fold - 3; in sh_fmtqf()
506 n = fold - 1; in sh_fmtqf()
528 n = fold - 1; in sh_fmtqf()
543 n = fold - 7; in sh_fmtqf()
560 n = fold - 5; in sh_fmtqf()
[all …]
/titanic_41/usr/src/cmd/vi/misc/
H A Dfold.c48 int fold = 80; variable
62 fold = 0; in main()
65 fold *= 10, fold += *argv[0]++ - '0'; in main()
113 if (ncol > fold) in putch()
H A DMakefile30 OTHERPROGS= fold cxref
31 SRCS= $(PROG).c fold.c mkstr.c xstr.c
/titanic_41/usr/src/cmd/pr/
H A Dpr.c108 typedef struct {int fold; int skip; int eof; } foldinf; member
145 static int fold = 0; variable
514 fold++; in findopt()
552 if (Ncols == 1 && fold) in findopt()
586 Fcol[i].fold = Fcol[i].skip = 0; in findopt()
646 if (C == WEOF && !(fold && Buffer)) in print()
684 if (fold) { in putpage()
784 (Fcol[0].fold && Multi == 'a') || in foldpage()
808 Fcol[(Multi == 'a') ? 0 : colno].fold in foldpage()
812 Fcol[0].fold = 0; in foldpage()
[all …]
/titanic_41/usr/src/cmd/look/
H A Dlook.c24 int fold; variable
50 fold++; in main()
70 fold++; in main()
193 if(fold) { in canon()
/titanic_41/usr/src/lib/libadm/common/
H A Dputtext.c174 goto fold; in puttext()
203 goto fold; in puttext()
230 goto fold; in puttext()
257 goto fold; in puttext()
271 fold: in puttext()
/titanic_41/usr/src/cmd/fold/
H A Dfold.c60 static int fold = 80; variable
117 fold = w; /* Update with new width */ in main()
167 fold = w; in main()
246 if ((ncol > fold) && (bflg || in putch()
H A DMakefile29 PROG= fold
/titanic_41/usr/src/lib/libshell/common/data/
H A Dsolaris_cmdlist.h115 ASTCMDLIST(fold)
116 BINCMDLIST(fold)
117 GNUCMDLIST(fold)
/titanic_41/usr/src/cmd/audio/utilities/
H A DResample.cc61 static void sinc_coef(int fold, // sample rate change in sinc_coef() argument
67 double bandwidth = M_PI / fold; // digital bandwidth of pass band in sinc_coef()
154 int fold = (up > down)? up : down; // take the bigger rate change in ResampleFilter() local
155 order = (fold << 4) - 2; // filter order = fold * 16 - 2 in ResampleFilter()
157 sinc_coef(fold, order, coef); // required bandwidth = PI/fold in ResampleFilter()
/titanic_41/usr/src/lib/libcmd/common/
H A Dfold.c89 static void fold(Sfio_t *in, Sfio_t *out, register int width, const char *cont, size_t contsize, ch… in fold() function
236 fold(fp,sfstdout,width,cont,contsize,cols); in b_fold()
H A DRELEASE149 04-11-18 fold.c: add --prepend=text, --append=text
177 03-08-11 fold.c: add --delimiter=c to break at c
239 99-05-01 cmp,comm,cp/mv/ln,expr,fold,getconf,head: long options
/titanic_41/usr/src/cmd/spell/
H A Dspellprog.c291 int fold; in main() local
361 fold = 0; in main()
370 ++fold; in main()
380 if (fold) *dp = Tolower(*dp); in main()
/titanic_41/usr/src/lib/libshell/common/edit/
H A Dvi.c94 # define fold(c) ((c)&~040) /* lower and uppercase equivalent */ macro
96 # define fold(c) ((c)|0100) /* lower and uppercase equivalent */ macro
1696 if( fold(vp->last_find) == 'T' ) in mvcursor()
2155 if( cur_virt==0 || fold(mode)=='N' ) in search()
2305 if(mode && (fold(vp->lastmotion)=='F' || fold(vp->lastmotion)=='T')) in textmod()
2308 if( fold(c) == 'P' ) in textmod()
2412 if( fold(mode) == 'A' ) in textmod()
2431 if( fold(mode) == 'I' ) in textmod()
/titanic_41/usr/src/lib/libshell/misc/
H A Dbuildksh93.sh187 ASTCMDLIST(fold)
188 BINCMDLIST(fold)
189 GNUCMDLIST(fold)
/titanic_41/usr/src/lib/libcmd/
H A DMakefile.com49 fold.o \
/titanic_41/usr/src/ucbcmd/
H A DMakefile107 fold \
/titanic_41/usr/src/uts/sun4/ml/
H A Dip_ocsum.s427 bz,a .fold
443 .fold: label
/titanic_41/usr/src/cmd/
H A DMakefile167 fold \
580 fold \
/titanic_41/usr/src/cmd/ldap/common/
H A Dldapsearch.c139 static int attrsonly, timelimit, sizelimit, server_sort, fold; variable
172 fold = 1; in main()
476 fold = 0; in options_callback()
1123 if ( !fold ) { in write_ldif_value()
/titanic_41/usr/src/cmd/mv/
H A Dmv.c1238 DIR *fold = opendir(from); in rcopy() local
1244 if (fold == 0 || ((pflg || mve) && fstat(fold->dd_fd, &statb) < 0)) { in rcopy()
1257 dp = readdir(fold); in rcopy()
1259 (void) closedir(fold); in rcopy()
/titanic_41/usr/src/lib/libshell/common/bltins/
H A Dprint.c607 int fold = fe->base; in extend() local
885 value->s = sh_fmtqf(value->s, !!(fe->flags & SFFMT_ALTER), fold); in extend()
/titanic_41/usr/src/lib/libast/common/regex/
H A Dreglib.h549 unsigned char fold[UCHAR_MAX+1]; /* REG_ICASE map */ member
H A Dregcomp.c3185 unsigned char* fold; in regcomp() local
3209 if (!(fold = (unsigned char*)LCINFO(AST_LC_CTYPE)->data)) in regcomp()
3211 if (!(fold = newof(0, unsigned char, UCHAR_MAX, 1))) in regcomp()
3214 fold[i] = toupper(i); in regcomp()
3215 LCINFO(AST_LC_CTYPE)->data = (void*)fold; in regcomp()
3233 env.MAP = p->env->fold; in regcomp()
3236 env.MAP[i] = fold[env.map[i]]; in regcomp()
3246 env.MAP = fold; in regcomp()
/titanic_41/usr/src/pkg/manifests/
H A Dcompatibility-ucb.mf182 link path=usr/ucb/fold target=../bin/fold

12