Searched refs:field_width (Results 1 – 10 of 10) sorted by relevance
| /freebsd-10-stable/contrib/gperf/src/ |
| D | hash-table.cc | 95 int field_width; in dump() local 97 field_width = 0; in dump() 101 if (field_width < _table[i]->_selchars_length) in dump() 102 field_width = _table[i]->_selchars_length; in dump() 110 _collisions, field_width, "keysig"); in dump() 116 if (field_width > _table[i]->_selchars_length) in dump() 117 fprintf (stderr, "%*s", field_width - _table[i]->_selchars_length, ""); in dump()
|
| D | search.cc | 864 int field_width; in prepare_asso_values() local 866 field_width = 0; in prepare_asso_values() 871 if (field_width < keyword->_selchars_length) in prepare_asso_values() 872 field_width = keyword->_selchars_length; in prepare_asso_values() 877 fprintf (stderr, "keyword #, %*s, keyword\n", field_width, "keysig"); in prepare_asso_values() 883 if (field_width > keyword->_selchars_length) in prepare_asso_values() 884 fprintf (stderr, "%*s", field_width - keyword->_selchars_length, ""); in prepare_asso_values() 1663 int field_width = _max_selchars_length; in ~Search() local 1665 field_width, "selchars"); in ~Search() 1670 if (field_width > ptr->first()->_selchars_length) in ~Search() [all …]
|
| D | output.cc | 801 int field_width = 2; in output_hash_function() local 803 field_width++; in output_hash_function() 811 printf ("%*d", field_width, _asso_values[count]); in output_hash_function() 1350 int field_width; in output_lookup_array() local 1353 field_width = 2; in output_lookup_array() 1355 field_width++; in output_lookup_array() 1363 if (field_width < neg_field_width) in output_lookup_array() 1364 field_width = neg_field_width; in output_lookup_array() 1367 const int columns = 42 / field_width; in output_lookup_array() 1377 printf ("%*d", field_width, lookup_array[i]); in output_lookup_array()
|
| /freebsd-10-stable/lib/libcam/ |
| D | scsi_cmdparse.c | 375 int field_width; /* 1 byte wide */ in next_field() local 381 field_width = 1; /* 1 byte wide */ in next_field() 440 field_width = strtol(p, &intendp, 10); in next_field() 456 field_width = strtol(p, &intendp, 10); in next_field() 495 field_width = strtol(p, &intendp, 10); in next_field() 505 field_width = strtol(p, &intendp, 10); in next_field() 515 field_width = strtol(p, &intendp, 10); in next_field() 538 *width_p = field_width * field_size; in next_field()
|
| /freebsd-10-stable/sys/ddb/ |
| D | db_output.c | 391 db_end_line(int field_width) in db_end_line() argument 393 if (db_output_position + field_width > db_max_width) in db_end_line()
|
| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | language.c | 619 int field_width; in local_hex_string_custom() local 646 field_width = atoi (parse_ptr); in local_hex_string_custom() 648 num_pad_chars = field_width - strlen (temp_nbr_buf); /* possibly negative */ in local_hex_string_custom()
|
| /freebsd-10-stable/usr.bin/mt/ |
| D | mt.c | 843 unsigned int field_width; in nstatus_print() local 907 field_width = MAX(dens_len, 17); in nstatus_print() 910 field_width, "Density", field_width, dens_str, block_str, in nstatus_print()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/ |
| D | AArch64InstPrinter.cpp | 212 template <unsigned field_width, unsigned scale> void 225 uint64_t Sign = UImm & (1LL << (field_width - 1)); in printLabelOperand()
|
| D | AArch64InstPrinter.h | 85 template<unsigned field_width, unsigned scale>
|
| /freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AsmParser/ |
| D | AArch64AsmParser.cpp | 379 template<unsigned field_width, unsigned scale> 387 int64_t Min = - (scale * (1LL << (field_width - 1))); in isLabel() 388 int64_t Max = scale * ((1LL << (field_width - 1)) - 1); in isLabel() 1008 template<unsigned field_width, unsigned scale> 1023 Inst.addOperand(MCOperand::CreateImm(Val & ((1LL << field_width) - 1))); in addLabelOperands()
|