Home
last modified time | relevance | path

Searched refs:maxcount (Results 1 – 25 of 1806) sorted by relevance

12345678910>>...73

/dports/games/avanor/avanor-0.5.8/global/
H A Dxvector.h39 long maxcount; variable
45 maxcount = (startmaxcount > 0) ? startmaxcount : 1;
47 ptr = (TYPE *) new char[maxcount * sizeof(TYPE)];
48 memset(ptr, 0, maxcount * sizeof(TYPE));
59 while(index >= maxcount)
61 maxcount <<= 1;
63 TYPE * tmp = (TYPE *) new char[maxcount * sizeof(TYPE)];
75 long getmaxcount() { return maxcount; } in getmaxcount()
82 maxcount = (startmaxcount > 0) ? startmaxcount : 1;
84 ptr = (TYPE *) new char[maxcount * sizeof(TYPE)];
[all …]
/dports/devel/upp/upp/uppsrc/Core/
H A DSplitMerge.cpp9 r.Reserve(min(maxcount, 8)); in SplitGeneric()
11 while(*t && r.GetCount() < maxcount) { in SplitGeneric()
21 if((!ignoreempty || t > s) && r.GetCount() < maxcount) in SplitGeneric()
28 return SplitGeneric<String>(maxcount, text_filter, s, ignoreempty); in Split()
40 return SplitGeneric<String>(maxcount, delim, s, ignoreempty); in Split()
48 Vector<String> Split(int maxcount, const char *s, int chr, bool ignoreempty) in Split() argument
52 return SplitGeneric<String>(maxcount, delim, s, ignoreempty); in Split()
91 return SplitGeneric<WString>(maxcount, text_filter, s, ignoreempty); in Split()
103 return SplitGeneric<WString>(maxcount, delim, s, ignoreempty); in Split()
111 Vector<WString> Split(int maxcount, const wchar *s, int chr, bool ignoreempty) in Split() argument
[all …]
/dports/math/arb/arb-2.21.1/acb_dirichlet/test/
H A Dt-platt_zeta_zeros.c19 slong maxcount = 50; in main() local
26 pa = _acb_vec_init(maxcount); in main()
27 pb = _acb_vec_init(maxcount); in main()
31 count = acb_dirichlet_platt_zeta_zeros(pa, n, maxcount, prec); in main()
33 if (count != maxcount) in main()
36 flint_printf("count = %wd maxcount = %wd\n\n", count, maxcount); in main()
54 _acb_vec_clear(pa, maxcount); in main()
55 _acb_vec_clear(pb, maxcount); in main()
H A Dt-platt_hardy_z_zeros.c19 slong maxcount = 50; in main() local
26 pa = _arb_vec_init(maxcount); in main()
27 pb = _arb_vec_init(maxcount); in main()
31 count = acb_dirichlet_platt_hardy_z_zeros(pa, n, maxcount, prec); in main()
33 if (count != maxcount) in main()
36 flint_printf("count = %wd maxcount = %wd\n\n", count, maxcount); in main()
54 _arb_vec_clear(pa, maxcount); in main()
55 _arb_vec_clear(pb, maxcount); in main()
/dports/devel/argtable/argtable2-13/src/
H A Darg_file.c110 if (parent->count == parent->hdr.maxcount) in scanfn()
193 int maxcount, in arg_filen() argument
200 maxcount = (maxcount<mincount) ? mincount : maxcount; in arg_filen()
203 + sizeof(char*) * maxcount /* storage for filename[maxcount] array */ in arg_filen()
204 + sizeof(char*) * maxcount /* storage for basename[maxcount] array */ in arg_filen()
205 + sizeof(char*) * maxcount; /* storage for extension[maxcount] array */ in arg_filen()
219 result->hdr.maxcount = maxcount; in arg_filen()
228 result->basename = result->filename + maxcount; in arg_filen()
229 result->extension = result->basename + maxcount; in arg_filen()
233 for (i=0; i<maxcount; i++) in arg_filen()
/dports/biology/bbmap/bbmap/current/kmer/
H A DKmerNode1D.java113 …public final boolean dumpKmersAsBytes(ByteStreamWriter bsw, int k, int mincount, int maxcount, Ato… in dumpKmersAsBytes() argument
119 if(left!=null){left.dumpKmersAsBytes(bsw, k, mincount, maxcount, remaining);} in dumpKmersAsBytes()
120 if(right!=null){right.dumpKmersAsBytes(bsw, k, mincount, maxcount, remaining);} in dumpKmersAsBytes()
137 if(left!=null){left.dumpKmersAsBytes_MT(bsw, bb, k, mincount, maxcount, remaining);} in dumpKmersAsBytes_MT()
138 if(right!=null){right.dumpKmersAsBytes_MT(bsw, bb, k, mincount, maxcount, remaining);} in dumpKmersAsBytes_MT()
143 protected final StringBuilder dumpKmersAsText(StringBuilder sb, int k, int mincount, int maxcount){ in dumpKmersAsText() argument
147 if(left!=null){left.dumpKmersAsText(sb, k, mincount, maxcount);} in dumpKmersAsText()
148 if(right!=null){right.dumpKmersAsText(sb, k, mincount, maxcount);} in dumpKmersAsText()
153 protected final ByteBuilder dumpKmersAsText(ByteBuilder bb, int k, int mincount, int maxcount){ in dumpKmersAsText() argument
157 if(left!=null){left.dumpKmersAsText(bb, k, mincount, maxcount);} in dumpKmersAsText()
[all …]
/dports/biology/bbmap/bbmap/current/ukmer/
H A DKmerNodeU1D.java113 …public final boolean dumpKmersAsBytes(ByteStreamWriter bsw, int k, int mincount, int maxcount, Ato… in dumpKmersAsBytes() argument
119 if(left!=null){left.dumpKmersAsBytes(bsw, k, mincount, maxcount, remaining);} in dumpKmersAsBytes()
120 if(right!=null){right.dumpKmersAsBytes(bsw, k, mincount, maxcount, remaining);} in dumpKmersAsBytes()
137 if(left!=null){left.dumpKmersAsBytes_MT(bsw, bb, k, mincount, maxcount, remaining);} in dumpKmersAsBytes_MT()
138 if(right!=null){right.dumpKmersAsBytes_MT(bsw, bb, k, mincount, maxcount, remaining);} in dumpKmersAsBytes_MT()
143 protected final StringBuilder dumpKmersAsText(StringBuilder sb, int k, int mincount, int maxcount){ in dumpKmersAsText() argument
147 if(left!=null){left.dumpKmersAsText(sb, k, mincount, maxcount);} in dumpKmersAsText()
148 if(right!=null){right.dumpKmersAsText(sb, k, mincount, maxcount);} in dumpKmersAsText()
153 protected final ByteBuilder dumpKmersAsText(ByteBuilder bb, int k, int mincount, int maxcount){ in dumpKmersAsText() argument
157 if(left!=null){left.dumpKmersAsText(bb, k, mincount, maxcount);} in dumpKmersAsText()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
681 Py_ssize_t maxcount) in stringlib_replace() argument
683 if (maxcount < 0) { in stringlib_replace()
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
681 Py_ssize_t maxcount) in stringlib_replace() argument
683 if (maxcount < 0) { in stringlib_replace()
[all …]
/dports/lang/python-tools/Python-3.8.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
681 Py_ssize_t maxcount) in stringlib_replace() argument
683 if (maxcount < 0) { in stringlib_replace()
[all …]
/dports/lang/python-legacy/Python-2.7.18/Objects/stringlib/
H A Dsplit.h59 Py_ssize_t maxcount) in stringlib_split_whitespace() argument
69 while (maxcount-- > 0) { in stringlib_split_whitespace()
108 Py_ssize_t maxcount) in stringlib_split_char() argument
118 while ((j < str_len) && (maxcount-- > 0)) { in stringlib_split_char()
151 Py_ssize_t maxcount) in stringlib_split() argument
168 while (maxcount-- > 0) { in stringlib_split()
208 while (maxcount-- > 0) { in stringlib_rsplit_whitespace()
249 Py_ssize_t maxcount) in stringlib_rsplit_char() argument
259 while ((i >= 0) && (maxcount-- > 0)) { in stringlib_rsplit_char()
293 Py_ssize_t maxcount) in stringlib_rsplit() argument
[all …]
/dports/lang/python37/Python-3.7.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
/dports/lang/python311/Python-3.11.0a3/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
687 if (maxcount < 0) { in stringlib_replace()
688 maxcount = PY_SSIZE_T_MAX; in stringlib_replace()
[all …]
/dports/lang/python27/Python-2.7.18/Objects/stringlib/
H A Dsplit.h59 Py_ssize_t maxcount) in stringlib_split_whitespace() argument
69 while (maxcount-- > 0) { in stringlib_split_whitespace()
108 Py_ssize_t maxcount) in stringlib_split_char() argument
118 while ((j < str_len) && (maxcount-- > 0)) { in stringlib_split_char()
151 Py_ssize_t maxcount) in stringlib_split() argument
168 while (maxcount-- > 0) { in stringlib_split()
208 while (maxcount-- > 0) { in stringlib_rsplit_whitespace()
249 Py_ssize_t maxcount) in stringlib_rsplit_char() argument
259 while ((i >= 0) && (maxcount-- > 0)) { in stringlib_rsplit_char()
293 Py_ssize_t maxcount) in stringlib_rsplit() argument
[all …]
/dports/lang/python310/Python-3.10.1/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
687 if (maxcount < 0) { in stringlib_replace()
688 maxcount = PY_SSIZE_T_MAX; in stringlib_replace()
[all …]
/dports/lang/python38/Python-3.8.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
H A Dtransmogrify.h259 Py_ssize_t maxcount) in countchar() argument
267 if (count >= maxcount) in countchar()
293 if (maxcount <= self_len) { in stringlib_replace_interleave()
294 count = maxcount; in stringlib_replace_interleave()
409 maxcount); in stringlib_replace_delete_substring()
480 while (--maxcount > 0) { in stringlib_replace_single_character_in_place()
530 while ( --maxcount > 0) { in stringlib_replace_substring_in_place()
625 maxcount); in stringlib_replace_substring()
681 Py_ssize_t maxcount) in stringlib_replace() argument
683 if (maxcount < 0) { in stringlib_replace()
[all …]
/dports/lang/python39/Python-3.9.9/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
H A Dsplit.h59 Py_ssize_t maxcount) in stringlib_split_whitespace() argument
69 while (maxcount-- > 0) { in stringlib_split_whitespace()
108 Py_ssize_t maxcount) in stringlib_split_char() argument
118 while ((j < str_len) && (maxcount-- > 0)) { in stringlib_split_char()
151 Py_ssize_t maxcount) in stringlib_split() argument
168 while (maxcount-- > 0) { in stringlib_split()
208 while (maxcount-- > 0) { in stringlib_rsplit_whitespace()
249 Py_ssize_t maxcount) in stringlib_rsplit_char() argument
259 while ((i >= 0) && (maxcount-- > 0)) { in stringlib_rsplit_char()
293 Py_ssize_t maxcount) in stringlib_rsplit() argument
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Objects/stringlib/
H A Dsplit.h56 Py_ssize_t maxcount) in STRINGLIB()
66 while (maxcount-- > 0) { in STRINGLIB()
105 Py_ssize_t maxcount) in STRINGLIB()
115 while ((j < str_len) && (maxcount-- > 0)) { in STRINGLIB()
148 Py_ssize_t maxcount) in STRINGLIB()
165 while (maxcount-- > 0) { in STRINGLIB()
205 while (maxcount-- > 0) { in STRINGLIB()
246 Py_ssize_t maxcount) in STRINGLIB()
256 while ((i >= 0) && (maxcount-- > 0)) { in STRINGLIB()
290 Py_ssize_t maxcount) in STRINGLIB()
[all …]

12345678910>>...73