HomeSort by relevance Sort by last modified time
    Searched defs:destSize (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 103 const IntSize destSize = bounds();
105 transform.translate(-destSize.width() / 2.0, -destSize.height() / 2.0);
109 float scaleX = destSize.width() / static_cast<float>(sourceRect.size().width());
110 float scaleY = destSize.height() / static_cast<float>(sourceRect.size().height());
  /external/webkit/Source/WebCore/platform/graphics/skia/
NativeImageSkia.cpp 135 int destSize = destWidth * destHeight;
137 return destSize / 4 < destSubsetSize;
  /external/icu4c/test/cintltst/
cbiapts.c 81 int32_t destSize;
102 destSize = (numUChars+1) * sizeof(UChar) + sizeof(struct StringStruct);
103 dest = (StringStruct *)malloc(destSize);
cbiditst.c 714 int32_t destSize = srcSize*2;
727 destSize = ubidi_writeReordered(bidi,dest,0,UBIDI_DO_MIRRORING,&ec);
730 }else if(destSize!=srcSize){
731 log_err("Pre-flighting did not give expected size: Expected: %d. Got: %d \n",srcSize,destSize);
735 destSize=ubidi_writeReordered(bidi,dest,destSize+1,UBIDI_DO_MIRRORING,&ec);
736 u16ToPseudo(destSize,dest,chars);
737 if(destSize!=srcSize){
738 log_err("ubidi_writeReordered() destSize and srcSize do not match\n");
749 int32_t destSize = srcSize*2
    [all...]
  /external/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...]
  /frameworks/base/icu4j/java/android/icu/text/
ArabicShaping.java 81 * It may be <code>NULL</code> only if <code>destSize</code> is 0.
83 * @param destSize The size (capacity) of the destination buffer.
84 * If <code>destSize</code> is 0, then no output is produced,
98 char[] dest, int destStart, int destSize) throws ArabicShapingException {
107 if (dest == null && destSize != 0) {
108 throw new IllegalArgumentException("null dest requires destSize == 0");
110 if ((destSize != 0) &&
111 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) {
113 ") or size (" + destSize
    [all...]

Completed in 1783 milliseconds