HomeSort by: relevance | last modified time | path
    Searched refs:linep (Results 1 - 22 of 22) sorted by relevancy

  /src/share/man/tools/
line.c 16 register char *linep, *linend; local
19 linep = line;
24 if (linep == linend)
27 linep = line;
29 *linep++ = c;
31 write (1, line, linep-line);
  /src/external/gpl3/binutils/dist/gas/
input-scrub.c 566 as_where_physical (unsigned int *linep)
570 if (linep != NULL)
571 *linep = physical_input_line;
575 if (linep != NULL)
576 *linep = 0;
584 as_where (unsigned int *linep)
586 const char *file = as_where_top (linep);
598 && (linep == NULL || saved->logical_input_line != -1u))
600 if (linep != NULL)
601 *linep = saved->logical_input_line
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
input-scrub.c 567 as_where_physical (unsigned int *linep)
571 if (linep != NULL)
572 *linep = physical_input_line;
576 if (linep != NULL)
577 *linep = 0;
585 as_where (unsigned int *linep)
587 const char *file = as_where_top (linep);
599 && (linep == NULL || saved->logical_input_line != -1u))
601 if (linep != NULL)
602 *linep = saved->logical_input_line
    [all...]
  /src/usr.bin/last/
want.c 79 char linebuf[sizeof(bp->ut_line) + 1], *linep; local
168 if (linep[0] == '~' && !linep[1]) {
179 linesz, linesz, linep,
191 if ((linep[0] == '{' || linep[0] == '|') && !linep[1]) {
196 linesz, linesz, linep,
209 T = addtty(linep);
212 if (!strncmp(T->tty, linep, LINESIZE)
    [all...]
  /src/lib/libutil/
pty.c 67 const char *cp1, *cp2, *cp, *linep; local
86 linep = pt.sn;
115 linep = line;
124 (void)strcpy(name, linep);
  /src/usr.bin/lam/
lam.c 71 static char *linep; variable
87 linep = line;
89 linep = gatherline(ip);
179 char *lp = linep;
196 char *lp = linep;
  /src/usr.sbin/ypserv/revnetgroup/
parse_netgroup.c 293 char *pos, *spos, *linep = NULL, *olinep = NULL; local
336 linep = (char *)malloc(olen + len + 1);
338 memmove(linep, olinep, olen);
341 memmove(linep + olen, pos, len);
343 *(linep + olen) = '\0';
344 olinep = linep;
356 lp->l_line = linep;
  /src/external/bsd/libbind/dist/irs/
lcl_ng.c 361 char *pos, *spos, *linep = NULL, *olinep; local
408 if (!(linep = malloc(olen + len + 1))){
418 memcpy(linep, olinep, olen);
421 memcpy(linep + olen, pos, len);
423 *(linep + olen) = '\0';
424 olinep = linep;
434 lp->l_line = linep;
  /src/external/bsd/ppp/dist/pppd/
utils.c 488 static char *linep; /* current pointer within line */ variable
494 linep = line;
497 linep = line + strlen(line);
505 if (linep != line) {
506 *linep = 0;
529 if (linep != line) {
531 if (linep + l < line + sizeof(line)) {
533 memcpy(linep, buf, l);
534 linep += l;
541 *linep = 0
    [all...]
  /src/lib/libc/rpc/
getnetconfig.c 122 char *linep; /* hold line read from netconfig */ member in struct:netconfig_list
332 list->linep = stringp;
403 free(q->linep);
426 char *linep; /* holds current netconfig line */ local
455 if ((linep = malloc(MAXNETCONFIGLINE)) == NULL) {
464 if ((stringp = fgets(linep, MAXNETCONFIGLINE, file))
481 if (parse_ncp(linep, ncp) == -1) {
489 free(linep);
  /src/external/gpl2/xcvs/dist/diff/
context.c 428 Store the address of the line text into LINEP and the length of the
433 find_function (file, linenum, linep, lenp)
436 char const **linep;
453 *linep = line;
464 *linep = file->linbuf[i];
465 *lenp = file->linbuf[i + 1] - *linep;
  /src/lib/libform/
field.c 465 _FORMI_FIELD_LINES *linep; local
499 for (linep = field->alines; linep; linep = linep->next) {
500 size_t len = strlen(linep->string);
510 memcpy(reformat + pos, linep->string, len);
512 reformat[pos++] = linep->next ? '\n' : '\0';
  /src/external/bsd/less/dist/
line.c 1334 public POSITION forw_raw_line(POSITION curr_pos, char **linep, int *line_lenp)
1368 if (linep != NULL)
1369 *linep = linebuf.buf;
1379 public POSITION back_raw_line(POSITION curr_pos, char **linep, int *line_lenp)
1438 if (linep != NULL)
1439 *linep = &linebuf.buf[n];
1449 public int skip_columns(int cols, char **linep, int *line_lenp)
1451 char *line = *linep;
1472 bytes = line - *linep;
1473 *linep = line
    [all...]
funcs.h 223 public POSITION forw_raw_line(POSITION curr_pos, char **linep, int *line_lenp);
224 public POSITION back_raw_line(POSITION curr_pos, char **linep, int *line_lenp);
225 public int skip_columns(int cols, char **linep, int *line_lenp);
  /src/crypto/external/bsd/heimdal/dist/lib/base/
bsearch.c 155 const char *linep; local
179 linep = find_line(buf, i, rmax);
180 k = linep ? linep - buf : i;
181 if (linep == NULL || k >= rmax) {
261 r = rmax = (linep - buf);
  /src/usr.bin/sdiff/
sdiff.c 935 struct fileline *linep; local
943 if (!(linep = malloc(sizeof(struct fileline))))
945 linep->line = line1;
946 SIMPLEQ_INSERT_TAIL(&delqhead, linep, fileentries);
  /src/sbin/routed/rtquery/
rtquery.c 882 parse_quote(char **linep,
892 pc = *linep;
934 *linep = pc-1;
  /src/sys/arch/sgimips/gio/
newport.c 628 uint16_t linep,cols; local
641 linep = vc2_read_ram(dc, vep++);
650 data = vc2_read_ram(dc, linep++);
656 data = vc2_read_ram(dc, linep++);
  /src/sbin/routed/
parms.c 374 parse_quote(char **linep, /* look here */
384 pc = *linep;
428 *linep = pc-1; /* say where we ended */
  /src/external/gpl2/groff/dist/src/libs/libgroff/
font.cpp 554 char *linep = strchr(line, '\0'); local
556 if (*(--linep) == '\n')
557 *linep = '\0';
  /src/external/gpl3/gcc/dist/gcc/
gengtype.cc 275 pointer to the string is returned via LINEP. If it was a language
279 touch *HEREP, and sets *LINEP to NULL. POS is used for
282 read_input_line (FILE *list, char **herep, char **linep, struct fileloc *pos)
294 *linep = 0;
320 *linep = line;
337 *linep = line;
  /src/external/gpl3/gcc.old/dist/gcc/
gengtype.cc 275 pointer to the string is returned via LINEP. If it was a language
279 touch *HEREP, and sets *LINEP to NULL. POS is used for
282 read_input_line (FILE *list, char **herep, char **linep, struct fileloc *pos)
294 *linep = 0;
320 *linep = line;
337 *linep = line;

Completed in 71 milliseconds