HomeSort by relevance Sort by last modified time
    Searched refs:copylength (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 285 int copylength = count - pos >= byteCount ? byteCount : count - pos; local
286 System.arraycopy(localBuf, pos, buffer, offset, copylength);
287 pos += copylength;
288 if (copylength == byteCount || localIn.available() == 0) {
289 return copylength;
291 offset += copylength;
292 required = byteCount - copylength;
  /external/icu4c/i18n/
usearch.cpp 2908 int32_t copylength = strsrch->search->matchedLength; local
    [all...]

Completed in 299 milliseconds