Home
last modified time | relevance | path

Searched refs:copylength (Results 1 – 3 of 3) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DRecyclableBufferedInputStream.java287 int copylength = count - pos >= byteCount ? byteCount : count - pos; in read() local
288 System.arraycopy(localBuf, pos, buffer, offset, copylength); in read()
289 pos += copylength; in read()
290 if (copylength == byteCount || localIn.available() == 0) { in read()
291 return copylength; in read()
293 offset += copylength; in read()
294 required = byteCount - copylength; in read()
/external/brotli/c/enc/
Dbackward_references_hq.c157 size_t copylength = CommandCopyLen(&commands[i]); in ZopfliCostModelSetFromCommands() local
169 pos += inslength + copylength; in ZopfliCostModelSetFromCommands()
/external/icu/icu4c/source/i18n/
Dusearch.cpp2919 int32_t copylength = strsrch->search->matchedLength; in usearch_getMatchedText() local
2926 if (resultCapacity < copylength) { in usearch_getMatchedText()
2927 copylength = resultCapacity; in usearch_getMatchedText()
2929 if (copylength > 0) { in usearch_getMatchedText()
2931 copylength * sizeof(UChar)); in usearch_getMatchedText()