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

1 2 3

  /external/icu/icu4c/source/common/
ubidiwrt.c 60 UChar *dest, int32_t destSize,
68 if(destSize<length) {
82 if(destSize<srcLength) {
95 int32_t remaining=destSize;
110 return destSize-remaining;
115 return destSize-remaining;
119 int32_t remaining=destSize;
140 return destSize-remaining;
153 UChar *dest, int32_t destSize,
186 if(destSize<srcLength)
    [all...]
ushape.cpp 628 *Function : This function calculates the destSize to be used in preflighting
629 * when the destSize is equal to 0
630 * It is used also to calculate the new destsize in case the
636 int32_t destSize,uint32_t options) {
642 destSize = sourceLength;
658 destSize--;
664 destSize--;
674 destSize++;
679 return destSize;
693 int32_t /*destSize*/, uint32_t /*options*/
    [all...]
ubiditransform.c 85 uint32_t destSize; /* output text capacity */
148 ubidi_writeReordered(pTransform->pBidi, pTransform->dest, pTransform->destSize,
203 pTransform->dest, pTransform->destSize,
258 pTransform->srcLength, pTransform->dest, pTransform->destSize,
309 if (pTransform->destSize < pTransform->srcLength) {
438 UChar *dest, int32_t destSize,
457 CHECK_LEN(dest, destSize, pErrorCode);
483 updateSrc(pBiDiTransform, src, srcLength, destSize > srcLength ? destSize : srcLength, pErrorCode);
494 pBiDiTransform->destSize = destSize
    [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) {
  /external/tpm2/
MemoryLib_fp.h 18 #define MemoryCopy(destination, source, size, destSize) \
19 MemoryMove((destination), (source), (size), (destSize))
  /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/android_icu4j/src/main/java/android/icu/text/
ArabicShaping.java 73 * It may be <code>NULL</code> only if <code>destSize</code> is 0.
75 * @param destSize The size (capacity) of the destination buffer.
76 * If <code>destSize</code> is 0, then no output is produced,
89 char[] dest, int destStart, int destSize) throws ArabicShapingException {
98 if (dest == null && destSize != 0) {
99 throw new IllegalArgumentException("null dest requires destSize == 0");
101 if ((destSize != 0) &&
102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) {
104 ") or size (" + destSize
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ArabicShaping.java 72 * It may be <code>NULL</code> only if <code>destSize</code> is 0.
74 * @param destSize The size (capacity) of the destination buffer.
75 * If <code>destSize</code> is 0, then no output is produced,
89 char[] dest, int destStart, int destSize) throws ArabicShapingException {
98 if (dest == null && destSize != 0) {
99 throw new IllegalArgumentException("null dest requires destSize == 0");
101 if ((destSize != 0) &&
102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) {
104 ") or size (" + destSize
    [all...]
  /external/icu/icu4c/source/common/unicode/
ubiditransform.h 203 * @param destSize The size of the <code>dest</code> buffer, in number of
209 * <code>destSize</code>.
210 * <p><code>destSize == -1</code> is allowed and makes sense when
248 UChar *dest, int32_t destSize,
ushape.h 80 * <code>destSize</code> is 0. The source and destination must not
83 * @param destSize The size (capacity) of the destination buffer in UChars.
84 * If <code>destSize</code> is 0, then no output is produced,
103 UChar *dest, int32_t destSize,
ubidi.h     [all...]
  /external/lzma/C/
Lzma2Enc.c 346 static SRes MtCallbackImp_Code(void *pp, unsigned index, Byte *dest, size_t *destSize,
355 size_t destLim = *destSize;
356 *destSize = 0;
367 size_t packSize = destLim - *destSize;
368 res = Lzma2EncInt_EncodeSubblock(p, dest + *destSize, &packSize, NULL);
371 *destSize += packSize;
379 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK)
393 if (*destSize == destLim)
395 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)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comip.h 249 int destSize = MultiByteToWideChar(CP_ACP,0,clsidStringA,size,NULL,0);
250 if(destSize==0) return HRESULT_FROM_WIN32(GetLastError());
252 clsidStringW = static_cast<LPWSTR>(_malloca(destSize*sizeof(WCHAR)));
254 if(MultiByteToWideChar(CP_ACP,0,clsidStringA,size,clsidStringW,destSize)==0) {
285 int destSize = MultiByteToWideChar(CP_ACP,0,clsidStringA,size,NULL,0);
288 clsidStringW = static_cast<LPWSTR>(_alloca(destSize*sizeof(WCHAR)));
293 if(MultiByteToWideChar(CP_ACP,0,clsidStringA,size,clsidStringW,destSize)==0) return HRESULT_FROM_WIN32(GetLastError());
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 739 int32_t destSize = srcSize*2;
752 destSize = ubidi_writeReordered(bidi,dest,0,UBIDI_DO_MIRRORING,&ec);
755 }else if(destSize!=srcSize){
756 log_err("Pre-flighting did not give expected size: Expected: %d. Got: %d \n",srcSize,destSize);
760 destSize=ubidi_writeReordered(bidi,dest,destSize+1,UBIDI_DO_MIRRORING,&ec);
761 u16ToPseudo(destSize,dest,chars);
762 if(destSize!=srcSize){
763 log_err("ubidi_writeReordered() destSize and srcSize do not match\n");
774 int32_t destSize = srcSize*2
    [all...]
cbiapts.c 92 int32_t destSize;
113 destSize = (numUChars+1) * sizeof(UChar) + sizeof(struct StringStruct);
114 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/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 608 uint64_t destSize = TD->getTypeAllocSize(A->getAllocatedType()) *
611 if (destSize < srcSize)
620 uint64_t destSize = TD->getTypeAllocSize(StructTy);
622 if (destSize < srcSize)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 815 uint64_t destSize = DL.getTypeAllocSize(A->getAllocatedType()) *
818 if (destSize < srcSize)
839 uint64_t destSize = DL.getTypeAllocSize(StructTy);
840 if (destSize < srcSize)
    [all...]
  /packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
genPCLm.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/image/
image.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
image.cpp     [all...]
  /external/vulkan-validation-layers/layers/
image.cpp     [all...]
  /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 

Completed in 782 milliseconds

1 2 3