Home
last modified time | relevance | path

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

/frameworks/av/media/libeffects/proxy/
DEffectProxy.cpp290 uint32_t tmpSize; in Effect_command() local
295 tmpSize = pContext->replySize; in Effect_command()
296 while (tmpSize < *replySize && tmpSize < PROXY_REPLY_SIZE_MAX) { in Effect_command()
297 tmpSize *= 2; in Effect_command()
299 if (tmpSize > pContext->replySize) { in Effect_command()
300 ALOGV("Effect_command grow reply buf to %d", tmpSize); in Effect_command()
301 pContext->replyData = (char *)realloc(pContext->replyData, tmpSize); in Effect_command()
302 pContext->replySize = tmpSize; in Effect_command()
304 if (tmpSize > *replySize) { in Effect_command()
305 tmpSize = *replySize; in Effect_command()
[all …]
/frameworks/base/core/jni/
Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp229 uint64_t tmpSize = (pixelFmt == HAL_PIXEL_FORMAT_BLOB) ? grallocBufWidth : in produceFrame() local
234 tmpSize = 4 * (grallocBufWidth + grallocBufStride * (grallocBufHeight - 1)); in produceFrame()
241 if (tmpSize > SIZE_MAX) { in produceFrame()
247 size_t totalSizeBytes = tmpSize; in produceFrame()
/frameworks/rs/cpu_ref/
DrsCpuExecutable.cpp586 size_t tmpSize = 0; in createFromSharedObject() local
599 &tmpSig, &tmpSize, tmpNameReduce, tmpNameInitializer, tmpNameAccumulator, in createFromSharedObject()
623 reduceDescriptions[i].accumSize = tmpSize; in createFromSharedObject()
/frameworks/base/services/core/java/com/android/server/om/
DOverlayManagerServiceImpl.java135 final int tmpSize = tmp.size(); in updateOverlaysForUser() local
136 final ArrayMap<String, OverlayInfo> storedOverlayInfos = new ArrayMap<>(tmpSize); in updateOverlaysForUser()
137 for (int i = 0; i < tmpSize; i++) { in updateOverlaysForUser()
/frameworks/base/services/core/java/com/android/server/wm/
DRecentTasks.java1516 final int tmpSize = mTmpRecents.size(); in processNextAffiliateChainLocked() local
1517 for (int i = 0; i < tmpSize - 1; ++i) { in processNextAffiliateChainLocked()
1535 final TaskRecord last = mTmpRecents.get(tmpSize - 1); in processNextAffiliateChainLocked()
1547 return start + tmpSize; in processNextAffiliateChainLocked()