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

  /external/chromium/third_party/icu/source/common/
cpputils.h 31 double* dst, int32_t dstStart, int32_t count)
32 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
40 int8_t* dst, int32_t dstStart, int32_t count)
41 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
49 int16_t* dst, int32_t dstStart, int32_t count)
50 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
58 int32_t* dst, int32_t dstStart, int32_t count)
59 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
64 UChar *dst, int32_t dstStart, int32_t count)
65 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src)));
    [all...]
unistr.cpp 82 UChar *dst, int32_t dstStart, int32_t count)
85 uprv_memmove(dst+dstStart, src+srcStart, (size_t)(count*sizeof(*src)));
729 int32_t dstStart) const
736 if(array + start != dst + dstStart) {
737 us_arrayCopy(array, start, dst, dstStart, length);
    [all...]
  /external/icu4c/common/
cpputils.h 31 double* dst, int32_t dstStart, int32_t count)
32 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
40 int8_t* dst, int32_t dstStart, int32_t count)
41 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
49 int16_t* dst, int32_t dstStart, int32_t count)
50 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
58 int32_t* dst, int32_t dstStart, int32_t count)
59 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
64 UChar *dst, int32_t dstStart, int32_t count)
65 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src)));
    [all...]
unistr.cpp 82 UChar *dst, int32_t dstStart, int32_t count)
85 uprv_memmove(dst+dstStart, src+srcStart, (size_t)(count*sizeof(*src)));
730 int32_t dstStart) const
737 if(array + start != dst + dstStart) {
738 us_arrayCopy(array, start, dst, dstStart, length);
    [all...]
  /external/skia/src/animator/
SkBase64.cpp 47 const unsigned char* dstStart = (const unsigned char*) fData;
111 fLength = dst - dstStart;
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 297 * @param dstStart
300 * if the {@code start} is negative, the {@code dstStart} is
303 * {@code dstStart + end - begin} is greater than
306 public void getChars(int start, int end, char[] dst, int dstStart) {
310 System.arraycopy(value, start, dst, dstStart, end - start);
  /external/chromium/third_party/icu/public/common/unicode/
unistr.h     [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]
  /external/webkit/JavaScriptCore/wtf/
dtoa.cpp 648 uint32_t* dstStart = b.words();
650 uint32_t* dst = dstStart + n1 - 1;
660 ASSERT(dst == dstStart + n);
673 ASSERT(dst == dstStart + n);
682 for (dst = dstStart + n; dst != dstStart; )
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java     [all...]

Completed in 106 milliseconds