Searched refs:longest (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Dwc.h48 Sfoff_t longest; member in struct:__anon9387
H A Dwclib.c171 register Sfoff_t longest = 0; local
184 wp->longest = 0;
205 if ((nchars - longest) > wp->longest)
206 wp->longest = nchars - longest;
237 if ((nchars - longest) > wp->longest)
238 wp->longest = nchars - longest;
[all...]
H A Dwc.c53 "[L:longest-line|max-line-length?List the longest line length; the newline,"
83 sfprintf(sfstdout," %7I*d",sizeof(wp->chars),wp->longest);
/macosx-10.10/nano-12/src/
H A Dbrowser.c39 static int longest = 0; variable
40 /* The number of columns in the longest filename in the list. */
86 /* Get the file list, and set longest and width in the process. */
141 /* longest is the width of each column.
146 width) + (mouse_x / (longest + 2));
151 if (mouse_x > width * (longest + 2))
446 * set filelist_len to the number of files in that list, set longest to
447 * the width in columns of the longest filename in that list (between 15
449 * per line. longest needs to be at least 15 columns in order to
467 /* Set longest t
[all...]
/macosx-10.10/remote_cmds-47/timed.tproj/timedc.tproj/
H A Dtimedc.c155 register int nmatches, longest; local
158 longest = 0;
167 if (q - name > longest) {
168 longest = q - name;
171 } else if (q - name == longest)
/macosx-10.10/system_cmds-643.1.1/zdump.tproj/
H A Dzdump.c133 static size_t longest; variable
197 longest = 0;
199 if (strlen(argv[i]) > longest)
200 longest = strlen(argv[i]);
214 (fakeenv[0] = (char *) malloc((size_t) (longest +
373 (void) printf("%-*s ", (int) longest, zone);
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftp/
H A Dmain.c344 int nmatches, longest; local
346 longest = 0;
354 if (q - name > longest) {
355 longest = q - name;
358 } else if (q - name == longest)
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Delp.el576 ;; get the length of the longest function name being profiled
577 (let* ((longest 0)
598 (setq longest (max longest (length symname)))
606 (if (> longest titlelen)
608 (insert-char 32 (- longest titlelen))
609 (setq elp-field-len longest)))
/macosx-10.10/emacs-93/emacs/lisp/international/
H A Dja-dic-cnv.el510 (longest 1)
515 (if (> len longest)
516 (setq longest len))
526 (setcar map longest)
533 (longest 1)
538 (if (> len longest)
539 (setq longest len))
549 (setcar map longest)
/macosx-10.10/BerkeleyDB-21/db/env/
H A Denv_alloc.c68 u_int32_t longest; /* Longest chain walked */ member in struct:__alloc_layout
295 if (head->longest < st_search)
296 head->longest = st_search;
483 "Region allocations: %lu allocations, %lu failures, %lu frees, %lu longest",
485 (u_long)head->longest);
/macosx-10.10/zsh-61/zsh/Src/
H A Dloop.c314 size_t longest = 1, fct, fw = 0, colsz, t0, t1, ct; local
320 if (strlen(*ap) > longest)
321 longest = strlen(*ap);
323 longest++;
325 t0 /= 10, longest++;
327 fct = (zterm_columns - 1) / (longest + 3);
/macosx-10.10/misc_cmds-33/tsort/
H A Dtsort.c106 int debug, longest, quiet; variable
136 longest = 1;
337 * as scratch space, the other to save the longest
389 /* look for the longest? cycle from node from to node to. */
430 if (len > 0 && !longest)
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A Dregexec.c145 static chr *longest(struct vars *, struct dfa *, chr *, chr *, int *);
364 end = longest(v, d, begin, v->stop, &hitend);
494 end = longest(v, d, begin, estop, &hitend);
693 mid = longest(v, d, begin, end, NULL);
706 while (longest(v, d2, mid, end, NULL) != end) {
724 mid = longest(v, d, begin, mid-1, NULL);
778 if (longest(v, d, begin, end, NULL) == end) {
875 mid = longest(v, d, begin, end, NULL);
897 if (longest(v, d2, mid, end, NULL) == end) {
933 mid = longest(
[all...]
H A DtclEncoding.c3062 unsigned int left, len, longest;
3072 longest = len;
3089 if (len > longest) {
3090 longest = len;
3109 if (len > longest) {
3110 longest = len;
3148 src += longest;
3024 unsigned int left, len, longest; local
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A Dregexec.c142 static chr *longest _ANSI_ARGS_((struct vars *, struct dfa *, chr *, chr *, int *));
311 end = longest(v, d, begin, v->stop, &hitend);
426 end = longest(v, d, begin, estop,
609 mid = longest(v, d, begin, end, (int *)NULL);
618 while (longest(v, d2, mid, end, (int *)NULL) != end) {
631 mid = longest(v, d, begin, mid-1, (int *)NULL);
675 if (longest(v, d, begin, end, (int *)NULL) == end) {
771 mid = longest(v, d, begin, end, (int *)NULL);
787 if (longest(v, d2, mid, end, NULL) == end) {
814 mid = longest(
[all...]
H A DtclEncoding.c2668 unsigned int left, len, longest;
2678 longest = len;
2694 if (len > longest) {
2695 longest = len;
2713 if (len > longest) {
2714 longest = len;
2751 src += longest;
2637 unsigned int left, len, longest; local
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dsnprintf.c110 /* longest integer types */
114 typedef long long longest; typedef
117 typedef long longest; typedef
448 longest arg;
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dmain.c767 int nmatches, longest; local
772 longest = 0;
780 if (q - name > longest) {
781 longest = q - name;
784 } else if (q - name == longest)
/macosx-10.10/remote_cmds-47/tftp.tproj/
H A Dmain.c798 int nmatches, longest; local
800 longest = 0;
808 if (q - name > longest) {
809 longest = q - name;
812 } else if (q - name == longest)
/macosx-10.10/less-25/less/
H A Dregexp.c215 register char *longest; local
265 * longest literal string that must appear and make it the
272 longest = NULL;
276 longest = OPERAND(scan);
279 r->regmust = longest;
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dzdump.c160 static size_t longest; variable
427 longest = 0;
429 if (strlen(argv[i]) > longest)
430 longest = strlen(argv[i]);
440 (fakeenv[0] = (char *) malloc(longest + 4)) == NULL) {
747 (void) printf("%-*s ", (int) longest, zone);
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_tricky.c2568 int longest = 0, shortest = zterm_columns, totl = 0; local
2580 if (len > longest)
2581 longest = len;
2586 if ((ncols = ((zterm_columns + 2) / longest))) {
2709 if ((i = (pack ? widths[col - 1] : longest) - *lenp + 2) > 0)
2724 if ((i = (pack ? widths[col - 1] : longest) - *lenp + 2) > 0)
/macosx-10.10/emacs-93/emacs/lisp/calendar/
H A Ddiary-lib.el743 (longest 0))
745 (if (< longest (length x))
746 (setq longest (length x)))
750 (insert ?\n (make-string (+ l longest) ?=) ?\n)))))
/macosx-10.10/tcl-105/tcl_ext/expect/expect/
H A Dexp_clib.c369 register char *longest; local
423 * longest literal string that must appear and make it the
430 longest = NULL;
434 longest = OPERAND(scan);
437 r->regmust = longest;
1552 /* find longest match - switched to this on 12/31/93 */
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Doptions.rb522 longest = lengths.max
526 " %-*s - %s" % [longest, name, description]

Completed in 484 milliseconds

12