Home
last modified time | relevance | path

Searched refs:dstStart (Results 1 – 23 of 23) sorted by relevance

/external/icu/icu4c/source/common/
Dcpputils.h33 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 …]
Dunistr.cpp84 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/
Dtimeseries.go399 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/
DSkBlurMask.cpp155 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()
DSkLatticeIter.cpp80 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()
DSkMaskBlurFilter.cpp1042 auto dstStart = &dst->fImage[y]; in blur() local
1045 dstStart, dst->fRowBytes, dstStart + dst->fRowBytes * dstH); in blur()
/external/skia/src/core/
DSkBlurMask.cpp155 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()
DSkLatticeIter.cpp80 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()
DSkMaskBlurFilter.cpp1042 auto dstStart = &dst->fImage[y]; in blur() local
1045 dstStart, dst->fRowBytes, dstStart + dst->fRowBytes * dstH); in blur()
/external/lz4/lib/
Dlz4frame.c365 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/
DReplaceableString.java123 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument
125 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
DReplaceable.java102 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DReplaceableString.java131 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { in getChars() argument
133 buf.getChars(srcStart, srcLimit, dst, dstStart); in getChars()
DReplaceable.java106 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); in getChars() argument
/external/skqp/src/utils/
DSkBase64.cpp38 const unsigned char* dstStart = (const unsigned char*) fData; in decode() local
103 fLength = dst - dstStart; in decode()
/external/skia/src/utils/
DSkBase64.cpp38 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/
DReplaceableTest.java139 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/
DReplaceableTest.java136 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/
DvktDrawImageObjectUtil.cpp68 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/
Dunistr.h1457 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/
DSurface.cpp3059 …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/
DSurface.cpp3658 …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/
Dicu4j.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ ...