Home
last modified time | relevance | path

Searched refs:bytesOut (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/dports/devel/avro-cpp/avro-cpp-1.11.0/impl/
H A DZigzag.cc31 size_t bytesOut = 0; in encodeInt64() local
33 output[bytesOut++] = (v | 0x80); in encodeInt64()
37 output[bytesOut++] = v; in encodeInt64()
38 return bytesOut; in encodeInt64()
47 size_t bytesOut = 0; in encodeInt32() local
49 output[bytesOut++] = (v | 0x80); in encodeInt32()
53 output[bytesOut++] = v; in encodeInt32()
54 return bytesOut; in encodeInt32()
/dports/science/py-rmf/rmf-1.3.1/src/avrocpp/impl/
H A DZigzag.cc48 size_t bytesOut = 1; in encodeInt64() local
50 output[bytesOut - 1] |= 0x80; in encodeInt64()
51 output[bytesOut++] = (val & mask); in encodeInt64()
54 return bytesOut; in encodeInt64()
64 size_t bytesOut = 1; in encodeInt32() local
66 output[bytesOut - 1] |= 0x80; in encodeInt32()
67 output[bytesOut++] = (val & mask); in encodeInt32()
70 return bytesOut; in encodeInt32()
/dports/science/rmf/rmf-1.3.1/src/avrocpp/impl/
H A DZigzag.cc48 size_t bytesOut = 1; in encodeInt64() local
50 output[bytesOut - 1] |= 0x80; in encodeInt64()
51 output[bytesOut++] = (val & mask); in encodeInt64()
54 return bytesOut; in encodeInt64()
64 size_t bytesOut = 1; in encodeInt32() local
66 output[bytesOut - 1] |= 0x80; in encodeInt32()
67 output[bytesOut++] = (val & mask); in encodeInt32()
70 return bytesOut; in encodeInt32()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/
H A DTaskInfo.java23 private final long bytesOut; field in TaskInfo
28 public TaskInfo(long bytesIn, int recsIn, long bytesOut, int recsOut, in TaskInfo() argument
30 this(bytesIn, recsIn, bytesOut, recsOut, maxMemory, in TaskInfo()
34 public TaskInfo(long bytesIn, int recsIn, long bytesOut, int recsOut, in TaskInfo() argument
38 this.bytesOut = bytesOut; in TaskInfo()
64 return bytesOut; in getOutputBytes()
/dports/devel/hadoop/hadoop-1.2.1/src/tools/org/apache/hadoop/tools/rumen/
H A DTaskInfo.java23 private final long bytesOut; field in TaskInfo
28 public TaskInfo(long bytesIn, int recsIn, long bytesOut, int recsOut, in TaskInfo() argument
30 this(bytesIn, recsIn, bytesOut, recsOut, maxMemory, in TaskInfo()
34 public TaskInfo(long bytesIn, int recsIn, long bytesOut, int recsOut, in TaskInfo() argument
38 this.bytesOut = bytesOut; in TaskInfo()
64 return bytesOut; in getOutputBytes()
/dports/emulators/mess/mame-mame0226/src/osd/modules/midi/
H A Dportmidi.cpp225 int bytesOut = 0; in read() local
245 bytesOut += 3; in read()
251 bytesOut += 2; in read()
256 bytesOut++; in read()
269 bytesOut++; in read()
287 bytesOut += 2; in read()
299 bytesOut += 4; in read()
306 bytesOut += 1; in read()
314 bytesOut += 3; in read()
334 bytesOut += 3; in read()
[all …]
/dports/emulators/mame/mame-mame0226/src/osd/modules/midi/
H A Dportmidi.cpp225 int bytesOut = 0; in read() local
245 bytesOut += 3; in read()
251 bytesOut += 2; in read()
256 bytesOut++; in read()
269 bytesOut++; in read()
287 bytesOut += 2; in read()
299 bytesOut += 4; in read()
306 bytesOut += 1; in read()
314 bytesOut += 3; in read()
334 bytesOut += 3; in read()
[all …]
/dports/databases/p5-RRD-Simple/RRD-Simple-1.44/t/
H A D29on_missing_ds.t26 'bytesDropped,bytesIn,bytesOut,faultsPerSec,totalFaults',
27 'bytesDropped,bytesIn,bytesOut,faultsPerSec',
28 'bytesDropped,bytesIn,bytesOut,faultsPerSec',
29 'bytesDropped,bytesIn,bytesOut,faultsPerSec,totalFaults',
41 bytesOut => 'GAUGE',
46 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesDropped,bytesIn,bytesOut,faultsPerSec',
60 bytesOut => 389,
H A D21synopsis.t23 # bytesIn, bytesOut and faultsPerSec. Data retention
28 bytesOut => 'GAUGE',
33 # 3 data sources called bytesIn, bytesOut and faultsPerSec.
37 bytesOut => 389,
45 ok(join(',',sort $rrd->sources) eq 'bytesIn,bytesOut,faultsPerSec',
H A D21synopsis_old.t23 # bytesIn, bytesOut and faultsPerSec. Data retention
28 bytesOut => 'GAUGE',
33 # 3 data sources called bytesIn, bytesOut and faultsPerSec.
37 bytesOut => 389,
45 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesIn,bytesOut,faultsPerSec',
/dports/textproc/dom4j/dom4j-1.6.1/src/test/org/dom4j/
H A DSerializeTest.java71 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream(); in testSerializeXPath() local
72 ObjectOutputStream out = new ObjectOutputStream(bytesOut); in testSerializeXPath()
76 byte[] data = bytesOut.toByteArray(); in testSerializeXPath()
93 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream(); in testSerialize() local
94 ObjectOutputStream out = new ObjectOutputStream(bytesOut); in testSerialize()
98 byte[] data = bytesOut.toByteArray(); in testSerialize()
/dports/www/grails/grails-1.3.6/src/test/org/codehaus/groovy/grails/web/util/
H A DStreamByteBufferTest.java63 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream(byteBuffer in testToInputStream() local
65 copy(input, bytesOut, 2048); in testToInputStream()
66 byte[] result = bytesOut.toByteArray(); in testToInputStream()
158 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream(byteBuffer.totalBytesUnread()); in testWriteTo() local
159 byteBuffer.writeTo(bytesOut); in testWriteTo()
160 byte[] result = bytesOut.toByteArray(); in testWriteTo()
167 ByteArrayOutputStream bytesOut = new ByteArrayOutputStream(byteBuffer.totalBytesUnread()); in testToInputStreamOneByOne() local
168 copyOneByOne(input, bytesOut); in testToInputStreamOneByOne()
169 byte[] result = bytesOut.toByteArray(); in testToInputStreamOneByOne()
/dports/audio/nas/nas-1.9.4/server/dia/
H A Dauprocess.c389 bytesOut = aumin(bytesOut, flowEl->numBytes); in readWaveForm()
391 d += bytesOut; in readWaveForm()
457 bytesOut = in readBucket()
485 bytesOut, in readClient() local
505 bytesOut = in readClient()
518 d += bytesOut; in readClient()
519 size -= bytesOut; in readClient()
521 bytesOut += in readClient()
619 bytesOut = in writeClient()
636 bytesOut += n; in writeClient()
[all …]
/dports/net-im/kopete/kopete-21.12.3/protocols/groupwise/libgroupwise/
H A Dcoreprotocol.cpp212 QByteArray bytesOut; in outgoingTransfer() local
213 QTextStream dout(&bytesOut, QIODevice::WriteOnly); in outgoingTransfer()
243 debug(QStringLiteral("data out: %1").arg(bytesOut.data())); in outgoingTransfer()
244 emit outgoingData(bytesOut); in outgoingTransfer()
263 QByteArray bytesOut; in fieldsToWire() local
264 QDataStream dout(&bytesOut, QIODevice::WriteOnly); in fieldsToWire()
342 emit outgoingData(bytesOut); in fieldsToWire()
354 QByteArray bytesOut; in fieldsToWire() local
355 QDataStream dout(&bytesOut, QIODevice::WriteOnly); in fieldsToWire()
359 emit outgoingData(bytesOut); in fieldsToWire()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/rmi/testlibrary/
H A DTestSocketFactory.java597 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
638 bytesOut++; in write()
645 bytesOut++; in write()
658 name, replaceBytes.length, bytesOut, bytesOut); in write()
661 bytesOut += replaceBytes.length; in write()
667 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
670 bytesOut += matchIndex; in write()
678 bytesOut++; in write()
689 name, matchIndex, bytesOut, bytesOut); in flush()
692 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/rmi/testlibrary/
H A DTestSocketFactory.java597 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
638 bytesOut++; in write()
645 bytesOut++; in write()
658 name, replaceBytes.length, bytesOut, bytesOut); in write()
661 bytesOut += replaceBytes.length; in write()
667 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
670 bytesOut += matchIndex; in write()
678 bytesOut++; in write()
689 name, matchIndex, bytesOut, bytesOut); in flush()
692 bytesOut += matchIndex; in flush()
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/random/
H A DAbstractRandomGenerator.java106 int bytesOut = 0; in nextBytes() local
107 while (bytesOut < bytes.length) { in nextBytes()
113 bytes[bytesOut++] = (byte) randInt; in nextBytes()
114 if (bytesOut == bytes.length) { in nextBytes()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/transport/
H A Dmessage_compressor_base.h131 void counterHitCompress(int64_t bytesIn, int64_t bytesOut) { in counterHitCompress() argument
133 _compressBytesOut.addAndFetch(bytesOut); in counterHitCompress()
139 void counterHitDecompress(int64_t bytesIn, int64_t bytesOut) { in counterHitDecompress() argument
141 _decompressBytesOut.addAndFetch(bytesOut); in counterHitDecompress()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java623 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
664 bytesOut++; in write()
671 bytesOut++; in write()
684 name, replaceBytes.length, bytesOut, bytesOut); in write()
687 bytesOut += replaceBytes.length; in write()
694 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
697 bytesOut += matchIndex; in write()
705 bytesOut++; in write()
716 name, matchIndex, bytesOut, bytesOut); in flush()
719 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/rmi/testlibrary/
H A DTestSocketFactory.java635 private int bytesOut = 0; field in TestSocketFactory.MatchReplaceOutputStream
676 bytesOut++; in write()
683 bytesOut++; in write()
696 name, replaceBytes.length, bytesOut, bytesOut); in write()
699 bytesOut += replaceBytes.length; in write()
706 name, matchIndex, bytesOut, bytesOut, matchBytes[matchIndex], b); in write()
709 bytesOut += matchIndex; in write()
717 bytesOut++; in write()
728 name, matchIndex, bytesOut, bytesOut); in flush()
731 bytesOut += matchIndex; in flush()
[all …]

12345678910>>...16