Home
last modified time | relevance | path

Searched refs:rawLength (Results 1 – 25 of 88) sorted by relevance

1234

/dports/multimedia/musikcube/musikcube-0.96.7/src/musikcore/sdk/
H A DDataBuffer.h44 offset = rawLength = length = 0; in DataBuffer()
52 if (newLength > rawLength) { in reset()
56 rawLength = (newLength > rawLength) ? newLength : rawLength; in reset()
69 memset(data, 0, rawLength * sizeof(T)); in zero()
80 if (length + size > rawLength) { in realloc()
81 rawLength = (length + size) * 2; in realloc()
82 T* newData = new T[rawLength]; in realloc()
125 size_t off = offset, len = length, raw = rawLength; in swap()
129 this->rawLength = with.rawLength; in swap()
133 with.rawLength = raw; in swap()
[all …]
/dports/biology/canu/canu-2.2/src/stores/
H A DsqReadData.C31 uint32 rawLength = 0; in sqRead_decodeBlob() local
34 if (_rawU) rawLength = _rawU->sqReadSeq_length(); in sqRead_decodeBlob()
39 resizeArray(_rawBases, 0, _rawBasesAlloc, rawLength+1, _raAct::doNothing); in sqRead_decodeBlob()
66 else if ((rawLength > 0) && (strncmp(chunkName, "2SQR", 4) == 0)) in sqRead_decodeBlob()
67 decode2bitSequence(chunk, chunkLen, _rawBases, rawLength); in sqRead_decodeBlob()
69 else if ((rawLength > 0) && (strncmp(chunkName, "3SQR", 4) == 0)) in sqRead_decodeBlob()
70 decode3bitSequence(chunk, chunkLen, _rawBases, rawLength); in sqRead_decodeBlob()
72 else if ((rawLength > 0) && (strncmp(chunkName, "USQR", 4) == 0)) in sqRead_decodeBlob()
73 decode8bitSequence(chunk, chunkLen, _rawBases, rawLength); in sqRead_decodeBlob()
92 rawLength, in sqRead_decodeBlob()
/dports/biology/canu/canu-2.2/src/overlapAlign/
H A DtrimRead.C113 int32 aend = _readData[_aID].rawLength - a3; in trimRead()
118 int32 bend = _readData[_bID].rawLength - b3; in trimRead()
264 (be > _readData[_bID].rawLength)) { in trimRead()
307 assert(ab <= _readData[_aID].rawLength); in trimRead()
308 assert(bb <= _readData[_bID].rawLength); in trimRead()
320 (aend < _readData[_aID].rawLength) && in trimRead()
321 (bend < _readData[_bID].rawLength)) { in trimRead()
329 (be > _readData[_bID].rawLength)) { in trimRead()
368 assert(ae <= _readData[_aID].rawLength); in trimRead()
369 assert(be <= _readData[_bID].rawLength); in trimRead()
[all …]
H A DoverlapAlign-globalData.H24 rawLength = 0; in trReadData()
40 int32 rawLength; variable
127 readData[ii].rawLength = 0;
136 readData[ii].rawLength = seqStore->sqStore_getReadLength(ii);
141 …readData[ii].rawLength = seqStore->sqStore_getReadLength(ii, sqRead_defaultVersion & ~sqRead_t…
/dports/lang/mono/mono-5.10.1.57/mcs/class/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/Compression/Streams/
H A DInflaterInputStream.cs76 return rawLength;
137 rawLength = 0; in Fill()
141 int count = inputStream.Read(rawData, rawLength, toRead); in Fill()
143 if (rawLength == 0) { in Fill()
148 rawLength += count; in Fill()
156 clearTextLength = rawLength; in Fill()
249 byte result = (byte)(rawData[rawLength - available] & 0xff); in ReadLeByte()
293 clearTextLength = rawLength;
295 …cryptoTransform.TransformBlock(rawData, rawLength - available, available, clearText, rawLength - a…
299 clearTextLength = rawLength;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Shared/Zip/Compression/Streams/
H A DInflaterInputStream.cs46 return rawLength;
103 rawLength = 0; in Fill()
107 int count = inputStream.Read(rawData, rawLength, toRead); in Fill()
111 rawLength += count; in Fill()
116 clearTextLength = cryptoTransform.TransformBlock(rawData, 0, rawLength, clearText, 0); in Fill()
118 clearTextLength = rawLength; in Fill()
211 byte result = rawData[rawLength - available]; in ReadLeByte()
257 clearTextLength = rawLength;
259 …cryptoTransform.TransformBlock(rawData, rawLength - available, available, clearText, rawLength - a…
263 clearTextLength = rawLength;
[all …]
/dports/devel/log4cxx/apache-log4cxx-0.11.0/src/main/cpp/
H A Dformattinginfo.cpp59 int rawLength = int(buffer.length() - fieldStart); in format() local
61 if (rawLength > maxLength) in format()
64 buffer.begin() + fieldStart + (rawLength - maxLength)); in format()
66 else if (rawLength < minLength) in format()
70 buffer.append(minLength - rawLength, (logchar) 0x20 /* ' ' */); in format()
74 buffer.insert(fieldStart, minLength - rawLength, 0x20 /* ' ' */); in format()
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/util/NaturalDocs/Modules/NaturalDocs/
H A DBinaryFile.pm236 my $rawLength;
237 read(FH_BINARYDATAFILE, $rawLength, 2);
238 my $length = unpack('n', $rawLength);
255 my $rawLength;
256 read(FH_BINARYDATAFILE, $rawLength, 2);
257 my $length = unpack('n', $rawLength);
/dports/devel/naturaldocs/naturaldocs-1.52_2,1/Modules/NaturalDocs/
H A DBinaryFile.pm236 my $rawLength;
237 read(FH_BINARYDATAFILE, $rawLength, 2);
238 my $length = unpack('n', $rawLength);
255 my $rawLength;
256 read(FH_BINARYDATAFILE, $rawLength, 2);
257 my $length = unpack('n', $rawLength);
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/
H A DIndexRecord.java27 public long rawLength; field in IndexRecord
32 public IndexRecord(long startOffset, long rawLength, long partLength) { in IndexRecord() argument
34 this.rawLength = rawLength; in IndexRecord()
/dports/games/q2pro/q2pro/source/
H A Dsv_user.c175 int length, rawLength; in SV_WriteCompressedConfigstringsStream() local
221 MSG_WriteShort( rawLength ); in SV_WriteCompressedConfigstringsStream()
237 int rawLength; in SV_WriteCompressedBaselinesStream() local
282 MSG_WriteShort( rawLength ); in SV_WriteCompressedBaselinesStream()
310 MSG_WriteShort( rawLength ); in SV_FlushZPacket()
321 int length, rawLength; in SV_WriteCompressedConfigstrings() local
332 rawLength = 0; in SV_WriteCompressedConfigstrings()
364 rawLength = 0; in SV_WriteCompressedConfigstrings()
394 int rawLength; in SV_WriteCompressedBaselines() local
404 rawLength = 0; in SV_WriteCompressedBaselines()
[all …]
/dports/devel/log4j/apache-log4j-1.2.17/src/main/java/org/apache/log4j/pattern/
H A DFormattingInfo.java111 final int rawLength = buffer.length() - fieldStart; in format() local
113 if (rawLength > maxLength) { in format()
115 } else if (rawLength < minLength) { in format()
124 int padLength = minLength - rawLength; in format()
/dports/benchmarks/polygraph/polygraph-4.13.0/src/kerberos/
H A DXact.cc119 uint32_t rawLength = 0; in noteReadReady() local
120 const int32_t pfxSize = sizeof(rawLength); in noteReadReady()
123 memcpy(&rawLength, theIn->content(), sizeof(rawLength)); in noteReadReady()
124 const uint32_t length = ntohl(rawLength); in noteReadReady()
290 const uint32_t rawLength = htonl(out.length()); in doStep() local
291 const uint32_t pfxSize = sizeof(rawLength); in doStep()
293 outAppend(theOut, reinterpret_cast<const char *> (&rawLength), pfxSize); in doStep()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/awt/
H A DIconInfo.java69 private int rawLength; field in IconInfo
78 this.rawLength = width * height + 2; in IconInfo()
88 this.rawLength = width * height + 2; in IconInfo()
104 this.rawLength = width * height + 2; in IconInfo()
113 this.rawLength = width * height + 2; in setScaledSize()
133 return rawLength; in getRawLength()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/awt/
H A DIconInfo.java69 private int rawLength; field in IconInfo
78 this.rawLength = width * height + 2; in IconInfo()
88 this.rawLength = width * height + 2; in IconInfo()
104 this.rawLength = width * height + 2; in IconInfo()
113 this.rawLength = width * height + 2; in setScaledSize()
133 return rawLength; in getRawLength()
/dports/science/afni/afni-AFNI_21.3.16/src/
H A Dplug_reorder_parseMap.c182 int rawLength; in REORDER_parseMap() local
335 rawLength = i; in REORDER_parseMap()
344 for(i = 0, line = 1; i < rawLength; line++) { in REORDER_parseMap()
489 for(i = 0; i < rawLength; i++) { in REORDER_parseMap()
519 while(j < rawLength) { /* look for next non-null class */ in REORDER_parseMap()
525 if(j == rawLength) { in REORDER_parseMap()
542 for(j = 1; j < rawLength; j++) { in REORDER_parseMap()
567 for(k = currentClassPos; k < rawLength; ) { in REORDER_parseMap()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/sun/awt/
H A DIconInfo.java71 private int rawLength; field in IconInfo
80 this.rawLength = width * height + 2; in IconInfo()
90 this.rawLength = width * height + 2; in IconInfo()
106 this.rawLength = getScaledRawLength(width, height); in IconInfo()
115 this.rawLength = getScaledRawLength(width, height); in setScaledSize()
155 return rawLength; in getRawLength()
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DSpillRecord.java109 entries.put(pos + 1, rec.rawLength); in putIndex()
148 long rawLength; field in IndexRecord
153 public IndexRecord(long startOffset, long rawLength, long partLength) { in IndexRecord() argument
155 this.rawLength = rawLength; in IndexRecord()

1234