Lines Matching defs:col
167 dumpvalue(register int col, register char* s, int sep)
175 col++;
183 col = 1;
186 return col;
188 col += 7 - (col % 8);
191 if (col < LONGLINE - 8)
198 col = 8;
214 col += (v - s) + 3;
225 col++;
235 dumpname(int col, char* s)
241 if (col + n >= LONGLINE)
244 col = 16;
246 else if (col <= 1)
247 col = 1;
251 col++;
253 col += n;
255 return col;
409 dumpprereqs(register int col, register struct rule* r)
416 col = dumpname(col, r->local.pointer ? ((struct local*)r->local.pointer)->base : r->name);
420 col = dumpprereqs(col, p->rule);
422 return col;
446 register int col;
458 col = dumpname(1, r->local.pointer ? (((struct local*)r->local.pointer)->target ? ((struct local*)r->local.pointer)->target : ((struct local*)r->local.pointer)->base) : r->name);
459 col = dumpname(col, ":");
464 col = dumpprereqs(col, p->rule);
485 register int col;
503 col = dumpname(0, name);
505 col += 2;
509 dumpvalue(col, s + 1, '\\');
512 dumpvalue(col, s, 0);