Searched refs:field_width (Results 1 - 10 of 10) sorted by relevance

/freebsd-10-stable/contrib/gperf/src/
H A Dhash-table.cc95 int field_width; local
97 field_width = 0;
101 if (field_width < _table[i]->_selchars_length)
102 field_width = _table[i]->_selchars_length;
110 _collisions, field_width, "keysig");
116 if (field_width > _table[i]->_selchars_length)
117 fprintf (stderr, "%*s", field_width - _table[i]->_selchars_length, "");
H A Dsearch.cc864 int field_width; local
866 field_width = 0;
871 if (field_width < keyword->_selchars_length)
872 field_width = keyword->_selchars_length;
877 fprintf (stderr, "keyword #, %*s, keyword\n", field_width, "keysig");
883 if (field_width > keyword->_selchars_length)
884 fprintf (stderr, "%*s", field_width - keyword->_selchars_length, "");
1663 int field_width = _max_selchars_length; local
1665 field_width, "selchars");
1670 if (field_width > pt
[all...]
H A Doutput.cc801 int field_width = 2; local
803 field_width++;
811 printf ("%*d", field_width, _asso_values[count]);
1350 int field_width; local
1353 field_width = 2;
1355 field_width++;
1363 if (field_width < neg_field_width)
1364 field_width = neg_field_width;
1367 const int columns = 42 / field_width;
1377 printf ("%*d", field_width, lookup_arra
[all...]
/freebsd-10-stable/lib/libcam/
H A Dscsi_cmdparse.c74 * field_specifier : type_specifier field_width
75 * | '{' NAME '}' type_specifier field_width
78 * field_width : DECIMAL_NUMBER
332 * | value ':' field_width
335 * field_width : digit
375 int field_width; /* 1 byte wide */ local
381 field_width = 1; /* 1 byte wide */
440 field_width = strtol(p, &intendp, 10);
456 field_width = strtol(p, &intendp, 10);
495 field_width
[all...]
/freebsd-10-stable/sys/ddb/
H A Ddb_output.c391 db_end_line(int field_width) argument
393 if (db_output_position + field_width > db_max_width)
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.h85 template<unsigned field_width, unsigned scale>
H A DAArch64InstPrinter.cpp212 template <unsigned field_width, unsigned scale> void
225 uint64_t Sign = UImm & (1LL << (field_width - 1));
/freebsd-10-stable/usr.bin/mt/
H A Dmt.c843 unsigned int field_width; local
907 field_width = MAX(dens_len, 17);
910 field_width, "Density", field_width, dens_str, block_str,
/freebsd-10-stable/contrib/gdb/gdb/
H A Dlanguage.c623 int field_width;
650 field_width = atoi (parse_ptr);
652 num_pad_chars = field_width - strlen (temp_nbr_buf); /* possibly negative */
619 int field_width; local
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp379 template<unsigned field_width, unsigned scale>
387 int64_t Min = - (scale * (1LL << (field_width - 1)));
388 int64_t Max = scale * ((1LL << (field_width - 1)) - 1);
1008 template<unsigned field_width, unsigned scale>
1023 Inst.addOperand(MCOperand::CreateImm(Val & ((1LL << field_width) - 1)));

Completed in 131 milliseconds