HomeSort by relevance Sort by last modified time
    Searched refs:srcEnd (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/skia/src/core/
SkBlitRow_D32.cpp 38 const SkPMColor* SK_RESTRICT srcEnd = src + count;
39 while (src != srcEnd) {
69 const SkPMColor* SK_RESTRICT srcEnd = src + count;
70 while (src != srcEnd) {
SkMaskBlurFilter.h 56 const uint8_t* src, size_t srcStride, const uint8_t* srcEnd,
SkMaskBlurFilter.cpp 140 auto srcEnd = &src.fImage[src.fRowBytes * srcH];
144 srcStart, src.fRowBytes, srcEnd,
165 const uint8_t* src, size_t srcStride, const uint8_t* srcEnd,
191 for (auto srcCursor = src; srcCursor < srcEnd; dst += dstStride, srcCursor += srcStride) {
212 // This handles the case when both ends of the box are not between [src, srcEnd), and both
214 for (auto i = 0; i < static_cast<ptrdiff_t>(2 * info.borderSize()) - (srcEnd - src); i++) {
244 const uint8_t* srcCursor = srcEnd;
SkBitmapScaler.cpp 151 float srcEnd = SkTMin(srcSize - 1.f, SkScalarCeilToScalar(srcPixel + srcSupport));
164 int filterCount = SkScalarTruncToInt(srcEnd - srcBegin) + 1;
SkLatticeIter.cpp 80 int srcScalable, float srcStart, float srcEnd, float dstStart, float dstEnd,
111 src[divCount + 1] = srcEnd;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 196 * @param srcEnd index after the last character in the string
203 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
204 * <li><code>srcEnd</code> is greater than the length of this
207 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
XString.java 262 * @param srcEnd index after the last character in the string
269 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
270 * <li><code>srcEnd</code> is greater than the length of this
273 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
279 str().getChars(srcBegin, srcEnd, dst, dstBegin);
    [all...]
XStringForFSB.java 237 * @param srcEnd index after the last character in the string
244 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
245 * <li><code>srcEnd</code> is greater than the length of this
248 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
257 int n = srcEnd - srcBegin;
  /external/lz4/lib/
lz4frame.c 567 const BYTE* const srcEnd = srcPtr + srcSize;
585 srcPtr = srcEnd;
601 while ((size_t)(srcEnd - srcPtr) >= blockSize) {
608 if ((cctxPtr->prefs.autoFlush) && (srcPtr < srcEnd)) {
611 dstPtr += LZ4F_compressBlock(dstPtr, srcPtr, srcEnd - srcPtr, compress, cctxPtr->lz4CtxPtr, cctxPtr->prefs.compressionLevel);
612 srcPtr = srcEnd;
635 if (srcPtr < srcEnd) {
637 size_t const sizeToCopy = srcEnd - srcPtr;
    [all...]
  /external/lz4/examples/
frameCompress.c 151 void* srcEnd = srcPtr + srcSize;
171 srcSize = srcEnd - srcPtr;
175 * If srcPtr == srcEnd then we know that there is no more output left in the
178 while (srcPtr != srcEnd && ret != 0) {
197 srcSize = srcEnd - srcPtr;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 128 * @param srcEnd index after the last character in the string
135 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
136 * <li><code>srcEnd</code> is greater than the length of this
139 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
143 public void getChars(int srcBegin, int srcEnd, char dst[],
147 for (int i = srcBegin; i < srcEnd; i++)
XMLString.java 107 * @param srcEnd index after the last character in the string
114 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
115 * <li><code>srcEnd</code> is greater than the length of this
118 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
122 public abstract void getChars(int srcBegin, int srcEnd, char dst[],
FastStringBuffer.java     [all...]
  /libcore/ojluni/src/main/java/java/lang/
String.java 711 * the last character to be copied is at index {@code srcEnd-1}
713 * {@code srcEnd-srcBegin}). The characters are copied into the
717 * dstBegin + (srcEnd-srcBegin) - 1
722 * @param srcEnd index after the last character in the string
729 * <li>{@code srcBegin} is greater than {@code srcEnd}
730 * <li>{@code srcEnd} is greater than the length of this
733 * <li>{@code dstBegin+(srcEnd-srcBegin)} is larger than
736 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
744 if (srcEnd > length()) {
745 throw new StringIndexOutOfBoundsException(this, srcEnd);
    [all...]
AbstractStringBuilder.java 357 * be copied is at index {@code srcEnd-1}. The total number of
358 * characters to be copied is {@code srcEnd-srcBegin}. The
362 * dstbegin + (srcEnd-srcBegin) - 1
366 * @param srcEnd stop copying at this offset.
374 * the {@code srcEnd} argument.
375 * <li>{@code srcEnd} is greater than
377 * <li>{@code dstBegin+srcEnd-srcBegin} is greater than
381 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
385 if ((srcEnd < 0) || (srcEnd > count)
    [all...]
StringBuffer.java 242 public synchronized void getChars(int srcBegin, int srcEnd, char[] dst,
245 super.getChars(srcBegin, srcEnd, dst, dstBegin);
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 449 int srcEnd = srcBegin + 10; //-2147483639
451 // The output array size must be larger than |srcEnd - srcBegin|.
452 "yes".getChars(srcBegin, srcEnd, new char[256], 0);
460 // This is the explicit case from the bug: dstBegin == srcEnd - srcBegin
485 // dstBegin + (srcEnd - srcBegin) -> integer overflow OR dstBegin >= dst.length
489 assertGetCharsThrowsSIOOBException("abcd", 2, 1, new char[4], 0); // srcBegin > srcEnd
491 assertGetCharsThrowsSIOOBException("abcd", 0, 5, new char[4], 0); // Out of range srcEnd
492 assertGetCharsThrowsSIOOBException("abcd", 0, -1, new char[4], 0); // Negative srcEnd
504 private static void assertGetCharsThrowsAIOOBException(String s, int srcBegin, int srcEnd,
507 s.getChars(srcBegin, srcEnd, dst, dstBegin)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ncnvtst.c     [all...]
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner.go 119 srcEnd int // source end (srcBuf index)
183 s.srcEnd = 0
218 for s.srcPos+utf8.UTFMax > s.srcEnd && !utf8.FullRune(s.srcBuf[s.srcPos:s.srcEnd]) {
227 copy(s.srcBuf[0:], s.srcBuf[s.srcPos:s.srcEnd])
234 i := s.srcEnd - s.srcPos
237 s.srcEnd = i + n
238 s.srcBuf[s.srcEnd] = utf8.RuneSelf // sentinel
243 if s.srcEnd == 0 {
262 ch, width = utf8.DecodeRune(s.srcBuf[s.srcPos:s.srcEnd])
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner.go 119 srcEnd int // source end (srcBuf index)
183 s.srcEnd = 0
218 for s.srcPos+utf8.UTFMax > s.srcEnd && !utf8.FullRune(s.srcBuf[s.srcPos:s.srcEnd]) {
227 copy(s.srcBuf[0:], s.srcBuf[s.srcPos:s.srcEnd])
234 i := s.srcEnd - s.srcPos
237 s.srcEnd = i + n
238 s.srcBuf[s.srcEnd] = utf8.RuneSelf // sentinel
243 if s.srcEnd == 0 {
262 ch, width = utf8.DecodeRune(s.srcBuf[s.srcPos:s.srcEnd])
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UTF16Test.java 512 int srcEnd = strbuff.length();
513 if (0 != srcEnd) {
514 strbuff.getChars(0, srcEnd, array, 0);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UTF16Test.java 511 int srcEnd = strbuff.length();
512 if (0 != srcEnd) {
513 strbuff.getChars(0, srcEnd, array, 0);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/math/
BigDecimal.java     [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java     [all...]

Completed in 553 milliseconds

1 2 3