Home
last modified time | relevance | path

Searched refs:len_self (Results 1 – 25 of 67) sorted by relevance

123

/dports/net/oha/oha-0.4.7/cargo-crates/average-0.13.1/src/moments/
H A Dkurtosis.rs135 let len_self = self.len().to_f64().unwrap(); in merge() localVariable
137 let len_total = len_self + len_other; in merge()
142 + delta * delta_n*delta_n_sq * len_self*len_other in merge()
143 * (len_self*len_self - len_self*len_other + len_other*len_other) in merge()
144 …+ 6.*delta_n_sq * (len_self*len_self * other.avg.avg.sum_2 + len_other*len_other * self.avg.avg.su… in merge()
145 + 4.*delta_n * (len_self * other.avg.sum_3 - len_other * self.avg.sum_3); in merge()
H A Dskewness.rs131 let len_self = self.len().to_f64().unwrap(); in merge() localVariable
133 let len_total = len_self + len_other; in merge()
137 + delta*delta_n*delta_n * len_self*len_other*(len_self - len_other) in merge()
138 + 3.*delta_n * (len_self * other.avg.sum_2 - len_other * self.avg.sum_2); in merge()
H A Dmean.rs114 let len_self = self.n.to_f64().unwrap(); in merge() localVariable
116 let len_total = len_self + len_other; in merge()
118 self.avg = (len_self * self.avg + len_other * other.avg) / len_total; in merge()
H A Dvariance.rs162 let len_self = self.len().to_f64().unwrap(); in merge() localVariable
164 let len_total = len_self + len_other; in merge()
167 self.sum_2 += other.sum_2 + delta*delta * len_self * len_other / len_total; in merge()
/dports/textproc/gdome2/gdome2-0.8.1/libgdome/gdomecore/
H A Dgdome-xml-str.c278 int len_self, len_str; in gdome_xml_str_endsWith() local
284 len_self = strlen (self->str); in gdome_xml_str_endsWith()
287 if (len_str > len_self) in gdome_xml_str_endsWith()
290 if(xmlStrEqual((xmlChar *)&(self->str[len_self-len_str]), (xmlChar *)suffix->str)) in gdome_xml_str_endsWith()
334 int len_self, len_str; in gdome_xml_str_startsWith() local
340 len_self = strlen (self->str); in gdome_xml_str_startsWith()
343 if (len_str > len_self) in gdome_xml_str_startsWith()
/dports/www/firefox/firefox-99.0/third_party/python/diskcache/diskcache/
H A Dpersistent.py41 len_self = len(self)
44 if len_self != len_that:
54 return seq_op(len_self, len_that)
146 len_self = len(self)
149 if index >= len_self:
160 if index < -len_self:
605 len_self = len(self)
607 if not len_self:
611 steps %= len_self
622 steps %= len_self
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/diskcache/diskcache/
H A Dpersistent.py41 len_self = len(self)
44 if len_self != len_that:
54 return seq_op(len_self, len_that)
146 len_self = len(self)
149 if index >= len_self:
160 if index < -len_self:
605 len_self = len(self)
607 if not len_self:
611 steps %= len_self
622 steps %= len_self
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/diskcache/diskcache/
H A Dpersistent.py41 len_self = len(self)
44 if len_self != len_that:
54 return seq_op(len_self, len_that)
146 len_self = len(self)
149 if index >= len_self:
160 if index < -len_self:
605 len_self = len(self)
607 if not len_self:
611 steps %= len_self
622 steps %= len_self
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/diskcache/diskcache/
H A Dpersistent.py41 len_self = len(self)
44 if len_self != len_that:
54 return seq_op(len_self, len_that)
146 len_self = len(self)
149 if index >= len_self:
160 if index < -len_self:
605 len_self = len(self)
607 if not len_self:
611 steps %= len_self
622 steps %= len_self
/dports/print/py-pdf/pyPdf-1.13/pyPdf/
H A Dutils.py78 len_self = len(self)
81 index = len_self + index
82 if index < 0 or index >= len_self:
/dports/security/py-cpe/cpe-1.2.1/cpe/comp/
H A Dcpecomp.py239 len_self = len(self._standard_value)
250 elif len_self == 1:
/dports/print/py-pdf2/PyPDF2-1.26.0/PyPDF2/
H A Dutils.py159 len_self = len(self)
162 index = len_self + index
163 if index < 0 or index >= len_self:
/dports/lang/python27/Python-2.7.18/Objects/
H A Dbufferobject.c270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER)) in buffer_compare()
277 min_len = (len_self < len_other) ? len_self : len_other; in buffer_compare()
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0; in buffer_compare()
H A Ddictobject.c2944 Py_ssize_t len_self, len_other; in dictview_richcompare() local
2957 len_self = PyObject_Size(self); in dictview_richcompare()
2958 if (len_self < 0) in dictview_richcompare()
2969 if (len_self == len_other) in dictview_richcompare()
2976 if (len_self < len_other) in dictview_richcompare()
2981 if (len_self <= len_other) in dictview_richcompare()
2986 if (len_self > len_other) in dictview_richcompare()
2991 if (len_self >= len_other) in dictview_richcompare()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dbufferobject.c270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER)) in buffer_compare()
277 min_len = (len_self < len_other) ? len_self : len_other; in buffer_compare()
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0; in buffer_compare()
/dports/lang/python-legacy/Python-2.7.18/Objects/
H A Dbufferobject.c270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER)) in buffer_compare()
277 min_len = (len_self < len_other) ? len_self : len_other; in buffer_compare()
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0; in buffer_compare()
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_6/
H A Dfrozendictobject.c2847 Py_ssize_t len_self, len_other; in dictview_richcompare() local
2858 len_self = PyObject_Size(self); in dictview_richcompare()
2859 if (len_self < 0) in dictview_richcompare()
2870 if (len_self == len_other) in dictview_richcompare()
2877 if (len_self < len_other) in dictview_richcompare()
2882 if (len_self <= len_other) in dictview_richcompare()
2887 if (len_self > len_other) in dictview_richcompare()
2892 if (len_self >= len_other) in dictview_richcompare()
3155 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
3160 if ((len_other > len_self)) { in dictviews_isdisjoint()
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_7/
H A Dfrozendictobject.c2880 Py_ssize_t len_self, len_other; in dictview_richcompare() local
2891 len_self = PyObject_Size(self); in dictview_richcompare()
2892 if (len_self < 0) in dictview_richcompare()
2903 if (len_self == len_other) in dictview_richcompare()
2910 if (len_self < len_other) in dictview_richcompare()
2915 if (len_self <= len_other) in dictview_richcompare()
2920 if (len_self > len_other) in dictview_richcompare()
2925 if (len_self >= len_other) in dictview_richcompare()
3188 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
3193 if ((len_other > len_self)) { in dictviews_isdisjoint()
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_8/
H A Dfrozendictobject.c3023 Py_ssize_t len_self, len_other; in dictview_richcompare() local
3034 len_self = PyObject_Size(self); in dictview_richcompare()
3035 if (len_self < 0) in dictview_richcompare()
3046 if (len_self == len_other) in dictview_richcompare()
3053 if (len_self < len_other) in dictview_richcompare()
3058 if (len_self <= len_other) in dictview_richcompare()
3063 if (len_self > len_other) in dictview_richcompare()
3068 if (len_self >= len_other) in dictview_richcompare()
3331 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
3336 if ((len_other > len_self)) { in dictviews_isdisjoint()
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_9/
H A Dfrozendictobject.c3007 Py_ssize_t len_self, len_other; in dictview_richcompare() local
3018 len_self = PyObject_Size(self); in dictview_richcompare()
3019 if (len_self < 0) in dictview_richcompare()
3030 if (len_self == len_other) in dictview_richcompare()
3037 if (len_self < len_other) in dictview_richcompare()
3042 if (len_self <= len_other) in dictview_richcompare()
3047 if (len_self > len_other) in dictview_richcompare()
3052 if (len_self >= len_other) in dictview_richcompare()
3314 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
3319 if ((len_other > len_self)) { in dictviews_isdisjoint()
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_10/
H A Dfrozendictobject.c3015 Py_ssize_t len_self, len_other; in dictview_richcompare() local
3026 len_self = PyObject_Size(self); in dictview_richcompare()
3027 if (len_self < 0) in dictview_richcompare()
3038 if (len_self == len_other) in dictview_richcompare()
3045 if (len_self < len_other) in dictview_richcompare()
3050 if (len_self <= len_other) in dictview_richcompare()
3055 if (len_self > len_other) in dictview_richcompare()
3060 if (len_self >= len_other) in dictview_richcompare()
3322 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
3327 if ((len_other > len_self)) { in dictviews_isdisjoint()
/dports/lang/python39/Python-3.9.9/Objects/
H A Ddictobject.c4169 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4180 len_self = PyObject_Size(self); in dictview_richcompare()
4181 if (len_self < 0) in dictview_richcompare()
4192 if (len_self == len_other) in dictview_richcompare()
4199 if (len_self < len_other) in dictview_richcompare()
4204 if (len_self <= len_other) in dictview_richcompare()
4209 if (len_self > len_other) in dictview_richcompare()
4214 if (len_self >= len_other) in dictview_richcompare()
4325 Py_ssize_t len_self; in _PyDictView_Intersect() local
4350 if (len_other > len_self) { in _PyDictView_Intersect()
[all …]
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_9/cpython_src/Objects/
H A Ddictobject.c4159 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4170 len_self = PyObject_Size(self); in dictview_richcompare()
4171 if (len_self < 0) in dictview_richcompare()
4182 if (len_self == len_other) in dictview_richcompare()
4189 if (len_self < len_other) in dictview_richcompare()
4194 if (len_self <= len_other) in dictview_richcompare()
4199 if (len_self > len_other) in dictview_richcompare()
4204 if (len_self >= len_other) in dictview_richcompare()
4315 Py_ssize_t len_self; in _PyDictView_Intersect() local
4340 if (len_other > len_self) { in _PyDictView_Intersect()
[all …]
/dports/lang/python310/Python-3.10.1/Objects/
H A Ddictobject.c4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4301 len_self = PyObject_Size(self); in dictview_richcompare()
4302 if (len_self < 0) in dictview_richcompare()
4313 if (len_self == len_other) in dictview_richcompare()
4320 if (len_self < len_other) in dictview_richcompare()
4325 if (len_self <= len_other) in dictview_richcompare()
4330 if (len_self > len_other) in dictview_richcompare()
4335 if (len_self >= len_other) in dictview_richcompare()
4446 Py_ssize_t len_self; in _PyDictView_Intersect() local
4471 if (len_other > len_self) { in _PyDictView_Intersect()
[all …]
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_10/cpython_src/Objects/
H A Ddictobject.c4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4301 len_self = PyObject_Size(self); in dictview_richcompare()
4302 if (len_self < 0) in dictview_richcompare()
4313 if (len_self == len_other) in dictview_richcompare()
4320 if (len_self < len_other) in dictview_richcompare()
4325 if (len_self <= len_other) in dictview_richcompare()
4330 if (len_self > len_other) in dictview_richcompare()
4335 if (len_self >= len_other) in dictview_richcompare()
4446 Py_ssize_t len_self; in _PyDictView_Intersect() local
4471 if (len_other > len_self) { in _PyDictView_Intersect()
[all …]

123