/src/usr.bin/fmt/ |
fmt.c | 66 /* LIZ@UOM 6/18/85 --New variables goal_length and max_length */ 68 #define MAX_LENGTH 75 70 static size_t max_length; /* Max line length in output */ variable in typeref:typename:size_t 109 max_length = MAX_LENGTH; 128 (void)getnum(optarg, "max", &max_length, 1); 147 if (argc > 0 && getnum(*argv, "max", &max_length, 0)) { 153 if (max_length <= goal_length) { 155 "length (%zu)", max_length, goal_length); 462 if ((t <= goal_length) || ((t <= max_length) & [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_symbolizer_internal.h | 92 virtual bool ReadFromSymbolizer(char *buffer, uptr max_length);
|
sanitizer_symbolizer_libcdep.cc | 453 bool SymbolizerProcess::ReadFromSymbolizer(char *buffer, uptr max_length) { 454 if (max_length == 0) 460 max_length - read_len - 1, &just_read); 470 if (read_len + 1 == max_length) {
|
sanitizer_symbolizer_posix_libcdep.cc | 273 bool ReadFromSymbolizer(char *buffer, uptr max_length) override { 274 if (!SymbolizerProcess::ReadFromSymbolizer(buffer, max_length)) 277 // max_length.
|
sanitizer_common.h | 559 explicit InternalScopedString(uptr max_length) 560 : InternalMmapVector<char>(max_length), length_(0) {
|
/src/common/dist/zlib/ |
trees.c | 124 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s 546 int max_length = desc->stat_desc->max_length; local in function:gen_bitlen 564 if (bits > max_length) bits = max_length, overflow++; 584 bits = max_length - 1; 588 s->bl_count[max_length]--; 590 * but this does not affect bl_count[max_length] 600 for (bits = max_length; bits != 0; bits--) {
|
/src/sys/dev/scsipi/ |
scsi_tape.h | 130 u_int8_t max_length[3]; /* Most significant */ member in struct:scsi_block_limits_data
|
st_scsi.c | 162 st->blkmax = _3btol(block_limits.max_length);
|
/src/sys/external/bsd/drm2/drm/ |
drm_cdevsw.c | 333 drm_dequeue_event(struct drm_file *file, size_t max_length, 355 if (event->event->length > max_length) {
|
/src/sbin/newfs_udf/ |
udf_core.h | 302 extern int udf_check_tag_payload(void *blob, uint32_t max_length);
|
udf_core.c | 544 udf_check_tag_payload(void *blob, uint32_t max_length) 555 if (crc_len > max_length)
|
/src/sys/fs/udf/ |
udf_subr.h | 49 int udf_check_tag_payload(void *blob, uint32_t max_length);
|
udf_subr.c | 651 udf_check_tag_payload(void *blob, uint32_t max_length) 662 if (crc_len > max_length)
|
/src/sys/net/ |
zlib.c | 2226 int max_length; /* max bit length for the codes */ member in struct:static_tree_desc_s 2593 int max_length = desc->stat_desc->max_length; local in function:gen_bitlen 2611 if (bits > max_length) bits = max_length, overflow++; 2631 bits = max_length-1; 2635 s->bl_count[max_length]--; 2637 * but this does not affect bl_count[max_length] 2647 for (bits = max_length; bits != 0; bits--) {
|