Home
last modified time | relevance | path

Searched refs:copyLen (Results 1 - 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
H A DBrotliInputStream.java137 int copyLen = Math.max(remainingBufferBytes - bufferOffset, 0); in read()
138 if (copyLen != 0) { in read()
139 copyLen = Math.min(copyLen, destLen); in read()
140 System.arraycopy(buffer, bufferOffset, destBuffer, destOffset, copyLen); in read()
141 bufferOffset += copyLen; in read()
142 destOffset += copyLen; in read()
143 destLen -= copyLen; in read()
145 return copyLen; in read()
157 return state.outputUsed + copyLen; in read()
[all...]
/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
H A DBrotliInputStream.cs159 int copyLen = System.Math.Max(remainingBufferBytes - bufferOffset, 0); in Read()
160 if (copyLen != 0) in Read()
162 copyLen = System.Math.Min(copyLen, destLen); in Read()
163 System.Array.Copy(buffer, bufferOffset, destBuffer, destOffset, copyLen); in Read()
164 bufferOffset += copyLen; in Read()
165 destOffset += copyLen; in Read()
166 destLen -= copyLen; in Read()
169 return copyLen; in Read()
183 return state.outputUsed + copyLen; in Read()
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Dbrotlidump.py1828 action, word = divmod(offset-maxDistance, 1<<wordList.NDBITS[copyLen])
1830 offset, maxDistance, copyLen, word, action)
1837 litLen, copyLen, dist0Flag = self.verboseRead(
1860 cm = {2:0, 3:1, 4:2}.get(copyLen, 3)
1873 maxDistance-distance+copyLen):
1879 newWord = wordList.word(copyLen, distance-maxDistance-1)
1881 #adjust copyLen to reflect actual new data
1882 copyLen = len(newWord)
1884 blockLen += copyLen
1888 outputFormatter(self.output[-copyLen
[all...]
/third_party/skia/src/core/
H A DSkString.cpp372 int copyLen = std::min<uint32_t>(len, this->size()); in resize() local
373 memcpy(dest, this->c_str(), copyLen); in resize()
374 dest[copyLen] = '\0'; in resize()
/third_party/icu/icu4c/source/common/
H A Dlocmap.cpp1133 int32_t copyLen = resLen <= posixIDCapacity ? resLen : posixIDCapacity; in uprv_convertToPosix() local
1134 uprv_memcpy(posixID, pPosixID, copyLen); in uprv_convertToPosix()
/third_party/node/deps/icu-small/source/common/
H A Dlocmap.cpp1133 int32_t copyLen = resLen <= posixIDCapacity ? resLen : posixIDCapacity; in uprv_convertToPosix() local
1134 uprv_memcpy(posixID, pPosixID, copyLen); in uprv_convertToPosix()
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocmap.cpp1133 int32_t copyLen = resLen <= posixIDCapacity ? resLen : posixIDCapacity; in uprv_convertToPosix() local
1134 uprv_memcpy(posixID, pPosixID, copyLen); in uprv_convertToPosix()

Completed in 10 milliseconds