Home
last modified time | relevance | path

Searched refs:colmax (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dmkdeps.cc350 make_write_name (const char *name, FILE *fp, unsigned col, unsigned colmax, in make_write_name() argument
359 if (colmax && col + size> colmax) in make_write_name()
378 unsigned col, unsigned colmax, unsigned quote_lwm = 0, in make_write_vec() argument
382 col = make_write_name (vec[ix], fp, col, colmax, ix >= quote_lwm, trail); in make_write_vec()
390 make_write (const cpp_reader *pfile, FILE *fp, unsigned int colmax) in make_write() argument
395 if (colmax && colmax < 34) in make_write()
396 colmax = 34; in make_write()
400 column = make_write_vec (d->targets, fp, 0, colmax, d->quote_lwm); in make_write()
402 column = make_write_name (d->cmi_name, fp, column, colmax); in make_write()
405 make_write_vec (d->deps, fp, column, colmax); in make_write()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dmkdeps.c329 make_write_name (const char *name, FILE *fp, unsigned col, unsigned colmax,
338 if (colmax && col + size> colmax)
357 unsigned col, unsigned colmax, unsigned quote_lwm = 0,
361 col = make_write_name (vec[ix], fp, col, colmax, ix >= quote_lwm, trail);
369 make_write (const class mkdeps *d, FILE *fp, bool phony, unsigned int colmax) in make_write() argument
372 if (colmax && colmax < 34) in make_write()
373 colmax = 34; in make_write()
377 column = make_write_vec (d->targets, fp, 0, colmax, d->quote_lwm); in make_write()
380 make_write_vec (d->deps, fp, column, colmax); in make_write()
392 deps_write (const class mkdeps *d, FILE *fp, bool phony, unsigned int colmax) in deps_write() argument
[all …]
/netbsd-src/lib/libc/citrus/modules/
H A Dcitrus_mapper_zone.c244 uint32_t rowmax, colmax; in parse_var() local
296 colmax = 0; in parse_var()
298 colmax = 1 << mz->mz_col_bits; in parse_var()
303 if (check_rowcol(&mz->mz_col, mz->mz_col_offset, colmax)) in parse_var()
/netbsd-src/external/gpl2/groff/dist/src/devices/grohtml/
H A Dpost-html.cpp3522 int colmax = 0; // pacify compiler in lookahead_for_tables() local
3586 colmax = 0; in lookahead_for_tables()
3593 colmax = tbl->get_tab_pos(ncol+1); in lookahead_for_tables()
3594 if (colmax > 0) in lookahead_for_tables()
3595 colmax += pageoffset + get_troff_indent(); in lookahead_for_tables()
3612 colmax = tbl->get_tab_pos(2) + pageoffset + get_troff_indent(); in lookahead_for_tables()
3614 update_min_max(type_of_col, &colmin, &colmax, g); in lookahead_for_tables()
3651 if ((ncol == 0) || (! tbl->add_column(ncol, colmin, colmax, align))) { in lookahead_for_tables()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-lang.cc152 deps_write (Module *module, OutBuffer *buffer, unsigned colmax = 72) in deps_write() argument
244 if (colmax && column > colmax) in deps_write()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dd-lang.cc159 unsigned colmax = 72) in deps_write_string() argument
165 if (colmax && column + size > colmax) in deps_write_string()
H A DChangeLog-2020534 (deps_write): Change buffer type to obstack* and remove colmax.