/external/icu/icu4c/source/common/ |
D | ubidiwrt.c | 58 UChar *dest, int32_t destSize, in doWriteForward() argument 66 if(destSize<length) { in doWriteForward() 80 if(destSize<srcLength) { in doWriteForward() 93 int32_t remaining=destSize; in doWriteForward() 108 return destSize-remaining; in doWriteForward() 113 return destSize-remaining; in doWriteForward() 117 int32_t remaining=destSize; in doWriteForward() 138 return destSize-remaining; in doWriteForward() 151 UChar *dest, int32_t destSize, in doWriteReverse() argument 184 if(destSize<srcLength) { in doWriteReverse() [all …]
|
D | ushape.cpp | 634 int32_t destSize,uint32_t options) { in calculateSize() argument 640 destSize = sourceLength; in calculateSize() 656 destSize--; in calculateSize() 662 destSize--; in calculateSize() 672 destSize++; in calculateSize() 677 return destSize; in calculateSize() 729 int32_t destSize, in handleGeneratedSpaces() argument 781 destSize = u_strlen(dest); in handleGeneratedSpaces() 801 destSize = sourceLength; in handleGeneratedSpaces() 839 destSize = sourceLength; in handleGeneratedSpaces() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ArabicShaping.java | 87 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 96 if (dest == null && destSize != 0) { in shape() 99 if ((destSize != 0) && in shape() 100 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 102 ") or size (" + destSize + in shape() 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1152 int destSize = sourceLength; in calculateSize() local 1160 --destSize; in calculateSize() 1166 --destSize; in calculateSize() 1175 destSize++; in calculateSize() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ArabicShaping.java | 87 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 96 if (dest == null && destSize != 0) { in shape() 99 if ((destSize != 0) && in shape() 100 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 102 ") or size (" + destSize + in shape() 130 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 1104 int destSize = sourceLength; in calculateSize() local 1112 --destSize; in calculateSize() 1118 --destSize; in calculateSize() 1127 destSize++; in calculateSize() [all …]
|
/external/guava/guava/src/com/google/common/escape/ |
D | CharEscaper.java | 86 int destSize = dest.length; in escapeSlow() local 107 if (destSize < sizeNeeded) { in escapeSlow() 108 destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index); in escapeSlow() 109 dest = growBuffer(dest, destIndex, destSize); in escapeSlow() 130 if (destSize < sizeNeeded) { in escapeSlow()
|
/external/lzma/C/ |
D | Lzma2Enc.c | 326 static SRes MtCallbackImp_Code(void *pp, unsigned index, Byte *dest, size_t *destSize, in MtCallbackImp_Code() argument 335 size_t destLim = *destSize; in MtCallbackImp_Code() 336 *destSize = 0; in MtCallbackImp_Code() 347 size_t packSize = destLim - *destSize; in MtCallbackImp_Code() 348 res = Lzma2EncInt_EncodeSubblock(p, dest + *destSize, &packSize, NULL); in MtCallbackImp_Code() 351 *destSize += packSize; in MtCallbackImp_Code() 359 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK) in MtCallbackImp_Code() 371 if (*destSize == destLim) in MtCallbackImp_Code() 373 dest[(*destSize)++] = 0; in MtCallbackImp_Code()
|
D | MtCoder.c | 206 size_t destSize = p->outBufSize; in MtThread_Process() local 214 p->outBuf, &destSize, p->inBuf, size, *stop)); in MtThread_Process() 222 if (p->mtCoder->outStream->Write(p->mtCoder->outStream, p->outBuf, destSize) != destSize) in MtThread_Process()
|
D | MtCoder.h | 69 SRes (*Code)(void *p, unsigned index, Byte *dest, size_t *destSize,
|
/external/tpm2/ |
D | MemoryLib_fp.h | 18 #define MemoryCopy(destination, source, size, destSize) \ argument 19 MemoryMove((destination), (source), (size), (destSize))
|
D | part4.txt | 18040 40 //%#define MemoryCopy(destination, source, size, destSize) \ 18041 41 //% MemoryMove((destination), (source), (size), (destSize))
|
/external/icu/icu4c/source/test/cintltst/ |
D | cbiditst.c | 737 int32_t destSize = srcSize*2; in testReorder() local 750 destSize = ubidi_writeReordered(bidi,dest,0,UBIDI_DO_MIRRORING,&ec); in testReorder() 753 }else if(destSize!=srcSize){ in testReorder() 754 … log_err("Pre-flighting did not give expected size: Expected: %d. Got: %d \n",srcSize,destSize); in testReorder() 758 destSize=ubidi_writeReordered(bidi,dest,destSize+1,UBIDI_DO_MIRRORING,&ec); in testReorder() 759 u16ToPseudo(destSize,dest,chars); in testReorder() 760 if(destSize!=srcSize){ in testReorder() 772 int32_t destSize = srcSize*2; in testReorder() local 785 destSize = ubidi_writeReordered(bidi,dest,0,UBIDI_DO_MIRRORING+UBIDI_OUTPUT_REVERSE,&ec); in testReorder() 788 }else if(destSize!=srcSize){ in testReorder() [all …]
|
D | cbiapts.c | 90 int32_t destSize; in toUChar() local 111 destSize = (numUChars+1) * sizeof(UChar) + sizeof(struct StringStruct); in toUChar() 112 dest = (StringStruct *)malloc(destSize); in toUChar()
|
/external/icu/icu4c/source/common/unicode/ |
D | ushape.h | 101 UChar *dest, int32_t destSize,
|
D | ubidi.h | 2127 UChar *dest, int32_t destSize, 2179 UChar *dest, int32_t destSize,
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 628 uint64_t destSize = DL.getTypeAllocSize(A->getAllocatedType()) * in performCallSlotOptzn() local 631 if (destSize < srcSize) in performCallSlotOptzn() 648 uint64_t destSize = DL.getTypeAllocSize(StructTy); in performCallSlotOptzn() local 649 if (destSize < srcSize) in performCallSlotOptzn()
|
/external/vulkan-validation-layers/layers/ |
D | image.cpp | 720 size_t destSize = vk_format_get_size(dstImageEntry->second.format); in vkCmdCopyImage() local 721 if (srcSize != destSize) { in vkCmdCopyImage()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
D | pdebuild.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/eclipse/
org/ ... |
/external/guice/lib/ |
D | guava-16.0.1.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
/external/dagger2/lib/ |
D | google-java-format-0.1-20151017.042846-2.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |