• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/src/

Lines Matching +defs:old +defs:total

1734    This is the old version of expand-file-name, before it was thoroughly
1737 bugs _are_ found, it might be of interest to look at the old code and
2157 int total = 0;
2193 and find the total length of their values in `total' */
2207 total -= 1;
2237 total += strlen (o);
2249 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1);
2437 last-modified time as the old one. (This works on only some systems.)
2706 build_string ("Removing old name: is a directory"),
2718 report_file_error ("Removing old name", list1 (filename));
3745 int total = 0;
3795 total = stat (SDATA (filename), &st);
3798 if (total < 0)
4243 total = st.st_size; /* Total bytes in the file. */
4248 while (how_much < total)
4251 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
4278 if (inserted + require + 2 * (total - how_much) > bufsize)
4280 bufsize = inserted + require + 2 * (total - how_much);
4285 if (how_much >= total) /* This is the last block. */
4415 total = XINT (end) - XINT (beg);
4418 XSETINT (temp, total);
4419 if (total != XINT (temp))
4424 total = READ_BUF_SIZE;
4439 if (GAP_SIZE < total)
4440 make_gap (total - GAP_SIZE);
4449 /* In the following loop, HOW_MUCH contains the total bytes read so
4463 while (how_much < total)
4466 int trytry = min (total - how_much, READ_BUF_SIZE);
4476 make_gap (total - gap_size);
4749 if (inserted > 0 && total > 0
5879 struct buffer *old = current_buffer, *b;
6035 set_buffer_internal (old);
6053 /* If we are going to restore an old message,
6113 register const unsigned char *old;
6121 for (n = osize, count = 0, old = SDATA (val); n > 0; n--)
6122 if (*old++ == '$') count++;
6125 old = SDATA (val);
6130 if (*old != '$')
6131 *new++ = *old++;
6136 old++;