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

  /libcore/luni/src/main/java/java/io/
PipedReader.java 260 int copyLength = 0;
263 copyLength = count > this.buffer.length - out ? this.buffer.length - out : count;
264 System.arraycopy(this.buffer, out, buffer, offset, copyLength);
265 out += copyLength;
280 if (copyLength == count || in == -1) {
281 return copyLength;
284 int charsCopied = copyLength;
286 copyLength = in - out > count - copyLength ? count - copyLength : in - out
    [all...]
BufferedInputStream.java 264 int copylength = count - pos >= byteCount ? byteCount : count - pos; local
265 System.arraycopy(localBuf, pos, buffer, byteOffset, copylength);
266 pos += copylength;
267 if (copylength == byteCount || localIn.available() == 0) {
268 return copylength;
270 byteOffset += copylength;
271 required = byteCount - copylength;
PushbackInputStream.java 171 int copiedBytes = 0, copyLength = 0, newOffset = byteOffset;
174 copyLength = (buf.length - pos >= byteCount) ? byteCount : buf.length - pos;
175 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
176 newOffset += copyLength;
177 copiedBytes += copyLength;
179 pos += copyLength;
182 if (copyLength == byteCount) {
PushbackReader.java 178 int copyLength = 0;
182 copyLength = (buf.length - pos >= count) ? count : buf.length
184 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
185 newOffset += copyLength;
186 copiedChars += copyLength;
188 pos += copyLength;
191 if (copyLength == count) {
  /libcore/luni/src/main/java/java/util/
Arrays.java     [all...]
  /dalvik/vm/
Misc.cpp 592 size_t copyLength = srcLength;
595 copyLength = size - 1;
599 strncpy(dst, src, copyLength);
600 dst[copyLength] = '\0';
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 331 int32_t copyLength=uprv_min(length, destCapacity);
332 if(copyLength>0 && s != NULL) {
333 u_memcpy(dest, s, copyLength);
ustrcase.c 539 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity;
540 if(copyLength>0) {
541 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
uresbund.c     [all...]
  /external/icu4c/common/
locdispnames.cpp 332 int32_t copyLength=uprv_min(length, destCapacity);
333 if(copyLength>0 && s != NULL) {
334 u_memcpy(dest, s, copyLength);
ustrcase.cpp 421 int32_t copyLength= destLength<=destCapacity ? destLength : destCapacity;
422 if(copyLength>0) {
423 uprv_memmove(dest, temp, copyLength*U_SIZEOF_UCHAR);
uresbund.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
uregex.cpp 647 int32_t copyLength = fullLength;
648 if (copyLength < destCapacity) {
649 dest[copyLength] = 0;
650 } else if (copyLength == destCapacity) {
653 copyLength = destCapacity;
660 if (copyLength > 0) {
661 u_memcpy(dest, &regexp->fText[startIx], copyLength);
    [all...]
usearch.cpp 2908 int32_t copylength = strsrch->search->matchedLength; local
    [all...]
  /external/icu4c/i18n/
uregex.cpp 665 int32_t copyLength = fullLength;
666 if (copyLength < destCapacity) {
667 dest[copyLength] = 0;
668 } else if (copyLength == destCapacity) {
671 copyLength = destCapacity;
678 if (copyLength > 0) {
679 u_memcpy(dest, &regexp->fText[startIx], copyLength);
    [all...]
usearch.cpp 2908 int32_t copylength = strsrch->search->matchedLength; local
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
DiskLruCache.java 184 final int copyLength = Math.min(resultLength, originalLength - start);
187 System.arraycopy(original, start, result, 0, copyLength);
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosCameraHWInterface.cpp     [all...]

Completed in 872 milliseconds