Home
last modified time | relevance | path

Searched refs:currPos (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/mpd_parser/
H A Dsidx_box_parser.cpp62 uint32_t currPos = 0; in ParseSidxBox() local
64 while (streamSize > currPos && BASE_BOX_HEAD_SIZE < streamSize - currPos) { in ParseSidxBox()
65 Get4Bytes(bitStream, currPos); in ParseSidxBox()
90 Get4Bytes(bitStream, currPos); in BuildSubSegmentIndexes()
97 Get4Bytes(bitStream, currPos); in BuildSubSegmentIndexes()
101 Get8Bytes(bitStream, currPos); in BuildSubSegmentIndexes()
110 ForwardBytes(currPos, SHIFT_NUM_2); in BuildSubSegmentIndexes()
139 currPos += SHIFT_NUM_2; in Get2Bytes()
146 currPos += SHIFT_NUM_4; in Get4Bytes()
153 uint64_t tmp = Get4Bytes(buffer, currPos); in Get8Bytes()
[all …]
/ohos5.0/base/update/updater/services/script/script_interpreter/
H A Dscript_scanner.cpp26 if (pkgStream_->Read(data, currPos, maxSize, readLen) != PKG_SUCCESS) { in LexerInput()
31 currPos += readLen; in LexerInput()
H A Dscanner.h60 size_t currPos = 0; variable
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/include/mpd_parser/
H A Dsidx_box_parser.h36 … DashList<std::shared_ptr<SubSegmentIndex>> &subSegIndexTable, uint32_t &currPos);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_layout_algorithm.cpp1813 bool forward, float &currPos, float crossSize) in LayoutCachedALine() argument
1827 auto endPos = currPos + GetMainAxisSize(childSize, axis_); in LayoutCachedALine()
1828 pos = { id, currPos, endPos, isGroup }; in LayoutCachedALine()
1829 currPos = endPos + spaceWidth_; in LayoutCachedALine()
1832 pos = { id, startPos, currPos, isGroup }; in LayoutCachedALine()
1833 currPos = startPos - spaceWidth_; in LayoutCachedALine()
1996 auto endPos = currPos + GetMainAxisSize(childSize, axis_); in LayoutCachedForward()
1998 ListItemInfo pos = { id, currPos, endPos, isGroup }; in LayoutCachedForward()
1999 currPos = endPos + spaceWidth_; in LayoutCachedForward()
2044 ListItemInfo pos = { id, startPos, currPos, isGroup }; in LayoutCachedBackward()
[all …]
H A Dlist_lanes_layout_algorithm.cpp557 auto currPos = itemPosition.rbegin()->second.endPos + GetSpaceWidth(); in LayoutCachedItem() local
559 auto tmpList = LayoutCachedALineForward(layoutWrapper, curIndex, currPos, crossSize); in LayoutCachedItem()
563 currPos = itemPosition.begin()->second.startPos - GetSpaceWidth(); in LayoutCachedItem()
565 auto tmpList = LayoutCachedALineBackward(layoutWrapper, curIndex, currPos, crossSize); in LayoutCachedItem()
H A Dlist_layout_algorithm.h497 …dALine(LayoutWrapper* layoutWrapper, int32_t index, bool forward, float &currPos, float crossSize);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Dscrollable.cpp874 auto currPos = scrollSnapMotion_->GetCurrentPosition(); in UpdateScrollSnapStartOffset() local
877 scrollSnapMotion_->Reset(currPos + offset, endPos, velocity, DEFAULT_OVER_SPRING_PROPERTY); in UpdateScrollSnapStartOffset()
1147 auto currPos = scrollSnapMotion_->GetCurrentPosition(); in UpdateScrollSnapEndWithOffset() local
1150 scrollSnapMotion_->Reset(currPos, endPos - offset, velocity, DEFAULT_OVER_SPRING_PROPERTY); in UpdateScrollSnapEndWithOffset()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H A Dscrollable.cpp1187 double currPos = scroll->currentPositionCallback_(); in GetSpringProperty() local
1188 if (NearEqual(currPos, scroll->currentPos_, 0.5)) { in GetSpringProperty()
1189 scroll->currentPos_ = currPos; in GetSpringProperty()