/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/manager/ |
H A D | display_sync_manager_test.cpp | 56 int32_t initSize = 0; variable 117 int32_t initSize = 0; variable 207 int32_t initSize = 0; variable 254 int32_t initSize = 0; variable 296 int32_t initSize = 0; variable 340 int32_t initSize = 0; variable 382 int32_t initSize = 0; variable 434 int32_t initSize = 0; variable 488 int32_t initSize = 0; variable 547 int32_t initSize = 0; variable [all …]
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/ |
H A D | dympool.c | 21 DympoolType *DympCreatePool(int initSize, int maxSize, int itemSize, FILLP_BOOL autoExpand, in DympCreatePool() argument 25 if ((initSize <= 0) || (maxSize <= 0) || (itemSize <= 0)) { in DympCreatePool() 26 …FILLP_LOGERR("Error to create pool initSize:%d,maxSize:%d,itemSize:%d", initSize, maxSize, itemSiz… in DympCreatePool() 42 pool->initSize = initSize; in DympCreatePool() 52 pool->currentSize = DympAskMoreMemory(pool, initSize, FILLP_FALSE); in DympCreatePool() 218 (DympAskMoreMemory(pool, pool->initSize, throttleGrow) > 0)) { in DympAlloc()
|
H A D | spunge_message.c | 898 void *SpungeMsgCreatePool(int initSize, int maxSize) in SpungeMsgCreatePool() argument 901 return DympCreatePool(initSize, maxSize, sizeof(struct SpungeMsg), FILLP_TRUE, in SpungeMsgCreatePool()
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/ |
H A D | dympool.h | 57 int initSize; /* Initial size when do create */ member 63 DympoolType *DympCreatePool(int initSize, int maxSize, int itemSize, FILLP_BOOL autoExpand,
|
H A D | spunge_message.h | 95 void *SpungeMsgCreatePool(int initSize, int maxSize);
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/ |
H A D | fillp_buf_item.c | 35 void *FillpCreateBufItemPool(int poolSize, int initSize, int pktSize) in FillpCreateBufItemPool() argument 37 int initialSize = UTILS_MIN(poolSize, initSize); in FillpCreateBufItemPool()
|
/ohos5.0/base/hiviewdfx/faultloggerd/tools/process_dump/ |
H A D | dfx_unwind_async_thread.cpp | 172 size_t initSize = frames.size(); in UnwindThreadByParseStackIfNeed() local 173 …if (initSize < minFramesNum || frames[minFramesNum - 1].mapName.find("Not mapped") != std::string:… in UnwindThreadByParseStackIfNeed() 185 initSize); in UnwindThreadByParseStackIfNeed()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/shared_overlay/ |
H A D | shared_transition_effect.cpp | 196 auto initSize = src->GetLayoutProperty()->GetCalcLayoutConstraint() in CreateSizeAnimation() local 218 … finishCallbacks_.emplace_back([weakFrame = WeakPtr<FrameNode>(src), initSize, initAspectRatio]() { in CreateSizeAnimation() 222 src->GetLayoutProperty()->GetCalcLayoutConstraint()->selfIdealSize = initSize; in CreateSizeAnimation()
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/ |
H A D | fillp_buf_item.h | 32 void *FillpCreateBufItemPool(int poolSize, int initSize, int pktSize);
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/ |
H A D | fillp_pcb.c | 227 …int initSize = (fpcb->fcAlg == FILLP_SUPPORT_ALG_MSG) ? FILLP_MSG_DYMM_INIT_SEND_SIZE : FILLP_DYMM… in InitItemPool() local 228 pcb->itemPool = FillpCreateBufItemPool((int)fpcb->mpSendSize, initSize, (int)fpcb->pktSize); in InitItemPool() 299 …int initSize = (fpcb->fcAlg == FILLP_SUPPORT_ALG_MSG) ? FILLP_MSG_DYMM_INIT_RECV_SIZE : FILLP_DYMM… in FillpInitRecvPcbBox() local 300 pcb->itemPool = FillpCreateBufItemPool((int)fpcb->mpRecvSize, initSize, (int)fpcb->pktSize); in FillpInitRecvPcbBox()
|