Home
last modified time | relevance | path

Searched refs:bytesIn (Results 1 – 25 of 396) sorted by relevance

12345678910>>...16

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/
H A DTaskInfo.java21 private final long bytesIn; 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
36 this.bytesIn = bytesIn; in TaskInfo()
49 return bytesIn; in getInputBytes()
/dports/devel/hadoop/hadoop-1.2.1/src/tools/org/apache/hadoop/tools/rumen/
H A DTaskInfo.java21 private final long bytesIn; 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
36 this.bytesIn = bytesIn; in TaskInfo()
49 return bytesIn; in getInputBytes()
/dports/net/tigervnc-server/tigervnc-1.12.0/common/rdr/
H A DZlibInStream.cxx28 : underlying(0), zs(NULL), bytesIn(0) in ZlibInStream()
41 bytesIn = bytesIn_; in setUnderlying()
47 while (bytesIn > 0) { in flushUnderlying()
99 if (length > bytesIn) in fillBuffer()
100 length = bytesIn; in fillBuffer()
109 bytesIn -= length - zs->avail_in; in fillBuffer()
/dports/net/tigervnc-viewer/tigervnc-1.12.0/common/rdr/
H A DZlibInStream.cxx28 : underlying(0), zs(NULL), bytesIn(0) in ZlibInStream()
41 bytesIn = bytesIn_; in setUnderlying()
47 while (bytesIn > 0) { in flushUnderlying()
99 if (length > bytesIn) in fillBuffer()
100 length = bytesIn; in fillBuffer()
109 bytesIn -= length - zs->avail_in; in fillBuffer()
/dports/net/tigervnc-server/tigervnc-1.12.0/java/com/tigervnc/rdr/
H A DZlibInStream.java35 bytesIn = offset = 0; in ZlibInStream()
45 bytesIn = bytesIn_; in setUnderlying()
58 while (bytesIn > 0) { in flushUnderlying()
138 if (zs.avail_in > bytesIn) in decompress()
139 zs.avail_in = bytesIn; in decompress()
146 bytesIn -= zs.next_in_index - underlying.getptr(); in decompress()
156 private int bytesIn; field in ZlibInStream
/dports/net/tigervnc-viewer/tigervnc-1.12.0/java/com/tigervnc/rdr/
H A DZlibInStream.java35 bytesIn = offset = 0; in ZlibInStream()
45 bytesIn = bytesIn_; in setUnderlying()
58 while (bytesIn > 0) { in flushUnderlying()
138 if (zs.avail_in > bytesIn) in decompress()
139 zs.avail_in = bytesIn; in decompress()
146 bytesIn -= zs.next_in_index - underlying.getptr(); in decompress()
156 private int bytesIn; field in ZlibInStream
/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',
40 bytesIn => 'GAUGE',
46 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesDropped,bytesIn,bytesOut,faultsPerSec',
59 bytesIn => 10039,
H A D21synopsis.t23 # bytesIn, bytesOut and faultsPerSec. Data retention
27 bytesIn => 'GAUGE',
33 # 3 data sources called bytesIn, bytesOut and faultsPerSec.
36 bytesIn => 10039,
45 ok(join(',',sort $rrd->sources) eq 'bytesIn,bytesOut,faultsPerSec',
H A D21synopsis_old.t23 # bytesIn, bytesOut and faultsPerSec. Data retention
27 bytesIn => 'GAUGE',
33 # 3 data sources called bytesIn, bytesOut and faultsPerSec.
36 bytesIn => 10039,
45 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesIn,bytesOut,faultsPerSec',
H A D33correct_spelling.t21 bytesIn => 'GAUGE',
27 bytesIn => 10039,
43 bytesIn => 11003,
50 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesIn,bytesOut,faultsPerSec',
H A D26add_source.t27 bytesIn => 'GAUGE',
33 ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesDropped,bytesIn,bytesOut,faultsPerSec',
45 bytesIn => 10039,
50 …ok(join(',',sort $rrd->sources($rrdfile)) eq 'bytesDropped,bytesIn,bytesOut,faultsPerSec,totalFaul…
/dports/devel/eric6/eric6-21.11/eric/eric6/UI/
H A DNumbersWidget.py244 bytesIn = self.sizeBox.itemData(self.sizeBox.currentIndex()) // 8
245 if bytesIn and byteCount > bytesIn:
252 self.octEdit.setText("{0:0{1}o}".format(self.__input, bytesIn * 3))
260 self.hexEdit.setText("{0:0{1}x}".format(self.__input, bytesIn * 2))
268 num = "{0:0{1}b}".format(self.__input, bytesIn * 8)
301 bytesIn = self.sizeBox.itemData(self.sizeBox.currentIndex()) // 8
302 if bytesIn == 0:
303 bytesIn = self.__bytes
307 for _ in range(bytesIn):
360 bytesIn = self.sizeBox.itemData(self.sizeBox.currentIndex()) // 8
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DZipDecompressor.java47 static byte[] decompress(byte[] bytesIn, int offset) throws Exception { in decompress() argument
49 inflater.setInput(bytesIn, offset, bytesIn.length - offset); in decompress()
50 ByteArrayOutputStream stream = new ByteArrayOutputStream(bytesIn.length - offset); in decompress()
/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
132 _compressBytesIn.addAndFetch(bytesIn); in counterHitCompress()
139 void counterHitDecompress(int64_t bytesIn, int64_t bytesOut) { in counterHitDecompress() argument
140 _decompressBytesIn.addAndFetch(bytesIn); in counterHitDecompress()
/dports/archivers/libcomprex/libcomprex-0.3.3/modules/archive/zlib/
H A Dutils.h106 long bytesIn; in __getTotalFileSize() local
109 bytesIn = (long)gzseek(fp, (off_t)(-8), SEEK_END); in __getTotalFileSize()
111 if (bytesIn != -1L) in __getTotalFileSize()
114 bytesIn += 8L; in __getTotalFileSize()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/java/org/opengrok/indexer/history/
H A DGitTagParserTest.java199 ByteArrayInputStream bytesIn = new ByteArrayInputStream(OGK_LOG_BYTES); in shouldParseOpenGrokTagsLog() local
203 parser.processStream(bytesIn); in shouldParseOpenGrokTagsLog()
235 ByteArrayInputStream bytesIn = new ByteArrayInputStream(LOG_BYTES); in shouldParseOneCharacterTags() local
239 parser.processStream(bytesIn); in shouldParseOneCharacterTags()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Base64/
H A DBase64GetEncoderTest.java104 final byte[] bytesIn = "fo".getBytes(US_ASCII); in testWrapEncode1()
108 encoding.write(bytesIn); in testWrapEncode1()
125 final byte[] bytesIn = "fo".getBytes(US_ASCII); in testEncodeToString()
129 String base64EncodedString = encoder.encodeToString(bytesIn); in testEncodeToString()
/dports/www/firefox-esr/firefox-91.8.0/nsprpub/pr/src/md/unix/
H A Duxrng.c83 int bytesIn; in GetDevURandom() local
92 bytesIn = read( fdDevURandom, buf, size ); in GetDevURandom()
93 if ( -1 == bytesIn ) { in GetDevURandom()
98 return( bytesIn ); in GetDevURandom()

12345678910>>...16