/external/icu/icu4c/source/common/ |
D | cpputils.h | 33 double* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy() argument 34 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy() 42 int8_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy() argument 43 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy() 51 int16_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy() argument 52 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy() 60 int32_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy() argument 61 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy() 66 UChar *dst, int32_t dstStart, int32_t count) in uprv_arrayCopy() argument 67 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)count * sizeof(*src)); } in uprv_arrayCopy() [all …]
|
D | unistr.cpp | 84 UChar *dst, int32_t dstStart, int32_t count) in us_arrayCopy() argument 87 uprv_memmove(dst+dstStart, src+srcStart, (size_t)count*sizeof(*src)); in us_arrayCopy() 863 int32_t dstStart) const in doExtract() 870 if(array + start != dst + dstStart) { in doExtract() 871 us_arrayCopy(array, start, dst, dstStart, length); in doExtract()
|
/external/syzkaller/vendor/golang.org/x/net/internal/timeseries/ |
D | timeseries.go | 399 dstStart := start 405 if dstStart.After(srcStart) { 406 advance := dstStart.Sub(srcStart) / srcInterval 418 dstEnd := dstStart.Add(dstInterval) 425 if !srcEnd.Before(dstStart) { 427 if !srcStart.Before(dstStart) && !srcEnd.After(dstEnd) { 434 overlapStart := maxTime(srcStart, dstStart) 454 dstStart = dstStart.Add(dstInterval)
|
/external/skqp/src/core/ |
D | SkBlurMask.cpp | 155 auto dstStart = &dst->fImage[border.x() + border.y() * dst->fRowBytes]; in BoxBlur() local 159 dstStart, dst->fRowBytes, in BoxBlur() 165 dstStart, dst->fRowBytes, in BoxBlur() 172 dstStart, dst->fRowBytes, in BoxBlur() 179 dstStart, dst->fRowBytes, in BoxBlur() 188 auto dstStart = &dst->fImage[border.x() + border.y() * dst->fRowBytes]; in BoxBlur() local 192 dstStart, dst->fRowBytes, in BoxBlur() 198 dstStart, dst->fRowBytes, in BoxBlur() 205 dstStart, dst->fRowBytes, in BoxBlur() 212 dstStart, dst->fRowBytes, in BoxBlur()
|
D | SkLatticeIter.cpp | 80 int srcScalable, int srcStart, int srcEnd, float dstStart, float dstEnd, in set_points() argument 82 float dstLen = dstEnd - dstStart; in set_points() 94 dst[0] = dstStart; in set_points()
|
D | SkMaskBlurFilter.cpp | 1042 auto dstStart = &dst->fImage[y]; in blur() local 1045 dstStart, dst->fRowBytes, dstStart + dst->fRowBytes * dstH); in blur()
|
/external/skia/src/core/ |
D | SkBlurMask.cpp | 155 auto dstStart = &dst->fImage[border.x() + border.y() * dst->fRowBytes]; in BoxBlur() local 159 dstStart, dst->fRowBytes, in BoxBlur() 165 dstStart, dst->fRowBytes, in BoxBlur() 172 dstStart, dst->fRowBytes, in BoxBlur() 179 dstStart, dst->fRowBytes, in BoxBlur() 188 auto dstStart = &dst->fImage[border.x() + border.y() * dst->fRowBytes]; in BoxBlur() local 192 dstStart, dst->fRowBytes, in BoxBlur() 198 dstStart, dst->fRowBytes, in BoxBlur() 205 dstStart, dst->fRowBytes, in BoxBlur() 212 dstStart, dst->fRowBytes, in BoxBlur()
|
D | SkLatticeIter.cpp | 80 int srcScalable, int srcStart, int srcEnd, float dstStart, float dstEnd, in set_points() argument 82 float dstLen = dstEnd - dstStart; in set_points() 94 dst[0] = dstStart; in set_points()
|
D | SkMaskBlurFilter.cpp | 1042 auto dstStart = &dst->fImage[y]; in blur() local 1045 dstStart, dst->fRowBytes, dstStart + dst->fRowBytes * dstH); in blur()
|
/external/lz4/lib/ |
D | lz4frame.c | 365 BYTE* const dstStart = (BYTE*) dstBuffer; in LZ4F_compressFrame_usingCDict() local 366 BYTE* dstPtr = dstStart; in LZ4F_compressFrame_usingCDict() 367 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame_usingCDict() 399 return (dstPtr - dstStart); in LZ4F_compressFrame_usingCDict() 587 BYTE* const dstStart = (BYTE*)dstBuffer; in LZ4F_compressBegin_usingCDict() local 588 BYTE* dstPtr = dstStart; in LZ4F_compressBegin_usingCDict() 680 return (dstPtr - dstStart); in LZ4F_compressBegin_usingCDict() 807 BYTE* const dstStart = (BYTE*)dstBuffer; in LZ4F_compressUpdate() local 808 BYTE* dstPtr = dstStart; in LZ4F_compressUpdate() 893 return dstPtr - dstStart; in LZ4F_compressUpdate() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ReplaceableString.java | 123 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 125 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
D | Replaceable.java | 102 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ReplaceableString.java | 131 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 133 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
D | Replaceable.java | 106 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
|
/external/skqp/src/utils/ |
D | SkBase64.cpp | 38 const unsigned char* dstStart = (const unsigned char*) fData; in decode() local 103 fLength = dst - dstStart; in decode()
|
/external/skia/src/utils/ |
D | SkBase64.cpp | 38 const unsigned char* dstStart = (const unsigned char*) fData; in decode() local 103 fLength = dst - dstStart; in decode()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | ReplaceableTest.java | 139 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 140 chars.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | ReplaceableTest.java | 136 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument 137 chars.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawImageObjectUtil.cpp | 68 deUint8 *dstStart; in pack() local 69 dstStart = dstRow; in pack() 85 dstRow = dstStart + offsetDepthDst; in pack() 120 deUint8 *dstStart; in unpack() local 121 dstStart = dstRow; in unpack() 136 dstRow = dstStart + offsetDepthDst; in unpack()
|
/external/icu/icu4c/source/common/unicode/ |
D | unistr.h | 1457 int32_t dstStart = 0) const; 1512 int32_t dstStart = 0) const; 3572 int32_t dstStart) const; 4514 int32_t dstStart) const { in extractBetween() argument 4517 doExtract(start, limit - start, dst, dstStart); in extractBetween()
|
/external/swiftshader/src/Device/ |
D | Surface.cpp | 3059 …int dstStart = ((dstEdge == BOTTOM) ? dstPitch * (dstH + 1) : ((dstEdge == RIGHT) ? dstBytes * (ds… in copyCubeEdge() local 3062 char *dstBuf = (char*)dst->lockInternal(-1, -1, 0, sw::LOCK_READWRITE, sw::PRIVATE) + dstStart; in copyCubeEdge()
|
/external/swiftshader/src/Renderer/ |
D | Surface.cpp | 3658 …int dstStart = ((dstEdge == BOTTOM) ? dstPitch * (dstH + 1) : ((dstEdge == RIGHT) ? dstBytes * (ds… in copyCubeEdge() local 3661 char *dstBuf = (char*)dst->lockInternal(-1, -1, 0, sw::LOCK_READWRITE, sw::PRIVATE) + dstStart; in copyCubeEdge()
|
/external/cldr/tools/java/libs/ |
D | icu4j.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ ... |