Home
last modified time | relevance | path

Searched refs:tmpSize (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libeffects/proxy/
DEffectProxy.cpp287 uint32_t tmpSize; in Effect_command() local
292 tmpSize = pContext->replySize; in Effect_command()
293 while (tmpSize < *replySize && tmpSize < PROXY_REPLY_SIZE_MAX) { in Effect_command()
294 tmpSize *= 2; in Effect_command()
296 if (tmpSize > pContext->replySize) { in Effect_command()
297 ALOGV("Effect_command grow reply buf to %d", tmpSize); in Effect_command()
298 pContext->replyData = (char *)realloc(pContext->replyData, tmpSize); in Effect_command()
299 pContext->replySize = tmpSize; in Effect_command()
301 if (tmpSize > *replySize) { in Effect_command()
302 tmpSize = *replySize; in Effect_command()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DRecentTasks.java750 final int tmpSize = mTmpRecents.size(); in processNextAffiliateChainLocked() local
751 for (int i = 0; i < tmpSize - 1; ++i) { in processNextAffiliateChainLocked()
769 final TaskRecord last = mTmpRecents.get(tmpSize - 1); in processNextAffiliateChainLocked()
781 return start + tmpSize; in processNextAffiliateChainLocked()
/frameworks/base/core/jni/
Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp204 uint64_t tmpSize = (pixelFmt == HAL_PIXEL_FORMAT_BLOB) ? grallocBufWidth : in produceFrame() local
209 tmpSize = 4 * (grallocBufWidth + grallocBufStride * (grallocBufHeight - 1)); in produceFrame()
216 if (tmpSize > SIZE_MAX) { in produceFrame()
222 size_t totalSizeBytes = tmpSize; in produceFrame()
/frameworks/rs/cpu_ref/
DrsCpuExecutable.cpp473 size_t tmpSize = 0; in createFromSharedObject() local
486 &tmpSig, &tmpSize, tmpNameReduce, tmpNameInitializer, tmpNameAccumulator, in createFromSharedObject()
510 reduceDescriptions[i].accumSize = tmpSize; in createFromSharedObject()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java4931 final int tmpSize = mTmpWindows.size(); in moveStackWindowsLocked() local
4934 while (tmpNdx < tmpSize && winNdx < winSize) { in moveStackWindowsLocked()
4939 } while (tmpNdx < tmpSize && tmp.mAppToken != null && tmp.mAppToken.mIsExiting); in moveStackWindowsLocked()