Home
last modified time | relevance | path

Searched refs:max_length (Results 1 – 25 of 31) sorted by relevance

12

/NextBSD/contrib/ncurses/ncurses/base/
HDlib_slk.c82 int max_length; in _nc_format_slks() local
87 max_length = SP_PARM->_slk->maxlen; in _nc_format_slks()
89 gap = (cols - 3 * (3 + 4 * max_length)) / 2; in _nc_format_slks()
96 x += max_length; in _nc_format_slks()
101 gap = cols - (int) (SP_PARM->_slk->maxlab * max_length) - 6; in _nc_format_slks()
107 x += max_length; in _nc_format_slks()
112 gap = (cols - (SP_PARM->_slk->maxlab * max_length) - 5) in _nc_format_slks()
119 x += max_length; in _nc_format_slks()
141 size_t max_length; in _nc_slk_initialize() local
192 max_length = (size_t) SP_PARM->_slk->maxlen; in _nc_slk_initialize()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDThisThread.cpp22 ThisThread::SetName(llvm::StringRef name, int max_length) in SetName() argument
31 if (max_length > 0 && truncated_name.length() > static_cast<size_t>(max_length)) in SetName()
36 if (end - begin > static_cast<size_t>(max_length)) in SetName()
44 end = std::min(end, begin + max_length); in SetName()
/NextBSD/usr.bin/fmt/
HDfmt.c222 static size_t max_length=0; /* Maximum length for output lines */ variable
305 max_length = goal_length; in main()
318 max_length = goal_length; in main()
346 && (max_length=get_positive(*argv,"max length must be positive", 0)) in main()
349 if (max_length<goal_length) in main()
354 if (max_length==0) max_length = goal_length+10; in main()
355 if (max_length >= SIZE_T_MAX / sizeof (wchar_t)) errx(EX_USAGE, "max length too large"); in main()
357 output_buffer = XMALLOC((max_length+1) * sizeof(wchar_t)); in main()
572 if (x0==0 || (new_x <= max_length && new_x-goal_length <= goal_length-x)) { in output_word()
580 if (indent+width > max_length) { in output_word()
/NextBSD/contrib/gdb/gdb/
HDremote-utils.c508 int max_length; in gr_multi_scan() local
514 for (max_length = string_count = i = 0; in gr_multi_scan()
520 if (length > max_length) in gr_multi_scan()
521 max_length = length; in gr_multi_scan()
530 swallowed_p = swallowed = alloca (max_length << 1); in gr_multi_scan()
/NextBSD/contrib/libstdc++/include/ext/pb_ds/detail/trie_policy/
Dprefix_search_node_update_imp.hpp133 size_type max_length = 0; in next_child() local
142 if (common_range_length > max_length) in next_child()
146 max_length = common_range_length; in next_child()
/NextBSD/contrib/tcpdump/
HDprint-rpki-rtr.c57 u_char max_length; member
70 u_char max_length; member
230 pdu->prefix_length, pdu->max_length, in rpki_rtr_pdu_print()
244 pdu->prefix_length, pdu->max_length, in rpki_rtr_pdu_print()
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_symbolizer_process_libcdep.cc74 bool SymbolizerProcess::ReadFromSymbolizer(char *buffer, uptr max_length) { in ReadFromSymbolizer() argument
75 if (max_length == 0) in ReadFromSymbolizer()
80 max_length - read_len - 1); in ReadFromSymbolizer()
HDsanitizer_symbolizer_internal.h80 bool ReadFromSymbolizer(char *buffer, uptr max_length);
HDsanitizer_common.h129 explicit InternalScopedString(uptr max_length) in InternalScopedString() argument
130 : InternalScopedBuffer<char>(max_length), length_(0) { in InternalScopedString()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDStringList.cpp111 size_t max_length = 0; in GetMaxStringLength() local
115 if (max_length < len) in GetMaxStringLength()
116 max_length = len; in GetMaxStringLength()
118 return max_length; in GetMaxStringLength()
HDValueObject.cpp1207 uint32_t max_length, in ReadPointedString() argument
1223 if (max_length == 0) in ReadPointedString()
1224 max_length = target->GetMaximumSizeOfStringSummary(); in ReadPointedString()
1247 if (cstr_len > max_length) in ReadPointedString()
1250 cstr_len = max_length; in ReadPointedString()
1288 cstr_len = max_length; in ReadPointedString()
/NextBSD/contrib/gcc/
HDattribs.c87 gcc_assert (attribute_tables[i][j].max_length == -1 in init_attributes()
88 || (attribute_tables[i][j].max_length in init_attributes()
180 || (spec->max_length >= 0 in decl_attributes()
181 && list_length (args) > spec->max_length)) in decl_attributes()
/NextBSD/contrib/wpa/src/utils/
HDradiotap.c93 int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns) in ieee80211_radiotap_iterator_init() argument
96 if (max_length < (int)sizeof(struct ieee80211_radiotap_header)) in ieee80211_radiotap_iterator_init()
104 if (max_length < get_unaligned_le16(&radiotap_header->it_len)) in ieee80211_radiotap_iterator_init()
HDradiotap_iter.h91 int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
/NextBSD/lib/libz/
HDtrees.c122 int max_length; /* max bit length for the codes */ member
497 int max_length = desc->stat_desc->max_length; local
515 if (bits > max_length) bits = max_length, overflow++;
535 bits = max_length-1;
539 s->bl_count[max_length]--;
551 for (bits = max_length; bits != 0; bits--) {
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/zmod/
HDtrees.c126 int max_length; /* max bit length for the codes */ member
499 int max_length = desc->stat_desc->max_length; local
517 if (bits > max_length) bits = max_length, overflow++;
537 bits = max_length-1;
541 s->bl_count[max_length]--;
553 for (bits = max_length; bits != 0; bits--) {
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Host/
HDThisThread.h32 static void SetName(llvm::StringRef name, int max_length);
/NextBSD/sys/kern/
HDkern_umtx.c167 u_int max_length; member
211 static long max_length; variable
212 SYSCTL_LONG(_debug_umtx, OID_AUTO, max_length, CTLFLAG_RD, &max_length, 0, "max_length");
255 "max_length0", CTLFLAG_RD, &umtxq_chains[0][i].max_length, 0, NULL); in umtx_init_profiling()
257 "max_length1", CTLFLAG_RD, &umtxq_chains[1][i].max_length, 0, NULL); in umtx_init_profiling()
278 tot += uc->max_length; in sysctl_debug_umtx_chains_peaks()
290 whole = uc->max_length * 100; in sysctl_debug_umtx_chains_peaks()
357 uc->max_length = 0; in sysctl_debug_umtx_chains_clear()
392 umtxq_chains[i][j].max_length = 0; in umtxq_sysinit()
555 if (uc->length > uc->max_length) { in umtxq_insert_queue()
[all …]
/NextBSD/contrib/libstdc++/include/bits/
Dfstream.tcc183 __ret += _M_file.showmanyc() / _M_codecvt->max_length(); in showmanyc()
231 __blen = __buflen + _M_codecvt->max_length() - 1; in underflow()
462 streamsize __blen = __ilen * _M_codecvt->max_length(); in _M_convert_to_external()
Dcodecvt.h223 max_length() const throw() in max_length() function
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDpath.c667 apr_size_t max_length = components->nelts; in svn_path_compose() local
678 max_length += l; in svn_path_compose()
681 path = apr_palloc(pool, max_length + 1); in svn_path_compose()
/NextBSD/contrib/ee/
HDee.c128 int max_length; /* maximum number of characters the line handles */ member
570 curr_line->max_length = 10;
680 rline->max_length += factor;
681 rpoint = rline->line = realloc(rline->line, rline->max_length );
706 if ((curr_line->max_length - curr_line->line_length) < 5)
1077 temp_nod->max_length = 10;
1091 if ((temp_nod->max_length - temp_nod->line_length)< 5)
2355 curr_line->max_length = char_count;
2821 if ((curr_line->max_length - (curr_line->line_length + d_wrd_len)) < 5) in undel_word()
/NextBSD/crypto/openssl/crypto/x509/
HDx509_vfy.c1816 int max_length = sizeof("YYMMDDHHMMSS+hhmm") - 1; in X509_cmp_time() local
1817 if (remaining < min_length || remaining > max_length) in X509_cmp_time()
1826 int max_length = sizeof("YYYYMMDDHHMMSS.fff+hhmm") - 1; in X509_cmp_time() local
1827 if (remaining < min_length || remaining > max_length) in X509_cmp_time()
/NextBSD/sys/libkern/
HDzlib.c1960 int max_length; /* max bit length for the codes */ member
2264 int max_length = desc->stat_desc->max_length; local
2282 if (bits > max_length) bits = max_length, overflow++;
2302 bits = max_length-1;
2306 s->bl_count[max_length]--;
2318 for (bits = max_length; bits != 0; bits--) {
/NextBSD/contrib/libc++/include/
D__locale875 int max_length() const _NOEXCEPT
960 int max_length() const _NOEXCEPT
1044 int max_length() const _NOEXCEPT
1130 int max_length() const _NOEXCEPT

12