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

1 2

  /external/skia/src/core/
SkBlitRow_D32.cpp 38 const SkPMColor* SK_RESTRICT srcEnd = src + count;
39 while (src != srcEnd) {
67 const SkPMColor* SK_RESTRICT srcEnd = src + count;
68 while (src != srcEnd) {
96 const SkPMColor* SK_RESTRICT srcEnd = src + count;
97 while (src != srcEnd) {
SkBitmapScaler.cpp 156 float srcEnd = SkTMin(srcSize - 1.f, SkScalarCeilToScalar(srcPixel + srcSupport));
169 int filterCount = SkScalarTruncToInt(srcEnd - srcBegin) + 1;
  /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 525 const BYTE* const srcEnd = srcPtr + srcSize;
547 srcPtr = srcEnd;
565 while ((size_t)(srcEnd - srcPtr) >= blockSize)
573 if ((cctxPtr->prefs.autoFlush) && (srcPtr < srcEnd))
577 dstPtr += LZ4F_compressBlock(dstPtr, srcPtr, srcEnd - srcPtr, compress, cctxPtr->lz4CtxPtr, cctxPtr->prefs.compressionLevel);
578 srcPtr = srcEnd;
605 if (srcPtr < srcEnd)
608 size_t sizeToCopy = srcEnd - srcPtr;
    [all...]
  /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 697 * the last character to be copied is at index <code>srcEnd-1</code>
699 * <code>srcEnd-srcBegin</code>). The characters are copied into the
703 * dstbegin + (srcEnd-srcBegin) - 1
708 * @param srcEnd index after the last character in the string
715 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
716 * <li><code>srcEnd</code> is greater than the length of this
719 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
722 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
730 if (srcEnd > count) {
731 throw new StringIndexOutOfBoundsException(this, srcEnd);
    [all...]
AbstractStringBuilder.java 322 * be copied is at index <code>srcEnd-1</code>. The total number of
323 * characters to be copied is <code>srcEnd-srcBegin</code>. The
327 * dstbegin + (srcEnd-srcBegin) - 1
331 * @param srcEnd stop copying at this offset.
341 * the <code>srcEnd</code> argument.
342 * <li><code>srcEnd</code> is greater than
344 * <li><code>dstBegin+srcEnd-srcBegin</code> is greater than
348 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
352 if ((srcEnd < 0) || (srcEnd > count)
    [all...]
StringBuffer.java 215 public synchronized void getChars(int srcBegin, int srcEnd, char[] dst,
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
  /libcore/luni/src/test/java/libcore/java/lang/
StringTest.java 448 int srcEnd = srcBegin + 10; //-2147483639
450 // The output array size must be larger than |srcEnd - srcBegin|.
451 "yes".getChars(srcBegin, srcEnd, new char[256], 0);
459 // This is the explicit case from the bug: dstBegin == srcEnd - srcBegin
484 // dstBegin + (srcEnd - srcBegin) -> integer overflow OR dstBegin >= dst.length
488 assertGetCharsThrowsSIOOBException("abcd", 2, 1, new char[4], 0); // srcBegin > srcEnd
490 assertGetCharsThrowsSIOOBException("abcd", 0, 5, new char[4], 0); // Out of range srcEnd
491 assertGetCharsThrowsSIOOBException("abcd", 0, -1, new char[4], 0); // Negative srcEnd
503 private static void assertGetCharsThrowsAIOOBException(String s, int srcBegin, int srcEnd,
506 s.getChars(srcBegin, srcEnd, dst, dstBegin)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ncnvtst.c     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UTF16Test.java 503 int srcEnd = strbuff.length();
504 if (0 != srcEnd) {
505 strbuff.getChars(0, srcEnd, array, 0);
813 int srcEnd = strbuff.length()
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UTF16Test.java 499 int srcEnd = strbuff.length();
500 if (0 != srcEnd) {
501 strbuff.getChars(0, srcEnd, array, 0);
809 int srcEnd = strbuff.length();
810 if (0 != srcEnd) {
811 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...]
  /art/compiler/optimizing/
intrinsics_arm.cc     [all...]
intrinsics_arm64.cc     [all...]
intrinsics_x86.cc     [all...]
intrinsics_x86_64.cc     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/1.3/
haha-1.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 

Completed in 695 milliseconds

1 2