Home
last modified time | relevance | path

Searched refs:actualLength (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/Globalization/
H A DIdnMapping.Unix.cs22 int actualLength; in GetAsciiCore()
26actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, outputStack, estimatedL… in GetAsciiCore()
27 if (actualLength > 0 && actualLength <= estimatedLength) in GetAsciiCore()
29 return new string(outputStack, 0, actualLength); in GetAsciiCore()
34 actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, null, 0); in GetAsciiCore()
36 if (actualLength == 0) in GetAsciiCore()
41 char[] outputHeap = new char[actualLength]; in GetAsciiCore()
44actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, pOutputHeap, actualLeng… in GetAsciiCore()
45 if (actualLength == 0 || actualLength > outputHeap.Length) in GetAsciiCore()
49 return new string(pOutputHeap, 0, actualLength); in GetAsciiCore()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/Globalization/
H A DIdnMapping.Unix.cs22 int actualLength; in GetAsciiCore()
26actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, outputStack, estimatedL… in GetAsciiCore()
27 if (actualLength > 0 && actualLength <= estimatedLength) in GetAsciiCore()
29 return new string(outputStack, 0, actualLength); in GetAsciiCore()
34 actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, null, 0); in GetAsciiCore()
36 if (actualLength == 0) in GetAsciiCore()
41 char[] outputHeap = new char[actualLength]; in GetAsciiCore()
44actualLength = Interop.GlobalizationInterop.ToAscii(flags, unicode, count, pOutputHeap, actualLeng… in GetAsciiCore()
45 if (actualLength == 0 || actualLength > outputHeap.Length) in GetAsciiCore()
49 return new string(pOutputHeap, 0, actualLength); in GetAsciiCore()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/archive/
H A Dutil_test.go652 actualLength := len(spec.Exclusions)
653 …al(t, expectedLength, actualLength, "there were %d entries instead of %d for the exclusions genera…
709 actualLength := len(spec.Exclusions)
801 actualLength := len(spec.Exclusions)
809 actualLength = len(spec.Inclusions)
911 actualLength := len(spec.Exclusions)
918 actualLength = len(spec.Inclusions)
980 actualLength := len(spec.Exclusions)
987 actualLength = len(spec.Inclusions)
1056 actualLength := len(spec.Exclusions)
[all …]
/dports/misc/ktouch/ktouch-21.12.3/src/declarativeitems/
H A Dtraininglinecore.cpp104 const int actualLength = m_actualLine.length(); in nextCharacter() local
106 if (actualLength < m_referenceLine.length()) in nextCharacter()
108 return m_referenceLine.at(actualLength); in nextCharacter()
272 const int actualLength = m_actualLine.length(); in add() local
274 const QString newText = text.left(maxLength - actualLength); in add()
300 m_actualLine += text.leftRef(maxLength - actualLength); in add()
306 const int actualLength = m_actualLine.length(); in backspace() local
308 if (actualLength > 0 && Preferences::enforceTypingErrorCorrection()) in backspace()
310 m_actualLine = m_actualLine.left(actualLength - 1); in backspace()
322 const int actualLength = m_actualLine.length(); in deleteStartOfWord() local
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/
H A DResourceDragAdapterAssistant.java79 int actualLength = 0; in setDragData() local
85 fileNames[actualLength++] = location.toOSString(); in setDragData()
88 if (actualLength > 0) { in setDragData()
90 if (actualLength < length) { in setDragData()
92 fileNames = new String[actualLength]; in setDragData()
93 System.arraycopy(tempFileNames, 0, fileNames, 0, actualLength); in setDragData()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/mapping/
H A DResourceDragAdapterAssistant.java71 int actualLength = 0; in setDragData() local
77 fileNames[actualLength++] = location.toOSString(); in setDragData()
80 if (actualLength > 0) { in setDragData()
82 if (actualLength < length) { in setDragData()
84 fileNames = new String[actualLength]; in setDragData()
85 System.arraycopy(tempFileNames, 0, fileNames, 0, actualLength); in setDragData()
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/google/gopacket/layers/
H A Dpflog.go63 actualLength := int(pf.Length) + 3
64 if len(data) < actualLength {
65 return fmt.Errorf("PFLog data size < %d", actualLength)
67 pf.Contents = data[:actualLength]
68 pf.Payload = data[actualLength:]
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/google/gopacket/layers/
H A Dpflog.go63 actualLength := int(pf.Length) + 3
64 if len(data) < actualLength {
65 return fmt.Errorf("PFLog data size < %d", actualLength)
67 pf.Contents = data[:actualLength]
68 pf.Payload = data[actualLength:]
/dports/misc/fq/fq-0.0.2/vendor/github.com/google/gopacket/layers/
H A Dpflog.go63 actualLength := int(pf.Length) + 3
64 if len(data) < actualLength {
65 return fmt.Errorf("PFLog data size < %d", actualLength)
67 pf.Contents = data[:actualLength]
68 pf.Payload = data[actualLength:]
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/sheenbidi/Source/
H A DSBBase.c34 SB_INTERNAL void SBUIntegerNormalizeRange(SBUInteger actualLength, in SBUIntegerNormalizeRange() argument
67 if (*rangeOffset < actualLength) { in SBUIntegerNormalizeRange()
70 if (*rangeOffset <= possibleLimit && possibleLimit <= actualLength) { in SBUIntegerNormalizeRange()
73 *rangeLength = actualLength - *rangeOffset; in SBUIntegerNormalizeRange()
81 SB_INTERNAL SBBoolean SBUIntegerVerifyRange(SBUInteger actualLength, in SBUIntegerVerifyRange() argument
86 return rangeOffset < actualLength in SBUIntegerVerifyRange()
88 && possibleLimit <= actualLength; in SBUIntegerVerifyRange()
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/plugins/pulseaudio/
H A Dqaudioinput_pulse.cpp446 qint64 actualLength = 0; in read() local
450 actualLength = m_audioSource->write(adjusted); in read()
452 if (actualLength < qint64(readLength)) { in read()
458 return actualLength; in read()
461 actualLength = qMin(static_cast<int>(len - readBytes), static_cast<int>(readLength)); in read()
462 applyVolume(audioBuffer, data + readBytes, actualLength); in read()
466 qDebug() << "QPulseAudioInput::read -- wrote " << actualLength << " to client"; in read()
469 if (actualLength < qint64(readLength)) { in read()
473 int diff = readLength - actualLength; in read()
480 m_totalTimeValue += actualLength; in read()
[all …]
/dports/databases/percona56-server/percona-server-5.6.51-91.0/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java257 int actualLength; in getString() local
262 actualLength = lengths[index]; in getString()
265 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
269 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
271 actualLength += 256 * length2; in getString()
280 byteBuffer.limit(offset + actualLength); in getString()
296 int actualLength = lengths[index]; in getBytes() local
302 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
306 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
308 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/percona56-client/percona-server-5.6.51-91.0/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java257 int actualLength; in getString() local
262 actualLength = lengths[index]; in getString()
265 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
269 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
271 actualLength += 256 * length2; in getString()
280 byteBuffer.limit(offset + actualLength); in getString()
296 int actualLength = lengths[index]; in getBytes() local
302 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
306 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
308 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java257 int actualLength; in getString() local
262 actualLength = lengths[index]; in getString()
265 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
269 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
271 actualLength += 256 * length2; in getString()
280 byteBuffer.limit(offset + actualLength); in getString()
296 int actualLength = lengths[index]; in getBytes() local
302 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
306 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
308 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java254 int actualLength; in getString() local
259 actualLength = lengths[index]; in getString()
262 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
266 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
268 actualLength += 256 * length2; in getString()
277 byteBuffer.limit(offset + actualLength); in getString()
293 int actualLength = lengths[index]; in getBytes() local
299 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
303 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
305 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java257 int actualLength; in getString() local
262 actualLength = lengths[index]; in getString()
265 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
269 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
271 actualLength += 256 * length2; in getString()
280 byteBuffer.limit(offset + actualLength); in getString()
296 int actualLength = lengths[index]; in getBytes() local
302 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
306 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
308 actualLength += 256 * length2; in getBytes()
[all …]
/dports/databases/mysql56-client/mysql-5.6.51/storage/ndb/clusterj/clusterj-tie/src/main/java/com/mysql/clusterj/tie/
H A DResultDataImpl.java257 int actualLength; in getString() local
262 actualLength = lengths[index]; in getString()
265 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
269 actualLength = (byteBuffer.get(offset) + 256) % 256; in getString()
271 actualLength += 256 * length2; in getString()
280 byteBuffer.limit(offset + actualLength); in getString()
296 int actualLength = lengths[index]; in getBytes() local
302 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
306 actualLength = (byteBuffer.get(offset) + 256) % 256; in getBytes()
308 actualLength += 256 * length2; in getBytes()
[all …]
/dports/math/giacxcas/fltk-1.3.0/src/
H A Dfl_set_fonts_mac.cxx127 ByteCount actualLength = 511; in set_fonts() local
130 actualLength, oName, &actualLength, &oCountAgain); in set_fonts()
132 if(actualLength > 511) in set_fonts()
135 oName[actualLength] = 0; in set_fonts()
/dports/x11-toolkits/ntk/ntk/src/
H A Dfl_set_fonts_mac.cxx127 ByteCount actualLength = 511; in set_fonts() local
130 actualLength, oName, &actualLength, &oCountAgain); in set_fonts()
132 if(actualLength > 511) in set_fonts()
135 oName[actualLength] = 0; in set_fonts()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/
H A DCopyAction.java111 int actualLength = 0; in run() local
118 fileNames[actualLength++] = location.toOSString(); in run()
126 if (actualLength < length) { in run()
128 fileNames = new String[actualLength]; in run()
129 System.arraycopy(tempFileNames, 0, fileNames, 0, actualLength); in run()

12345678910>>...14