Home
last modified time | relevance | path

Searched refs:rhsLength (Results 1 – 25 of 93) sorted by relevance

1234

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 …ult Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const in collate()
56 int lmin = lhsLength < rhsLength ? lhsLength : rhsLength; in collate()
67 if (lhsLength == rhsLength) in collate()
70 return (lhsLength > rhsLength) ? Greater : Less; in collate()
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 …ult Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const in collate()
56 int lmin = lhsLength < rhsLength ? lhsLength : rhsLength; in collate()
67 if (lhsLength == rhsLength) in collate()
70 return (lhsLength > rhsLength) ? Greater : Less; in collate()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 …ult Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const in collate()
56 int lmin = lhsLength < rhsLength ? lhsLength : rhsLength; in collate()
67 if (lhsLength == rhsLength) in collate()
70 return (lhsLength > rhsLength) ? Greater : Less; in collate()
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 …ult Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const in collate()
56 int lmin = lhsLength < rhsLength ? lhsLength : rhsLength; in collate()
67 if (lhsLength == rhsLength) in collate()
70 return (lhsLength > rhsLength) ? Greater : Less; in collate()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/osc/osc/
H A DOscOutboundPacketStream.cpp336 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs.addressPattern)); in operator <<() local
337 messageCursor_ += rhsLength + 1; in operator <<()
340 unsigned long i = rhsLength + 1; in operator <<()
578 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs)); in operator <<() local
579 argumentCurrent_ += rhsLength + 1; in operator <<()
582 unsigned long i = rhsLength + 1; in operator <<()
598 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs)); in operator <<() local
599 argumentCurrent_ += rhsLength + 1; in operator <<()
602 unsigned long i = rhsLength + 1; in operator <<()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/osc/osc/
H A DOscOutboundPacketStream.cpp336 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs.addressPattern));
337 messageCursor_ += rhsLength + 1;
340 unsigned long i = rhsLength + 1;
578 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs));
579 argumentCurrent_ += rhsLength + 1;
582 unsigned long i = rhsLength + 1;
598 unsigned long rhsLength = static_cast<unsigned long>(strlen(rhs));
599 argumentCurrent_ += rhsLength + 1;
602 unsigned long i = rhsLength + 1;
/dports/audio/faust/faust-2.37.3/architecture/osclib/oscpack/osc/
H A DOscOutboundPacketStream.cpp364 std::size_t rhsLength = std::strlen(rhs.addressPattern); in operator <<() local
365 messageCursor_ += rhsLength + 1; in operator <<()
368 std::size_t i = rhsLength + 1; in operator <<()
606 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
607 argumentCurrent_ += rhsLength + 1; in operator <<()
610 std::size_t i = rhsLength + 1; in operator <<()
626 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
627 argumentCurrent_ += rhsLength + 1; in operator <<()
630 std::size_t i = rhsLength + 1; in operator <<()
/dports/audio/madronalib/madronalib-1.6-1016-g103895f/external/oscpack/osc/
H A DOscOutboundPacketStream.cpp340 std::size_t rhsLength = std::strlen(rhs.addressPattern); in operator <<() local
341 messageCursor_ += rhsLength + 1; in operator <<()
344 std::size_t i = rhsLength + 1; in operator <<()
574 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
575 argumentCurrent_ += rhsLength + 1; in operator <<()
578 std::size_t i = rhsLength + 1; in operator <<()
594 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
595 argumentCurrent_ += rhsLength + 1; in operator <<()
598 std::size_t i = rhsLength + 1; in operator <<()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/oscpack_1_1_0/osc/
H A DOscOutboundPacketStream.cpp364 std::size_t rhsLength = std::strlen(rhs.addressPattern); in operator <<() local
365 messageCursor_ += rhsLength + 1; in operator <<()
368 std::size_t i = rhsLength + 1; in operator <<()
606 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
607 argumentCurrent_ += rhsLength + 1; in operator <<()
610 std::size_t i = rhsLength + 1; in operator <<()
626 std::size_t rhsLength = std::strlen(rhs); in operator <<() local
627 argumentCurrent_ += rhsLength + 1; in operator <<()
630 std::size_t i = rhsLength + 1; in operator <<()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Container/
H A DStr.h167 unsigned rhsLength = CStringLength(rhs);
168 Resize(rhsLength);
169 CopyChars(buffer_, rhs, rhsLength);
187 unsigned rhsLength = CStringLength(rhs);
189 Resize(length_ + rhsLength);
190 CopyChars(buffer_ + oldLength, rhs, rhsLength);
243 unsigned rhsLength = CStringLength(rhs);
245 ret.Resize(length_ + rhsLength);
247 CopyChars(ret.buffer_ + length_, rhs, rhsLength);
/dports/multimedia/gpac-libgpac/gpac-1.0.0/applications/osmo4_android_studio/app/src/main/java/com/gpac/Osmo4/extra/
H A DFileManager.java110 long lhsLength = 0, rhsLength = 0, diff; in sortBySize()
114 if(rhs.isDirectory()) rhsLength = getFolderSize(rhs); in sortBySize()
115 if(rhs.isFile()) rhsLength = rhs.length(); in sortBySize()
119 diff = rhsLength - lhsLength; in sortBySize()
123 diff = lhsLength - rhsLength; in sortBySize()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/applications/osmo4_android_studio/app/src/main/java/com/gpac/Osmo4/extra/
H A DFileManager.java110 long lhsLength = 0, rhsLength = 0, diff; in sortBySize()
114 if(rhs.isDirectory()) rhsLength = getFolderSize(rhs); in sortBySize()
115 if(rhs.isFile()) rhsLength = rhs.length(); in sortBySize()
119 diff = rhsLength - lhsLength; in sortBySize()
123 diff = lhsLength - rhsLength; in sortBySize()
/dports/net/gscloud/gscloud-0.11.0/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/security/vault/vault-1.8.2/vendor/sigs.k8s.io/structured-merge-diff/v3/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/containerd/containerd/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/sysutils/chaoskube/chaoskube-0.22.0/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/containerd/containerd/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/containerd/containerd/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/containerd/containerd/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net/inlets/inlets-3.0.2/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/net/inlets/inlets-3.0.2/vendor/sigs.k8s.io/structured-merge-diff/v4/structured-merge-diff-4.0.2/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/security/vault/vault-1.8.2/vendor/github.com/containerd/containerd/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/vendor/sigs.k8s.io/structured-merge-diff/v4/value/
H A Dmap.go145 var lhsLength, rhsLength int
152 rhsLength = rhs.Length()
153 if rhsLength > orderedLength {
154 orderedLength = rhsLength
157 if lhsLength == 0 && rhsLength == 0 {

1234