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

1 2

  /external/icu/icu4c/source/common/
ubidiwrt.c 63 UChar *dest, int32_t destSize,
71 if(destSize<length) {
85 if(destSize<srcLength) {
98 int32_t remaining=destSize;
113 return destSize-remaining;
118 return destSize-remaining;
122 int32_t remaining=destSize;
143 return destSize-remaining;
156 UChar *dest, int32_t destSize,
189 if(destSize<srcLength)
    [all...]
ushape.cpp 626 *Function : This function calculates the destSize to be used in preflighting
627 * when the destSize is equal to 0
628 * It is used also to calculate the new destsize in case the
634 int32_t destSize,uint32_t options) {
640 destSize = sourceLength;
656 destSize--;
662 destSize--;
672 destSize++;
677 return destSize;
691 int32_t /*destSize*/, uint32_t /*options*/
    [all...]
  /external/guava/guava/src/com/google/common/escape/
CharEscaper.java 86 int destSize = dest.length;
107 if (destSize < sizeNeeded) {
108 destSize = sizeNeeded + DEST_PAD_MULTIPLIER * (slen - index);
109 dest = growBuffer(dest, destIndex, destSize);
130 if (destSize < sizeNeeded) {
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 125 int destSize = dest.length;
145 if (destSize < sizeNeeded) {
146 destSize = sizeNeeded + (slen - index) + DEST_PAD;
147 dest = growBuffer(dest, destIndex, destSize);
168 if (destSize < sizeNeeded) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ArabicShaping.java 70 * It may be <code>NULL</code> only if <code>destSize</code> is 0.
72 * @param destSize The size (capacity) of the destination buffer.
73 * If <code>destSize</code> is 0, then no output is produced,
87 char[] dest, int destStart, int destSize) throws ArabicShapingException {
96 if (dest == null && destSize != 0) {
97 throw new IllegalArgumentException("null dest requires destSize == 0");
99 if ((destSize != 0) &&
100 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) {
102 ") or size (" + destSize +
    [all...]
  /external/lzma/C/
Lzma2Enc.c 310 static SRes MtCallbackImp_Code(void *pp, unsigned index, Byte *dest, size_t *destSize,
319 size_t destLim = *destSize;
320 *destSize = 0;
331 size_t packSize = destLim - *destSize;
332 res = Lzma2EncInt_EncodeSubblock(p, dest + *destSize, &packSize, NULL);
335 *destSize += packSize;
343 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK)
355 if (*destSize == destLim)
357 dest[(*destSize)++] = 0;
MtCoder.h 69 SRes (*Code)(void *p, unsigned index, Byte *dest, size_t *destSize,
MtCoder.c 204 size_t destSize = p->outBufSize;
212 p->outBuf, &destSize, p->inBuf, size, *stop));
220 if (p->mtCoder->outStream->Write(p->mtCoder->outStream, p->outBuf, destSize) != destSize)
  /external/icu/icu4c/source/common/unicode/
ushape.h 78 * <code>destSize</code> is 0. The source and destination must not
81 * @param destSize The size (capacity) of the destination buffer in UChars.
82 * If <code>destSize</code> is 0, then no output is produced,
101 UChar *dest, int32_t destSize,
ubidi.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comip.h 225 int destSize = MultiByteToWideChar(CP_ACP,0,clsidStringA,size,NULL,0);
226 if(destSize==0) return HRESULT_FROM_WIN32(GetLastError());
228 clsidStringW = static_cast<LPWSTR>(_malloca(destSize*sizeof(WCHAR)));
230 if(MultiByteToWideChar(CP_ACP,0,clsidStringA,size,clsidStringW,destSize)==0) {
261 int destSize = MultiByteToWideChar(CP_ACP,0,clsidStringA,size,NULL,0);
264 clsidStringW = static_cast<LPWSTR>(_alloca(destSize*sizeof(WCHAR)));
269 if(MultiByteToWideChar(CP_ACP,0,clsidStringA,size,clsidStringW,destSize)==0) return HRESULT_FROM_WIN32(GetLastError());
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 737 int32_t destSize = srcSize*2;
750 destSize = ubidi_writeReordered(bidi,dest,0,UBIDI_DO_MIRRORING,&ec);
753 }else if(destSize!=srcSize){
754 log_err("Pre-flighting did not give expected size: Expected: %d. Got: %d \n",srcSize,destSize);
758 destSize=ubidi_writeReordered(bidi,dest,destSize+1,UBIDI_DO_MIRRORING,&ec);
759 u16ToPseudo(destSize,dest,chars);
760 if(destSize!=srcSize){
761 log_err("ubidi_writeReordered() destSize and srcSize do not match\n");
772 int32_t destSize = srcSize*2
    [all...]
cbiapts.c 85 int32_t destSize;
106 destSize = (numUChars+1) * sizeof(UChar) + sizeof(struct StringStruct);
107 dest = (StringStruct *)malloc(destSize);
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
defines.h 47 char *dest, const int destSize) {
50 const int destLimit = destSize - 1;
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 626 uint64_t destSize = DL.getTypeAllocSize(A->getAllocatedType()) *
629 if (destSize < srcSize)
646 uint64_t destSize = DL.getTypeAllocSize(StructTy);
647 if (destSize < srcSize)
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-packaging-plugin/0.20.0/
tycho-packaging-plugin-0.20.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
com.ibm.icu_4.2.1.v20100412.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 1073 milliseconds

1 2