Home
last modified time | relevance | path

Searched refs:destIndex (Results 1 – 25 of 26) sorted by relevance

12

/external/icu/icu4c/source/common/
Ducasemap.cpp124 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument
142 if(length>(INT32_MAX-destIndex)) { in appendResult()
146 if(destIndex<destCapacity) { in appendResult()
151 U8_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult()
154 destIndex+=length; in appendResult()
161 (char *)(dest+destIndex), destCapacity-destIndex, &destLength, in appendResult()
167 if(destLength>(INT32_MAX-destIndex)) { in appendResult()
170 destIndex+=destLength; in appendResult()
176 destIndex+=length; in appendResult()
187 if(destLength>(INT32_MAX-destIndex)) { in appendResult()
[all …]
Dustrcase.cpp41 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument
58 if(length>(INT32_MAX-destIndex)) { in appendResult()
62 if(destIndex<destCapacity) { in appendResult()
67 U16_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult()
70 destIndex+=length; in appendResult()
74 if((destIndex+length)<=destCapacity) { in appendResult()
76 dest[destIndex++]=*s++; in appendResult()
81 destIndex+=length; in appendResult()
86 destIndex+=length; in appendResult()
88 return destIndex; in appendResult()
[all …]
Dusprep.cpp518 int32_t destIndex=0; in usprep_map() local
569 if(destIndex < destCapacity ){ in usprep_map()
570 dest[destIndex] = profile->mappingData[index+i]; in usprep_map()
572 destIndex++; /* for pre-flighting */ in usprep_map()
586 if(destIndex < destCapacity ){ in usprep_map()
587 dest[destIndex] = (UChar)ch; in usprep_map()
589 destIndex++; in usprep_map()
591 if(destIndex+1 < destCapacity ){ in usprep_map()
592 dest[destIndex] = U16_LEAD(ch); in usprep_map()
593 dest[destIndex+1] = U16_TRAIL(ch); in usprep_map()
[all …]
Dutext.cpp503 int64_t destIndex, in utext_copy() argument
514 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy()
1945 int64_t destIndex, in repTextCopy() argument
1955 if (start>limit || (start<destIndex && destIndex<limit)) in repTextCopy()
1963 int32_t destIndex32 = pinIndex(destIndex, length); in repTextCopy()
2209 int64_t destIndex, in unistrTextCopy() argument
2220 int32_t destIndex32 = pinIndex(destIndex, length); in unistrTextCopy()
/external/guava/guava/src/com/google/common/escape/
DCharEscaper.java87 int destIndex = 0; in escapeSlow() local
106 int sizeNeeded = destIndex + charsSkipped + rlen; in escapeSlow()
109 dest = growBuffer(dest, destIndex, destSize); in escapeSlow()
114 s.getChars(lastEscape, index, dest, destIndex); in escapeSlow()
115 destIndex += charsSkipped; in escapeSlow()
120 System.arraycopy(r, 0, dest, destIndex, rlen); in escapeSlow()
121 destIndex += rlen; in escapeSlow()
129 int sizeNeeded = destIndex + charsLeft; in escapeSlow()
133 dest = growBuffer(dest, destIndex, sizeNeeded); in escapeSlow()
135 s.getChars(lastEscape, slen, dest, destIndex); in escapeSlow()
[all …]
DUnicodeEscaper.java181 int destIndex = 0; in escapeSlow() local
200 int sizeNeeded = destIndex + charsSkipped + escaped.length; in escapeSlow()
203 dest = growBuffer(dest, destIndex, destLength); in escapeSlow()
207 s.getChars(unescapedChunkStart, index, dest, destIndex); in escapeSlow()
208 destIndex += charsSkipped; in escapeSlow()
211 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); in escapeSlow()
212 destIndex += escaped.length; in escapeSlow()
224 int endIndex = destIndex + charsSkipped; in escapeSlow()
226 dest = growBuffer(dest, destIndex, endIndex); in escapeSlow()
228 s.getChars(unescapedChunkStart, end, dest, destIndex); in escapeSlow()
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
DUnicodeEscaper.java192 int destIndex = 0; in escapeSlow() local
207 int sizeNeeded = destIndex + charsSkipped + escaped.length; in escapeSlow()
210 dest = growBuffer(dest, destIndex, destLength); in escapeSlow()
214 s.getChars(unescapedChunkStart, index, dest, destIndex); in escapeSlow()
215 destIndex += charsSkipped; in escapeSlow()
218 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); in escapeSlow()
219 destIndex += escaped.length; in escapeSlow()
231 int endIndex = destIndex + charsSkipped; in escapeSlow()
233 dest = growBuffer(dest, destIndex, endIndex); in escapeSlow()
235 s.getChars(unescapedChunkStart, end, dest, destIndex); in escapeSlow()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DEdits.java233 private int srcIndex, replIndex, destIndex; field in Edits.Iterator
266 destIndex += newLength_; in updateIndexes()
380 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0; in findSourceIndex()
399 destIndex += len; in findSourceIndex()
450 public int destinationIndex() { return destIndex; } in destinationIndex()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DEdits.java227 private int srcIndex, replIndex, destIndex; field in Edits.Iterator
260 destIndex += newLength_; in updateIndexes()
372 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0; in findSourceIndex()
391 destIndex += len; in findSourceIndex()
436 public int destinationIndex() { return destIndex; } in destinationIndex()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLStringDefault.java146 int destIndex = dstBegin; in getChars() local
149 dst[destIndex++] = m_str.charAt(i); in getChars()
/external/icu/icu4c/source/test/intltest/
Dutxttest.cpp315 int destIndex = 0; // Code point index of the destination for a copy/move test. in TestCMR() local
354 case 1: destIndex = 0; break; in TestCMR()
355 case 2: destIndex = 1; break; in TestCMR()
356 case 3: destIndex = srcIndex - 1; break; in TestCMR()
357 case 4: destIndex = srcIndex + srcLength + 1; break; in TestCMR()
358 case 5: destIndex = cpCount-1; break; in TestCMR()
359 case 6: destIndex = cpCount; break; in TestCMR()
361 if (destIndex<0 || destIndex>cpCount) { in TestCMR()
368 nativeDest = nativeMap[destIndex].nativeIdx; in TestCMR()
372 u16Dest = u16Map[destIndex].nativeIdx; in TestCMR()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
DTestStringPrep.java111 int destIndex = destString.indexOf('@'); in TestNFS4MixedPrep() local
112 if(destIndex < 0){ in TestNFS4MixedPrep()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DTestStringPrep.java110 int destIndex = destString.indexOf('@'); in TestNFS4MixedPrep() local
111 if(destIndex < 0){ in TestNFS4MixedPrep()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java672 int destIndex = XMPNodeUtils.lookupLanguageItem(destNode, in appendSubtree() local
678 if (destIndex != -1) in appendSubtree()
680 destNode.removeChild(destIndex); in appendSubtree()
687 else if (destIndex == -1) in appendSubtree()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationDataBuilder.java757 int destIndex = dest.addConditionalCE32( in copyCE32() local
759 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex); in copyCE32()
762 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32()
763 destIndex = dest.addConditionalCE32( in copyCE32()
767 prevDestCond.next = destIndex; in copyCE32()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationDataBuilder.java756 int destIndex = dest.addConditionalCE32( in copyCE32() local
758 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex); in copyCE32()
761 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32()
762 destIndex = dest.addConditionalCE32( in copyCE32()
766 prevDestCond.next = destIndex; in copyCE32()
/external/lzma/CPP/Common/
DMyVector.h15 void MoveItems(unsigned destIndex, unsigned srcIndex) in MoveItems() argument
17 memmove(_items + destIndex, _items + srcIndex, (size_t)(_size - srcIndex) * sizeof(T)); in MoveItems()
/external/swiftshader/src/D3D9/
DDirect3DDevice9Ex.cpp614 …long Direct3DDevice9Ex::ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsign… in ProcessVertices() argument
616 …*vertexDeclaration = 0x%0.8p, unsigned long flags = %d", srcStartIndex, destIndex, vertexCount, de… in ProcessVertices()
618 …return Direct3DDevice9::ProcessVertices(srcStartIndex, destIndex, vertexCount, destBuffer, vertexD… in ProcessVertices()
DDirect3DDevice9Ex.hpp142 …long __stdcall ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned int ve…
DDirect3DDevice9.hpp139 …long __stdcall ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned int ve…
DDirect3DDevice9.cpp2293 …long Direct3DDevice9::ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned… in ProcessVertices() argument
2297 …*vertexDeclaration = 0x%0.8p, unsigned long flags = %d", srcStartIndex, destIndex, vertexCount, de… in ProcessVertices()
/external/icu/icu4c/source/i18n/
Dcollationdatabuilder.cpp986 int32_t destIndex = dest.addConditionalCE32( in copyCE32() local
988 ce32 = CollationDataBuilder::makeBuilderContextCE32(destIndex); in copyCE32()
991 ConditionalCE32 *prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32()
992 destIndex = dest.addConditionalCE32( in copyCE32()
996 prevDestCond->next = destIndex; in copyCE32()
Duregex.cpp1772 int32_t *destIndex, // Index into dest buffer. Updated on return.
1778 int32_t di = *destIndex;
1795 *destIndex = di;
/external/icu/icu4c/source/common/unicode/
Dutext.h891 int64_t destIndex,
/external/swiftshader/src/D3D8/
DDirect3DDevice8.hpp125 …long __stdcall ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned int ve…

12