Home | History | Annotate | Download | only in nawk-20071023

Lines Matching defs:nf

384 	if (n > nfields)	/* fields after NF are empty */
385 growfldtab(n); /* but does not increase NF */
391 int nf = 2 * nfields;
394 if (n > nf)
395 nf = n;
396 s = (nf+1) * (sizeof (struct Cell *)); /* freebsd: how much do we need? */
397 if (s / sizeof(struct Cell *) - 1 == nf) /* didn't overflow */
402 FATAL("out of space creating %d fields", nf);
403 makefields(nfields+1, nf);
404 nfields = nf;
454 void recbld(void) /* create $0 from $1..$NF if necessary */
462 for (i = 1; i <= *NF; i++) {
468 if (i < *NF) {